forked from cgilchrist/AWeber-API-Ruby-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaweber.gemspec
26 lines (20 loc) · 809 Bytes
/
aweber.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "aweber"
s.version = "1.3.1"
s.platform = Gem::Platform::RUBY
s.summary = "Ruby interface to AWeber's API"
s.description = "Ruby interface to AWeber's API"
s.author = "AWeber Communications, Inc."
s.email = "help@aweber.com"
s.homepage = "http://github.com/aweber/AWeber-API-Ruby-Library"
s.require_path = "lib"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.extra_rdoc_files = ["LICENSE", "README.textile"]
s.add_dependency "oauth"
s.add_dependency "json_pure"
s.add_development_dependency "fakeweb"
s.add_development_dependency "rspec", "~> 2.1.0"
s.add_development_dependency "yard", "~> 0.6.0"
end