forked from kallelundgren93/faceit-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaceit-ruby.gemspec
26 lines (21 loc) · 924 Bytes
/
faceit-ruby.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
Gem::Specification.new do |spec|
spec.name = "faceit-ruby"
spec.version = "3.1.7"
spec.authors = ["Kalle Lundgren"]
spec.email = ["kalle@saits.se"]
spec.summary = %q{Ruby client for the Faceit API and ready.}
spec.homepage = "https://github.com/kallelundgren93/faceit-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.0"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_runtime_dependency "faraday", "0.12.0.1"
spec.add_runtime_dependency "faraday_middleware", "~> 0.12"
spec.add_development_dependency "bundler", "~> 1.16"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "vcr", "~> 3.0"
end