Sha256: c162bf6cdcb5275512a39389d362cfcb388336d5f05ca5b9a8904b71f14218aa

Contents?: true

Size: 930 Bytes

Versions: 1

Compression:

Stored size: 930 Bytes

Contents

# -*- encoding: utf-8 -*-
require File.expand_path('../lib/http/version', __FILE__)

Gem::Specification.new do |gem|
  gem.authors       = ["Tony Arcieri"]
  gem.email         = ["tony.arcieri@gmail.com"]
  gem.description   = "HTTP so awesome it will lure Catherine Zeta Jones into your unicorn petting zoo"
  gem.summary       = "HTTP should be easy"
  gem.homepage      = "https://github.com/tarcieri/http"

  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 = ["lib"]
  gem.version       = Http::VERSION

  gem.add_runtime_dependency 'http_parser.rb'
  gem.add_runtime_dependency 'certified'

  gem.add_development_dependency 'rake'
  gem.add_development_dependency 'rspec'
  gem.add_development_dependency 'json'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
http-0.3.0 http.gemspec