forked from buntine/discogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiscogs.gemspec
27 lines (19 loc) · 921 Bytes
/
discogs.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.name = "discogs-wrapper"
s.version = "2.0.0"
s.date = "2014-06-01"
s.summary = "Discogs::Wrapper is a full wrapper for the http://www.discogs.com API V2"
s.homepage = "http://www.github.com/buntine/discogs"
s.email = "[email protected]"
s.authors = ["Andrew Buntine", "Many more contributors"]
s.description = "Discogs::Wrapper is a full wrapper for the http://www.discogs.com API V2. Supports authentication, pagination, JSON."
s.files = Dir.glob("{lib}/**/*") + %w(LICENSE README.markdown)
s.test_files = Dir.glob("{spec}/**/*")
s.platform = Gem::Platform::RUBY
s.add_development_dependency "pry"
s.add_development_dependency "pry-nav"
s.add_development_dependency "rspec", "= 2.12.0"
s.add_development_dependency "simplecov", "= 0.7.1"
s.add_runtime_dependency "hashie", "~> 2.1"
s.add_runtime_dependency "oauth", "~> 0.4.7"
end