forked from ma2gedev/octoparts-rb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoctoparts.gemspec
33 lines (29 loc) · 1.26 KB
/
octoparts.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'octoparts/version'
Gem::Specification.new do |spec|
spec.name = "octoparts"
spec.version = Octoparts::VERSION
spec.authors = ["M3, inc."]
spec.email = ["platform-dev@m3.com"]
spec.summary = %q{ Ruby client for the Octoparts API }
spec.description = %q{ Ruby client library for the Octoparts API }
spec.homepage = "https://github.com/m3dev/octoparts-rb"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.files.reject! {|f| f == 'Gemfile.lock'}
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = '> 2.2'
spec.add_dependency "representable", "~> 3.1.0"
spec.add_dependency "activesupport", "> 4.0.0"
spec.add_dependency "faraday", "< 2.0"
spec.add_dependency "multi_json"
spec.add_development_dependency "rake", "~> 13.0.6"
spec.add_development_dependency "pry"
spec.add_development_dependency "test-unit", "~> 3.0"
spec.add_development_dependency "webmock"
spec.add_development_dependency "vcr"
end