forked from hanklords/flickraw
-
Notifications
You must be signed in to change notification settings - Fork 2
/
flickr.gemspec
33 lines (28 loc) · 1.29 KB
/
flickr.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
32
33
$:.push File.expand_path("../lib", __FILE__)
require 'flickr/version'
Gem::Specification.new do |s|
s.name = "flickr"
s.summary = "Flickr (formerly FlickRaw) is full-featured client for the Flickr API"
s.authors = ["Mael Clerambault", "Aidan Samuel"]
s.email = "[email protected]"
s.license = "MIT"
s.version = Flickr::VERSION
s.homepage = "https://github.com/cyclotron3k/flickr"
s.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
s.metadata = {
"bug_tracker_uri" => "https://github.com/cyclotron3k/flickr/issues",
"changelog_uri" => "https://github.com/cyclotron3k/flickr/blob/master/CHANGELOG.md",
"documentation_uri" => "https://github.com/cyclotron3k/flickr/blob/v#{Flickr::VERSION}/README.md",
"source_code_uri" => "https://github.com/cyclotron3k/flickr",
}
s.add_development_dependency "rake", "~> 13.0"
s.add_development_dependency "pry", "~> 0.14"
s.add_development_dependency "nokogiri", "~> 1.0"
s.add_development_dependency "webmock", "~> 3.0"
s.add_development_dependency "minitest", "~> 5.0"
s.add_development_dependency "bundler-audit", "~> 0.9"
s.add_development_dependency "vcr", "~> 6.0"
s.required_ruby_version = '>= 2.3'
end