forked from glenngillen/monkeywrench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
monkeywrench.gemspec
27 lines (25 loc) · 967 Bytes
/
monkeywrench.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
Gem::Specification.new do |s|
s.version = '0.1.7'
s.name = "monkeywrench"
s.files = ["README.mdown", "Rakefile"]
s.files += Dir["lib/**/*.rb","test/**/*"]
s.summary = "A ruby wrapper for the Mailchimp API"
s.description = "A ruby API for managing lists, campaigns, subscribers, etc. within Mailchimp (http://www.mailchimp.com/)"
s.email = "[email protected]"
s.homepage = "http://github.com/rubypond/monkeywrench"
s.authors = ["Glenn Gillen"]
s.test_files = Dir["test/**/*"]
s.require_paths = [".", "lib"]
s.has_rdoc = 'false'
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency('httparty', '= 0.6.1')
else
s.add_dependency('httparty', '= 0.6.1')
end
else
s.add_dependency('httparty', '= 0.6.1')
end
end