Sha256: 39bd995f2ae9f9194126866646b4211e15db9e3d252109fc84000306243b2a84
Contents?: true
Size: 1.23 KB
Versions: 5
Compression:
Stored size: 1.23 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 = ["Tony Arcieri", "Erik Michaels-Ober", "Alexey V. Zapparov", "Zachary Anker"] gem.email = ["bascule@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/httprb/http" gem.licenses = ["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 = ["lib"] gem.version = HTTP::VERSION gem.add_runtime_dependency "http_parser.rb", "~> 0.6.0" gem.add_runtime_dependency "http-form_data", "~> 1.0.1" gem.add_runtime_dependency "http-cookie", "~> 1.0" gem.add_runtime_dependency "addressable", "~> 2.3" gem.add_development_dependency "bundler", "~> 1.0" end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
http-2.0.1 | http.gemspec |
http-2.0.0 | http.gemspec |
http-2.0.0.pre | http.gemspec |
http-1.0.4 | http.gemspec |
http-1.0.3 | http.gemspec |