forked from oesmith/puffing-billy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
puffing-billy.gemspec
36 lines (33 loc) · 1.58 KB
/
puffing-billy.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
33
34
35
36
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/billy/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Olly Smith"]
gem.email = ["[email protected]"]
gem.description = %q{A stubbing proxy server for ruby. Connect it to your browser in integration tests to fake interactions with remote HTTP(S) servers.}
gem.summary = %q{Easy request stubs for browser tests.}
gem.homepage = "https://github.com/oesmith/puffing-billy"
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.name = "puffing-billy"
gem.require_paths = ["lib"]
gem.version = Billy::VERSION
gem.add_development_dependency "rspec"
gem.add_development_dependency "thin"
gem.add_development_dependency "faraday"
gem.add_development_dependency "poltergeist"
gem.add_development_dependency "selenium-webdriver"
gem.add_development_dependency "capybara-webkit", "~> 1.0"
gem.add_development_dependency "rack"
gem.add_development_dependency "guard"
gem.add_development_dependency "rb-inotify"
gem.add_development_dependency "pry"
gem.add_development_dependency "cucumber"
gem.add_runtime_dependency "eventmachine"
gem.add_runtime_dependency "em-synchrony"
gem.add_runtime_dependency "em-http-request"
gem.add_runtime_dependency "eventmachine_httpserver"
gem.add_runtime_dependency "http_parser.rb", "~> 0.6.0"
gem.add_runtime_dependency "multi_json"
gem.add_runtime_dependency "capybara"
end