Sha256: 2c3f8c68ad615268834e6f0fac8b608b75a74a3db3ed1a6a98787c31df3e4b8a

Contents?: true

Size: 1.02 KB

Versions: 5

Compression:

Stored size: 1.02 KB

Contents

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

Gem::Specification.new do |gem|
  gem.authors       = %w[Tony Arcieri]
  gem.email         = %w[tony.arcieri@gmail.com]

  gem.description   = <<-DESCRIPTION.strip.gsub(/\s+/, ' ')
    An easy-to-use client library for making requests from Ruby.
    It uses a simple method chaining system for building requests,
    similar to Python's Requests.
  DESCRIPTION

  gem.summary       = 'HTTP should be easy'
  gem.homepage      = 'https://github.com/tarcieri/http'
  gem.licenses      = %w[MIT]

  gem.executables   = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
  gem.files         = `git ls-files`.split("\n")
  gem.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  gem.name          = 'http'
  gem.require_paths = %w[lib]
  gem.version       = HTTP::VERSION

  gem.add_runtime_dependency 'http_parser.rb', '~> 0.6.0'

  gem.add_development_dependency 'bundler', '~> 1.0'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
http-0.6.4 http.gemspec
http-0.6.3 http.gemspec
http-0.6.2 http.gemspec
http-0.6.1 http.gemspec
http-0.6.0 http.gemspec