Sha256: 407a5e293ae04d9c65eea8e723578dba9436f2837ebcc4c85f0a498136f52d25
Contents?: true
Size: 1.08 KB
Versions: 5
Compression:
Stored size: 1.08 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path("../lib/http/version", __FILE__) Gem::Specification.new do |gem| gem.authors = ["Tony Arcieri", "Erik Michaels-Ober", "Aleksey V. Zapparov"] 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.rb" 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.0" gem.add_development_dependency "bundler", "~> 1.0" end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
http-0.8.0.pre5 | http.gemspec |
http-0.8.0.pre4 | http.gemspec |
http-0.8.0.pre3 | http.gemspec |
http-0.8.0.pre2 | http.gemspec |
http-0.8.0.pre | http.gemspec |