-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathgarage_client.gemspec
34 lines (30 loc) · 1.25 KB
/
garage_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
32
33
34
# -*- encoding: utf-8 -*-
$:.unshift File.expand_path("../lib", __FILE__)
require 'garage_client/version'
Gem::Specification.new do |s|
s.version = GarageClient::VERSION
s.name = "garage_client"
s.homepage = "https://github.com/cookpad/garage_client"
s.summary = "Ruby client library for the Garage API"
s.description = s.summary
s.files = `git ls-files`.split($\)
s.executables = s.files.grep(%r{^bin/}).map { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.authors = ['Cookpad Inc.']
s.email = ['[email protected]']
s.add_dependency 'faraday', '>= 2.0.1'
s.add_dependency 'faraday-mashify'
s.add_dependency 'faraday-multipart'
s.add_dependency 'hashie', '>= 1.2.0'
s.add_dependency 'link_header'
s.add_development_dependency "rails"
s.add_development_dependency "rake", ">= 0.9.2"
s.add_development_dependency "rspec"
s.add_development_dependency "json"
s.add_development_dependency "webmock"
s.add_development_dependency "pry"
# Until bug fixed: https://github.com/colszowka/simplecov/issues/281
s.add_development_dependency "simplecov", "~> 0.7.1"
s.add_development_dependency "aws-xray", ">= 0.30.0"
end