forked from stevenkaras/omniauth-mailchimp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
omniauth-mailchimp.gemspec
28 lines (21 loc) · 1.06 KB
/
omniauth-mailchimp.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/omniauth/mailchimp/version', __FILE__)
Gem::Specification.new do |gem|
gem.add_dependency 'omniauth', '~> 1.0'
gem.authors = ["Steven Karas", "Florian Mhun"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = %q{MailChimp OAuth2 strategy for OmniAuth 1.0}
gem.summary = %q{MailChimp OAuth2 strategy for OmniAuth 1.0.}
gem.homepage = "https://github.com/stevenkaras/omniauth-mailchimp"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "omniauth-mailchimp"
gem.require_paths = ["lib"]
gem.version = OmniAuth::Mailchimp::VERSION
gem.add_runtime_dependency 'omniauth-oauth2'
gem.add_development_dependency 'rspec', '~> 2.6.0'
gem.add_development_dependency 'rake', '< 11.0'
gem.cert_chain = ['certs/stevenkaras.pem']
gem.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
end