-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstattleship-ruby.gemspec
35 lines (30 loc) · 1.38 KB
/
stattleship-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
27
28
29
30
31
32
33
34
35
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'stattleship/version'
Gem::Specification.new do |spec|
spec.name = 'stattleship-ruby'
spec.version = Stattleship::Ruby::VERSION
spec.authors = ['Stattleship', 'David Thyresson']
spec.email = ['[email protected]']
spec.required_ruby_version = '>= 2.2.0'
spec.summary = 'Stattleship API Ruby client'
spec.description = 'Connect to and retrieve sports data from the Stattleship API'
spec.homepage = 'https://github.com/stattleship/stattleship-ruby'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.require_paths = ['lib']
spec.add_runtime_dependency 'addressable', '~> 2.4'
spec.add_development_dependency 'bundler', '~> 1.10'
spec.add_runtime_dependency 'dotenv', '~> 2.0', '>= 2.0.2'
spec.add_runtime_dependency 'link_header', '~> 0.0.8'
spec.add_runtime_dependency 'multi_json', '~> 1.11', '>= 1.11.2'
spec.add_runtime_dependency 'oj', '~> 2.14', '>= 2.14.2'
spec.add_runtime_dependency 'oj_mimic_json', '~> 1.0', '>= 1.0.1'
spec.add_runtime_dependency 'ordinalize', '~> 0.0.3'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_runtime_dependency 'roar', '~> 1.0', '>= 1.0.4'
spec.add_runtime_dependency 'virtus', '~> 1.0', '>= 1.0.5'
end