forked from lostisland/faraday_middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaraday_middleware.gemspec
23 lines (22 loc) · 993 Bytes
/
faraday_middleware.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'faraday_middleware/version'
Gem::Specification.new do |spec|
spec.add_dependency 'faraday', ['>= 0.7.4', '<= 0.9.0']
spec.add_development_dependency 'bundler', '~> 1.0'
spec.authors = ["Erik Michaels-Ober", "Wynn Netherland"]
spec.description = %q{Various middleware for Faraday}
spec.email = ['[email protected]', '[email protected]']
spec.files = %w(CHANGELOG.md CONTRIBUTING.md LICENSE.md README.md Rakefile faraday_middleware.gemspec)
spec.files += Dir.glob("lib/**/*.rb")
spec.files += Dir.glob("spec/**/*")
spec.homepage = 'https://github.com/lostisland/faraday_middleware'
spec.licenses = ['MIT']
spec.name = 'faraday_middleware'
spec.require_paths = ['lib']
spec.required_rubygems_version = '>= 1.3.5'
spec.summary = spec.description
spec.test_files += Dir.glob("spec/**/*")
spec.version = FaradayMiddleware::VERSION
end