forked from jimcar/orchestrate-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
orchestrate.gemspec
27 lines (24 loc) · 1.19 KB
/
orchestrate.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'orchestrate/version'
Gem::Specification.new do |s|
s.name = 'orchestrate'
s.version = Orchestrate::VERSION
s.authors = ['Matthew Lyon', 'Justin Mecham', 'James Carrasquer', 'Eric Johnson', 'Daniel Reverri']
s.email = ['[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]']
s.summary = 'Ruby client for Orchestrate.io'
s.description = 'Client for the Orchestrate REST API'
s.homepage = 'https://github.com/orchestrate-io/orchestrate-ruby'
s.license = 'MIT'
s.files = `git ls-files -z`.split("\x0")
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.add_dependency "faraday", "0.9.0"
s.add_dependency "net-http-persistent", "~> 2.9"
s.add_development_dependency "bundler", "~> 1.6"
s.add_development_dependency "rake"
s.add_development_dependency "typhoeus"
s.add_development_dependency "em-http-request"
s.add_development_dependency "em-synchrony"
end