-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi_client.gemspec
More file actions
24 lines (21 loc) · 939 Bytes
/
api_client.gemspec
File metadata and controls
24 lines (21 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "api_client/version"
Gem::Specification.new do |s|
s.name = "api_client"
s.version = ApiClient::VERSION
s.authors = ["Cloves Carneiro Jr"]
s.email = ["ccarneiroj@gmail.com"]
s.homepage = ""
s.summary = %q{It's the thing that knows how to hit internal services.}
s.description = %q{It's the thing that knows how to hit internal services.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "rake"
s.add_runtime_dependency "json_api_client", '~> 1.3'
s.add_runtime_dependency "faraday", '~> 0.9.0'
s.add_runtime_dependency "service_discovery", '~> 0'
end