File: faraday_middleware.gemspec

package info (click to toggle)
ruby-faraday-middleware 1.2.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 376 kB
  • sloc: ruby: 2,388; sh: 15; makefile: 6
file content (22 lines) | stat: -rw-r--r-- 693 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'faraday_middleware/version'

Gem::Specification.new do |spec|
  spec.name = 'faraday_middleware'
  spec.version = FaradayMiddleware::VERSION

  spec.summary = 'Various middleware for Faraday'
  spec.authors = ['Erik Michaels-Ober', 'Wynn Netherland']
  spec.email = ['sferik@gmail.com', 'wynn.netherland@gmail.com']
  spec.homepage = 'https://github.com/lostisland/faraday_middleware'
  spec.licenses = ['MIT']

  spec.required_ruby_version = '>= 2.3'

  spec.add_dependency 'faraday', '~> 1.0'

  spec.files = Dir['lib/**/*', 'LICENSE.md', 'README.md']
end