-
Notifications
You must be signed in to change notification settings - Fork 48
/
discogs.gemspec
28 lines (20 loc) · 1011 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
28
Gem::Specification.new do |s|
s.name = "discogs-wrapper"
s.version = "2.5.1"
s.date = "2020-05-10"
s.licenses = ["MIT"]
s.summary = "Discogs::Wrapper is a full wrapper for the http://www.discogs.com API V2"
s.homepage = "https://www.github.com/buntine/discogs"
s.email = "[email protected]"
s.authors = ["Andrew Buntine", "Many more contributors - see https://github.com/buntine/discogs/graphs/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", "~> 0"
s.add_development_dependency "rspec", "~> 3.3"
s.add_development_dependency "simplecov", "= 0.7.1"
s.add_runtime_dependency "hashie", "~> 3.0"
s.add_runtime_dependency "httparty", "~> 0.14"
s.add_runtime_dependency "oauth", "~> 0.5.1"
end