forked from amro/gibbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gibbon.gemspec
31 lines (23 loc) · 1.13 KB
/
gibbon.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
29
30
31
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "gibbon"
s.version = "0.5.0"
s.authors = ["Amro Mousa"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/amro/gibbon"
s.summary = %q{A wrapper for MailChimp API 2.0 and Export API 1.0}
s.description = %q{A wrapper for MailChimp API 2.0 and Export API 1.0}
s.license = "MIT"
s.post_install_message = "IMPORTANT: Gibbon now targets MailChimp API 2.0, which is substantially different from API 1.3.\n \
Please use Gibbon 0.4.6 if you need to use API 1.3.\nIf you're upgrading from <0.5.0 your code WILL break."
s.rubyforge_project = "gibbon"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency('httparty')
s.add_dependency('multi_json', '>= 1.3.4')
s.add_development_dependency 'rake'
s.add_development_dependency "rspec", "~> 2.13.0"
end