forked from lostisland/faraday_middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaraday_middleware.gemspec
More file actions
20 lines (19 loc) · 882 Bytes
/
faraday_middleware.gemspec
File metadata and controls
20 lines (19 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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.10']
spec.add_development_dependency 'bundler', '~> 1.0'
spec.authors = ["Erik Michaels-Ober", "Wynn Netherland"]
spec.description = %q{Various middleware for Faraday}
spec.email = ['sferik@gmail.com', 'wynn.netherland@gmail.com']
spec.files = %w(CHANGELOG.md CONTRIBUTING.md LICENSE.md README.md faraday_middleware.gemspec) + Dir['lib/**/*.rb']
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.version = FaradayMiddleware::VERSION
end