-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbootic_client.gemspec
31 lines (27 loc) · 1.18 KB
/
bootic_client.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bootic_client/version'
Gem::Specification.new do |spec|
spec.name = "bootic_client"
spec.version = BooticClient::VERSION
spec.authors = ["Ismael Celis"]
spec.email = ["[email protected]"]
spec.description = %q{Official Ruby client for the Bootic API}
spec.summary = %q{Official Ruby client for the Bootic API}
spec.homepage = "https://developers.bootic.net"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "faraday", '~> 2.2'
spec.add_dependency 'faraday-net_http_persistent', '~> 2.0'
spec.add_dependency "uri_template", '~> 0.7'
spec.add_dependency "faraday-http-cache", '~> 2'
spec.add_dependency "net-http-persistent", '~> 4'
spec.add_dependency "oauth2", "~> 1.4"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "3.5.0"
spec.add_development_dependency "jwt", "~> 1.5"
spec.add_development_dependency "dalli", "~> 2.7"
end