-
Notifications
You must be signed in to change notification settings - Fork 4
/
http_monkey.gemspec
32 lines (28 loc) · 1.3 KB
/
http_monkey.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'http_monkey/version'
Gem::Specification.new do |gem|
gem.name = "http_monkey"
gem.version = HttpMonkey::VERSION
gem.authors = ["Roger Leite"]
gem.email = ["roger.barreto@gmail.com"]
gem.summary = 'Slim HTTP client powered by middlewares and support to many adapters.'
gem.description = <<-DESC
Slim HTTP client with fluent interface. Supports many adapters, HTTPClient, Curb,
EM-HTTP-Request and Ruby net/http by default. Powered by middlewares, like Rack.
DESC
gem.homepage = "https://github.com/rogerleite/http_monkey"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_runtime_dependency "rack"
gem.add_runtime_dependency "httpi", "~> 2"
gem.add_runtime_dependency "http_objects", "~> 0"
gem.add_development_dependency "rake"
gem.add_development_dependency "minitest", "~> 3"
gem.add_development_dependency "minitest-reporters", "~> 0.7.0"
gem.add_development_dependency "mocha"
gem.add_development_dependency "minion_server"
end