-
Notifications
You must be signed in to change notification settings - Fork 0
/
vcr.gemspec
55 lines (45 loc) · 1.78 KB
/
vcr.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "vcr/version"
Gem::Specification.new do |s|
s.name = "vcr"
s.homepage = "http://github.com/myronmarston/vcr"
s.authors = ["Myron Marston"]
s.summary = "Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests."
s.description = "VCR provides a simple API to record and replay your test suite's HTTP interactions. It works with a variety of HTTP client libraries, HTTP stubbing libraries and testing frameworks."
s.email = "myron.marston@gmail.com"
s.require_path = "lib"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.version = VCR.version
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 1.8.7'
s.required_rubygems_version = '>= 1.3.5'
{
'bundler' => '~> 1.0.7',
'rake' => '~> 0.9.2',
'cucumber' => '~> 1.0.3',
'aruba' => '~> 0.4.6',
'rspec' => '~> 2.8.0.rc1',
'shoulda' => '~> 2.9.2',
'fakeweb' => '~> 1.3.0',
'webmock' => '~> 1.7.8',
'addressable' => '~> 2.2.6',
'faraday' => '~> 0.7.2',
'httpclient' => '~> 2.1.5.2',
'excon' => '~> 0.7.9',
'timecop' => '~> 0.3.5',
'rack' => '1.1.0',
'sinatra' => '~> 1.1.0',
'multi_json' => '~> 1.0.3'
}.each do |lib, version|
s.add_development_dependency lib, version
end
{
'patron' => '~> 0.4.15',
'em-http-request' => '~> 0.3.0',
'curb' => '0.7.15',
'typhoeus' => '~> 0.3.3'
}.each do |lib, version|
s.add_development_dependency lib, version
end unless RUBY_PLATFORM == 'java'
end