vcr 2.4.0 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/.gitignore +3 -0
- data/.travis.yml +2 -0
- data/CHANGELOG.md +31 -0
- data/Gemfile +1 -2
- data/Gemfile.lock +63 -46
- data/README.md +5 -2
- data/features/cassettes/allow_unused_http_interactions.feature +1 -1
- data/features/cassettes/automatic_re_recording.feature +1 -1
- data/features/cassettes/decompress.feature +3 -3
- data/features/cassettes/dynamic_erb.feature +2 -2
- data/features/cassettes/exclusive.feature +1 -1
- data/features/cassettes/naming.feature +1 -1
- data/features/cassettes/no_cassette.feature +6 -3
- data/features/cassettes/persistence.feature +1 -1
- data/features/cassettes/update_content_length_header.feature +1 -1
- data/features/configuration/allow_http_connections_when_no_cassette.feature +1 -1
- data/features/configuration/cassette_library_dir.feature +1 -1
- data/features/configuration/debug_logging.feature +5 -5
- data/features/configuration/filter_sensitive_data.feature +2 -2
- data/features/configuration/hook_into.feature +4 -7
- data/features/getting_started.md +2 -2
- data/features/hooks/before_playback.feature +5 -5
- data/features/hooks/before_record.feature +5 -5
- data/features/middleware/rack.feature +2 -2
- data/features/record_modes/all.feature +1 -1
- data/features/record_modes/new_episodes.feature +1 -1
- data/features/record_modes/none.feature +1 -1
- data/features/record_modes/once.feature +1 -1
- data/features/request_matching/custom_matcher.feature +1 -1
- data/features/request_matching/headers.feature +0 -2
- data/features/request_matching/playback_repeats.feature +1 -1
- data/features/request_matching/uri_without_param.feature +1 -1
- data/features/support/env.rb +1 -0
- data/features/test_frameworks/cucumber.feature +8 -8
- data/features/test_frameworks/rspec_macro.feature +2 -2
- data/features/test_frameworks/rspec_metadata.feature +1 -1
- data/gemfiles/typhoeus_old.gemfile +1 -1
- data/gemfiles/typhoeus_old.gemfile.lock +31 -57
- data/lib/vcr/cassette/migrator.rb +8 -1
- data/lib/vcr/configuration.rb +9 -2
- data/lib/vcr/library_hooks/excon.rb +2 -184
- data/lib/vcr/library_hooks/typhoeus.rb +1 -1
- data/lib/vcr/library_hooks/typhoeus_0.4.rb +4 -0
- data/lib/vcr/library_hooks/webmock.rb +1 -1
- data/lib/vcr/middleware/excon.rb +226 -0
- data/lib/vcr/version.rb +1 -1
- data/spec/acceptance/threading_spec.rb +28 -0
- data/spec/monkey_patches.rb +3 -7
- data/spec/quality_spec.rb +1 -1
- data/spec/spec_helper.rb +7 -4
- data/spec/support/http_library_adapters.rb +4 -3
- data/spec/support/shared_example_groups/excon.rb +22 -0
- data/spec/support/shared_example_groups/hook_into_http_library.rb +46 -46
- data/spec/support/shared_example_groups/request_hooks.rb +8 -8
- data/spec/vcr/cassette/erb_renderer_spec.rb +5 -5
- data/spec/vcr/cassette/http_interaction_list_spec.rb +52 -40
- data/spec/vcr/cassette/migrator_spec.rb +11 -11
- data/spec/vcr/cassette/persisters/file_system_spec.rb +11 -11
- data/spec/vcr/cassette/persisters_spec.rb +2 -2
- data/spec/vcr/cassette/serializers_spec.rb +13 -12
- data/spec/vcr/cassette_spec.rb +58 -58
- data/spec/vcr/configuration_spec.rb +43 -31
- data/spec/vcr/deprecations_spec.rb +3 -3
- data/spec/vcr/errors_spec.rb +25 -25
- data/spec/vcr/extensions/net_http_response_spec.rb +7 -7
- data/spec/vcr/library_hooks/excon_spec.rb +7 -85
- data/spec/vcr/library_hooks/fakeweb_spec.rb +15 -13
- data/spec/vcr/library_hooks/faraday_spec.rb +4 -4
- data/spec/vcr/library_hooks/typhoeus_0.4_spec.rb +5 -0
- data/spec/vcr/library_hooks/typhoeus_spec.rb +3 -3
- data/spec/vcr/library_hooks/webmock_spec.rb +13 -5
- data/spec/vcr/library_hooks_spec.rb +9 -9
- data/spec/vcr/middleware/faraday_spec.rb +10 -10
- data/spec/vcr/middleware/rack_spec.rb +20 -15
- data/spec/vcr/request_ignorer_spec.rb +3 -3
- data/spec/vcr/request_matcher_registry_spec.rb +88 -61
- data/spec/vcr/structs_spec.rb +85 -85
- data/spec/vcr/test_frameworks/cucumber_spec.rb +7 -7
- data/spec/vcr/test_frameworks/rspec_spec.rb +10 -10
- data/spec/vcr/util/hooks_spec.rb +20 -20
- data/spec/vcr/util/internet_connection_spec.rb +2 -2
- data/spec/vcr_spec.rb +50 -48
- data/vcr.gemspec +4 -4
- metadata +308 -372
@@ -45,7 +45,7 @@ Feature: Cassette Persistence
|
|
45
45
|
require 'vcr'
|
46
46
|
|
47
47
|
VCR.configure do |c|
|
48
|
-
c.hook_into :
|
48
|
+
c.hook_into :webmock
|
49
49
|
c.cassette_persisters[:redis] = RedisCassettePersister.new(Redis.connect)
|
50
50
|
c.default_cassette_options = { :persist_with => :redis }
|
51
51
|
end
|
@@ -18,7 +18,7 @@ Feature: Debug Logging
|
|
18
18
|
require 'vcr'
|
19
19
|
|
20
20
|
VCR.configure do |c|
|
21
|
-
c.hook_into :
|
21
|
+
c.hook_into :webmock
|
22
22
|
c.cassette_library_dir = 'cassettes'
|
23
23
|
c.debug_logger = File.open(ARGV.first, 'w')
|
24
24
|
end
|
@@ -31,9 +31,9 @@ Feature: Debug Logging
|
|
31
31
|
Then the file "record.log" should contain exactly:
|
32
32
|
"""
|
33
33
|
[Cassette: 'example'] Initialized with options: {:record=>:once, :match_requests_on=>[:method, :uri], :allow_unused_http_interactions=>true, :serialize_with=>:yaml, :persist_with=>:file_system}
|
34
|
-
[
|
34
|
+
[webmock] Handling request: [get http://localhost:7777/] (disabled: false)
|
35
35
|
[Cassette: 'example'] Initialized HTTPInteractionList with request matchers [:method, :uri] and 0 interaction(s): { }
|
36
|
-
[
|
36
|
+
[webmock] Identified request type (recordable) for [get http://localhost:7777/]
|
37
37
|
[Cassette: 'example'] Recorded HTTP interaction [get http://localhost:7777/] => [200 "Hello World"]
|
38
38
|
|
39
39
|
"""
|
@@ -41,12 +41,12 @@ Feature: Debug Logging
|
|
41
41
|
Then the file "playback.log" should contain exactly:
|
42
42
|
"""
|
43
43
|
[Cassette: 'example'] Initialized with options: {:record=>:once, :match_requests_on=>[:method, :uri], :allow_unused_http_interactions=>true, :serialize_with=>:yaml, :persist_with=>:file_system}
|
44
|
-
[
|
44
|
+
[webmock] Handling request: [get http://localhost:7777/] (disabled: false)
|
45
45
|
[Cassette: 'example'] Initialized HTTPInteractionList with request matchers [:method, :uri] and 1 interaction(s): { [get http://localhost:7777/] => [200 "Hello World"] }
|
46
46
|
[Cassette: 'example'] Checking if [get http://localhost:7777/] matches [get http://localhost:7777/] using [:method, :uri]
|
47
47
|
[Cassette: 'example'] method (matched): current request [get http://localhost:7777/] vs [get http://localhost:7777/]
|
48
48
|
[Cassette: 'example'] uri (matched): current request [get http://localhost:7777/] vs [get http://localhost:7777/]
|
49
49
|
[Cassette: 'example'] Found matching interaction for [get http://localhost:7777/] at index 0: [200 "Hello World"]
|
50
|
-
[
|
50
|
+
[webmock] Identified request type (stubbed_by_vcr) for [get http://localhost:7777/]
|
51
51
|
|
52
52
|
"""
|
@@ -38,7 +38,7 @@ Feature: Filter sensitive data
|
|
38
38
|
require 'vcr'
|
39
39
|
|
40
40
|
VCR.configure do |c|
|
41
|
-
c.hook_into :
|
41
|
+
c.hook_into :webmock
|
42
42
|
c.cassette_library_dir = 'cassettes'
|
43
43
|
c.filter_sensitive_data('<GREETING>') { 'Hello' }
|
44
44
|
c.filter_sensitive_data('<LOCATION>') { 'World' }
|
@@ -71,7 +71,7 @@ Feature: Filter sensitive data
|
|
71
71
|
require 'vcr'
|
72
72
|
|
73
73
|
VCR.configure do |c|
|
74
|
-
c.hook_into :
|
74
|
+
c.hook_into :webmock
|
75
75
|
c.cassette_library_dir = 'cassettes'
|
76
76
|
c.filter_sensitive_data('<LOCATION>', :my_tag) { 'World' }
|
77
77
|
end
|
@@ -4,7 +4,6 @@ Feature: hook_into
|
|
4
4
|
HTTP requests to record and replay them. There are currently 4 valid
|
5
5
|
options which support many different HTTP libraries:
|
6
6
|
|
7
|
-
- :fakeweb can be used to hook into Net::HTTP requests.
|
8
7
|
- :webmock can be used to hook into requests from:
|
9
8
|
- Net::HTTP
|
10
9
|
- HTTPClient
|
@@ -17,17 +16,15 @@ Feature: hook_into
|
|
17
16
|
but not Typhoeus::Easy or Typhoeus::Multi).
|
18
17
|
- :excon can be used to hook into itself.
|
19
18
|
- :faraday can be used to hook into itself.
|
19
|
+
- :fakeweb (deprecated) can be used to hook into Net::HTTP requests.
|
20
20
|
|
21
21
|
There are some addiitonal trade offs to consider when deciding which
|
22
22
|
option to use:
|
23
23
|
|
24
|
-
-
|
25
|
-
|
26
|
-
- FakeWeb and WebMock both use extensive monkey patching to hook into their
|
27
|
-
supported HTTP libraries. No monkey patching is used for Typhoeus, Excon or
|
28
|
-
Faraday.
|
29
|
-
- FakeWeb and WebMock cannot both be used at the same time.
|
24
|
+
- WebMock uses extensive monkey patching to hook into supported HTTP
|
25
|
+
libraries. No monkey patching is used for Typhoeus, Excon or Faraday.
|
30
26
|
- Typhoeus, Excon, Faraday can be used together, and with either FakeWeb or WebMock.
|
27
|
+
- FakeWeb and WebMock cannot both be used at the same time.
|
31
28
|
|
32
29
|
Regardless of which library you use, VCR takes care of all of the configuration
|
33
30
|
for you. You should not need to interact directly with FakeWeb, WebMock or the
|
data/features/getting_started.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
### Install it
|
2
2
|
|
3
3
|
[sudo] gem install vcr
|
4
|
-
[sudo] gem install
|
4
|
+
[sudo] gem install webmock
|
5
5
|
|
6
6
|
### Configure it
|
7
7
|
|
@@ -11,7 +11,7 @@ Create a file named `vcr_setup.rb` with content like:
|
|
11
11
|
|
12
12
|
VCR.configure do |c|
|
13
13
|
c.cassette_library_dir = 'vcr_cassettes'
|
14
|
-
c.hook_into :
|
14
|
+
c.hook_into :webmock
|
15
15
|
end
|
16
16
|
|
17
17
|
Ensure this file is required by your test suite before any
|
@@ -58,7 +58,7 @@ Feature: before_playback hook
|
|
58
58
|
require 'vcr'
|
59
59
|
|
60
60
|
VCR.configure do |c|
|
61
|
-
c.hook_into :
|
61
|
+
c.hook_into :webmock
|
62
62
|
c.cassette_library_dir = 'cassettes'
|
63
63
|
|
64
64
|
c.before_playback do |interaction|
|
@@ -80,7 +80,7 @@ Feature: before_playback hook
|
|
80
80
|
require 'vcr'
|
81
81
|
|
82
82
|
VCR.configure do |c|
|
83
|
-
c.hook_into :
|
83
|
+
c.hook_into :webmock
|
84
84
|
c.cassette_library_dir = 'cassettes'
|
85
85
|
|
86
86
|
c.before_playback do |interaction, cassette|
|
@@ -106,7 +106,7 @@ Feature: before_playback hook
|
|
106
106
|
require 'vcr'
|
107
107
|
|
108
108
|
VCR.configure do |c|
|
109
|
-
c.hook_into :
|
109
|
+
c.hook_into :webmock
|
110
110
|
c.cassette_library_dir = 'cassettes'
|
111
111
|
c.before_playback { |i| i.ignore! }
|
112
112
|
end
|
@@ -125,7 +125,7 @@ Feature: before_playback hook
|
|
125
125
|
require 'vcr'
|
126
126
|
|
127
127
|
VCR.configure do |c|
|
128
|
-
c.hook_into :
|
128
|
+
c.hook_into :webmock
|
129
129
|
c.cassette_library_dir = 'cassettes'
|
130
130
|
|
131
131
|
c.before_playback { puts "In before_playback hook 1" }
|
@@ -151,7 +151,7 @@ Feature: before_playback hook
|
|
151
151
|
require 'vcr'
|
152
152
|
|
153
153
|
VCR.configure do |c|
|
154
|
-
c.hook_into :
|
154
|
+
c.hook_into :webmock
|
155
155
|
c.cassette_library_dir = 'cassettes'
|
156
156
|
|
157
157
|
c.before_playback(:tag_2) do |i|
|
@@ -33,7 +33,7 @@ Feature: before_record hook
|
|
33
33
|
require 'vcr'
|
34
34
|
|
35
35
|
VCR.configure do |c|
|
36
|
-
c.hook_into :
|
36
|
+
c.hook_into :webmock
|
37
37
|
c.cassette_library_dir = 'cassettes'
|
38
38
|
|
39
39
|
c.before_record do |i|
|
@@ -59,7 +59,7 @@ Feature: before_record hook
|
|
59
59
|
require 'vcr'
|
60
60
|
|
61
61
|
VCR.configure do |c|
|
62
|
-
c.hook_into :
|
62
|
+
c.hook_into :webmock
|
63
63
|
c.cassette_library_dir = 'cassettes'
|
64
64
|
|
65
65
|
c.before_record do |interaction, cassette|
|
@@ -84,7 +84,7 @@ Feature: before_record hook
|
|
84
84
|
require 'vcr'
|
85
85
|
|
86
86
|
VCR.configure do |c|
|
87
|
-
c.hook_into :
|
87
|
+
c.hook_into :webmock
|
88
88
|
c.cassette_library_dir = 'cassettes'
|
89
89
|
c.before_record { |i| i.ignore! }
|
90
90
|
end
|
@@ -108,7 +108,7 @@ Feature: before_record hook
|
|
108
108
|
require 'vcr'
|
109
109
|
|
110
110
|
VCR.configure do |c|
|
111
|
-
c.hook_into :
|
111
|
+
c.hook_into :webmock
|
112
112
|
c.cassette_library_dir = 'cassettes'
|
113
113
|
|
114
114
|
c.before_record { puts "In before_record hook 1" }
|
@@ -138,7 +138,7 @@ Feature: before_record hook
|
|
138
138
|
require 'vcr'
|
139
139
|
|
140
140
|
VCR.configure do |c|
|
141
|
-
c.hook_into :
|
141
|
+
c.hook_into :webmock
|
142
142
|
c.cassette_library_dir = 'cassettes'
|
143
143
|
|
144
144
|
c.before_record(:tag_1) do
|
@@ -51,7 +51,7 @@ Feature: Rack
|
|
51
51
|
|
52
52
|
VCR.configure do |c|
|
53
53
|
c.cassette_library_dir = 'cassettes'
|
54
|
-
c.hook_into :
|
54
|
+
c.hook_into :webmock
|
55
55
|
c.allow_http_connections_when_no_cassette = true
|
56
56
|
end
|
57
57
|
"""
|
@@ -78,7 +78,7 @@ Feature: Rack
|
|
78
78
|
|
79
79
|
VCR.configure do |c|
|
80
80
|
c.cassette_library_dir = 'cassettes'
|
81
|
-
c.hook_into :
|
81
|
+
c.hook_into :webmock
|
82
82
|
c.allow_http_connections_when_no_cassette = true
|
83
83
|
end
|
84
84
|
"""
|
@@ -111,7 +111,7 @@ Feature: Register and use a custom matcher
|
|
111
111
|
require 'vcr'
|
112
112
|
|
113
113
|
VCR.configure do |c|
|
114
|
-
c.hook_into :
|
114
|
+
c.hook_into :webmock
|
115
115
|
c.cassette_library_dir = 'cassettes'
|
116
116
|
c.register_request_matcher :port do |request_1, request_2|
|
117
117
|
URI(request_1.uri).port == URI(request_2.uri).port
|
data/features/support/env.rb
CHANGED
@@ -14,21 +14,21 @@ Feature: Usage with Cucumber
|
|
14
14
|
t.tags '@tag2', '@tag3'
|
15
15
|
|
16
16
|
t.tag '@tag3', :cassette => :options
|
17
|
-
t.tags '@tag4, '@tag5', :cassette => :options
|
17
|
+
t.tags '@tag4', '@tag5', :cassette => :options
|
18
18
|
t.tag '@vcr', :use_scenario_name => true
|
19
19
|
end
|
20
20
|
```
|
21
21
|
|
22
|
-
VCR will use a cassette named
|
23
|
-
with each of these tags (Unless the
|
22
|
+
VCR will use a cassette named `cucumber_tags/<tag_name>` for scenarios
|
23
|
+
with each of these tags (Unless the `:use_scenario_name` option is provided. See below).
|
24
24
|
The configured `default_cassette_options` will be used, or you can override specific
|
25
25
|
options by passing a hash as the last argument to `#tag` or `#tags`.
|
26
26
|
|
27
27
|
You can also have VCR name your cassettes automatically according to the feature
|
28
|
-
and scenario name by providing
|
29
|
-
In this case, the cassette will be named
|
28
|
+
and scenario name by providing `:use_scenario_name => true` to `#tag` or `#tags`.
|
29
|
+
In this case, the cassette will be named `<feature_name>/<scenario_name>`.
|
30
30
|
For scenario outlines, VCR will record one cassette per row, and the cassettes
|
31
|
-
will be named
|
31
|
+
will be named `<feature_name>/<scenario_name>/<row_name>`.
|
32
32
|
|
33
33
|
@exclude-jruby
|
34
34
|
Scenario: Record HTTP interactions in a scenario by tagging it
|
@@ -47,7 +47,7 @@ Feature: Usage with Cucumber
|
|
47
47
|
require 'vcr'
|
48
48
|
|
49
49
|
VCR.configure do |c|
|
50
|
-
c.hook_into :
|
50
|
+
c.hook_into :webmock
|
51
51
|
c.cassette_library_dir = 'features/cassettes'
|
52
52
|
end
|
53
53
|
|
@@ -148,4 +148,4 @@ Feature: Usage with Cucumber
|
|
148
148
|
And the file "features/cassettes/nested_cassette.yml" should contain "Hello nested_cassette"
|
149
149
|
And the file "features/cassettes/allowed.yml" should contain "Hello allowed"
|
150
150
|
And the file "features/cassettes/VCR_example/tagged_scenario.yml" should contain "Hello localhost_request_1"
|
151
|
-
And the file "features/cassettes/VCR_example/tagged_scenario_outline/_foo_bar_.yml" should contain "Hello localhost_request_1"
|
151
|
+
And the file "features/cassettes/VCR_example/tagged_scenario_outline/_foo_bar_.yml" should contain "Hello localhost_request_1"
|
@@ -67,7 +67,7 @@ Feature: Usage with RSpec macro
|
|
67
67
|
|
68
68
|
VCR.configure do |c|
|
69
69
|
c.cassette_library_dir = 'spec/cassettes'
|
70
|
-
c.hook_into :
|
70
|
+
c.hook_into :webmock
|
71
71
|
end
|
72
72
|
|
73
73
|
RSpec.configure do |c|
|
@@ -92,7 +92,7 @@ Feature: Usage with RSpec macro
|
|
92
92
|
|
93
93
|
VCR.configure do |c|
|
94
94
|
c.cassette_library_dir = 'spec/cassettes'
|
95
|
-
c.hook_into :
|
95
|
+
c.hook_into :webmock
|
96
96
|
end
|
97
97
|
|
98
98
|
Spec::Runner.configure do |c|
|
@@ -1,12 +1,12 @@
|
|
1
1
|
PATH
|
2
|
-
remote: /Users/
|
2
|
+
remote: /Users/myron/code/vcr
|
3
3
|
specs:
|
4
|
-
vcr (2.
|
4
|
+
vcr (2.4.0)
|
5
5
|
|
6
6
|
GEM
|
7
|
-
remote:
|
7
|
+
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
-
addressable (2.3.
|
9
|
+
addressable (2.3.3)
|
10
10
|
appraisal (0.5.1)
|
11
11
|
bundler
|
12
12
|
rake
|
@@ -16,13 +16,11 @@ GEM
|
|
16
16
|
cucumber (>= 1.1.1)
|
17
17
|
ffi (>= 1.0.11)
|
18
18
|
rspec (>= 2.7.0)
|
19
|
-
builder (3.
|
20
|
-
childprocess (0.3.
|
21
|
-
ffi (~> 1.0, >= 1.0.
|
22
|
-
coderay (1.0.8)
|
23
|
-
columnize (0.3.6)
|
19
|
+
builder (3.2.0)
|
20
|
+
childprocess (0.3.9)
|
21
|
+
ffi (~> 1.0, >= 1.0.11)
|
24
22
|
cookiejar (0.3.0)
|
25
|
-
crack (0.3.
|
23
|
+
crack (0.3.2)
|
26
24
|
cucumber (1.1.9)
|
27
25
|
builder (>= 2.1.2)
|
28
26
|
diff-lcs (>= 1.1.2)
|
@@ -30,14 +28,7 @@ GEM
|
|
30
28
|
json (>= 1.4.6)
|
31
29
|
term-ansicolor (>= 1.0.6)
|
32
30
|
curb (0.8.3)
|
33
|
-
|
34
|
-
columnize (>= 0.3.1)
|
35
|
-
debugger-linecache (~> 1.1.1)
|
36
|
-
debugger-ruby_core_source (~> 1.1.5)
|
37
|
-
debugger-linecache (1.1.2)
|
38
|
-
debugger-ruby_core_source (>= 1.1.1)
|
39
|
-
debugger-ruby_core_source (1.1.5)
|
40
|
-
diff-lcs (1.1.3)
|
31
|
+
diff-lcs (1.2.1)
|
41
32
|
em-http-request (1.0.3)
|
42
33
|
addressable (>= 2.2.3)
|
43
34
|
cookiejar
|
@@ -46,12 +37,12 @@ GEM
|
|
46
37
|
http_parser.rb (>= 0.5.3)
|
47
38
|
em-socksify (0.2.1)
|
48
39
|
eventmachine (>= 1.0.0.beta.4)
|
49
|
-
eventmachine (1.0.
|
50
|
-
excon (0.
|
40
|
+
eventmachine (1.0.1)
|
41
|
+
excon (0.20.0)
|
51
42
|
fakeweb (1.3.0)
|
52
|
-
faraday (0.8.
|
43
|
+
faraday (0.8.6)
|
53
44
|
multipart-post (~> 1.1)
|
54
|
-
ffi (1.
|
45
|
+
ffi (1.3.1)
|
55
46
|
fuubar (1.0.0)
|
56
47
|
rspec (~> 2.0)
|
57
48
|
rspec-instafail (~> 0.2.0)
|
@@ -61,26 +52,18 @@ GEM
|
|
61
52
|
ruby-progressbar (~> 0.0.10)
|
62
53
|
gherkin (2.9.3)
|
63
54
|
json (>= 1.4.6)
|
64
|
-
github-markup (0.7.
|
55
|
+
github-markup (0.7.5)
|
65
56
|
http_parser.rb (0.5.3)
|
66
|
-
httpclient (2.3.
|
67
|
-
json (1.6.
|
68
|
-
|
69
|
-
rbx-require-relative (> 0.0.4)
|
70
|
-
method_source (0.8.1)
|
71
|
-
mime-types (1.19)
|
57
|
+
httpclient (2.3.3)
|
58
|
+
json (1.6.8)
|
59
|
+
mime-types (1.21)
|
72
60
|
multi_json (1.0.4)
|
73
|
-
multipart-post (1.
|
61
|
+
multipart-post (1.2.0)
|
74
62
|
patron (0.4.18)
|
75
|
-
|
76
|
-
|
77
|
-
method_source (~> 0.8)
|
78
|
-
slop (~> 3.3.1)
|
79
|
-
rack (1.3.6)
|
80
|
-
rack-protection (1.2.0)
|
63
|
+
rack (1.3.10)
|
64
|
+
rack-protection (1.4.0)
|
81
65
|
rack
|
82
|
-
rake (0.9.
|
83
|
-
rbx-require-relative (0.0.9)
|
66
|
+
rake (0.9.6)
|
84
67
|
redcarpet (1.17.2)
|
85
68
|
redis (2.2.2)
|
86
69
|
relish (0.6)
|
@@ -89,20 +72,15 @@ GEM
|
|
89
72
|
rest-client (>= 1.6.1)
|
90
73
|
rest-client (1.6.7)
|
91
74
|
mime-types (>= 1.16)
|
92
|
-
rspec (2.
|
93
|
-
rspec-core (~> 2.
|
94
|
-
rspec-expectations (~> 2.
|
95
|
-
rspec-mocks (~> 2.
|
96
|
-
rspec-core (2.
|
97
|
-
rspec-expectations (2.
|
98
|
-
diff-lcs (
|
75
|
+
rspec (2.13.0)
|
76
|
+
rspec-core (~> 2.13.0)
|
77
|
+
rspec-expectations (~> 2.13.0)
|
78
|
+
rspec-mocks (~> 2.13.0)
|
79
|
+
rspec-core (2.13.0)
|
80
|
+
rspec-expectations (2.13.0)
|
81
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
99
82
|
rspec-instafail (0.2.4)
|
100
|
-
rspec-mocks (2.
|
101
|
-
ruby-debug (0.10.4)
|
102
|
-
columnize (>= 0.1)
|
103
|
-
ruby-debug-base (~> 0.10.4.0)
|
104
|
-
ruby-debug-base (0.10.4)
|
105
|
-
linecache (>= 0.3)
|
83
|
+
rspec-mocks (2.13.0)
|
106
84
|
ruby-progressbar (0.0.10)
|
107
85
|
shoulda (2.9.2)
|
108
86
|
simplecov (0.5.4)
|
@@ -113,9 +91,8 @@ GEM
|
|
113
91
|
rack (~> 1.3, >= 1.3.6)
|
114
92
|
rack-protection (~> 1.2)
|
115
93
|
tilt (~> 1.3, >= 1.3.3)
|
116
|
-
slop (3.3.3)
|
117
94
|
term-ansicolor (1.0.7)
|
118
|
-
tilt (1.3.
|
95
|
+
tilt (1.3.4)
|
119
96
|
timecop (0.3.5)
|
120
97
|
typhoeus (0.4.2)
|
121
98
|
ffi (~> 1.0)
|
@@ -124,7 +101,7 @@ GEM
|
|
124
101
|
addressable (>= 2.2.7)
|
125
102
|
crack (>= 0.1.7)
|
126
103
|
yajl-ruby (1.1.0)
|
127
|
-
yard (0.8.
|
104
|
+
yard (0.8.5.2)
|
128
105
|
|
129
106
|
PLATFORMS
|
130
107
|
ruby
|
@@ -135,7 +112,6 @@ DEPENDENCIES
|
|
135
112
|
bundler (>= 1.0.7)
|
136
113
|
cucumber (~> 1.1.4)
|
137
114
|
curb (~> 0.8.0)
|
138
|
-
debugger
|
139
115
|
em-http-request (~> 1.0.2)
|
140
116
|
excon (>= 0.11.0, < 1.0)
|
141
117
|
fakeweb (~> 1.3.0)
|
@@ -148,14 +124,12 @@ DEPENDENCIES
|
|
148
124
|
json (~> 1.6.5)
|
149
125
|
multi_json (~> 1.0.3)
|
150
126
|
patron (~> 0.4.15)
|
151
|
-
pry
|
152
127
|
rack (~> 1.3.6)
|
153
128
|
rake (~> 0.9.2)
|
154
129
|
redcarpet (~> 1.17.2)
|
155
130
|
redis (~> 2.2.2)
|
156
131
|
relish (~> 0.6)
|
157
132
|
rspec (~> 2.11)
|
158
|
-
ruby-debug
|
159
133
|
shoulda (~> 2.9.2)
|
160
134
|
simplecov (~> 0.5.3)
|
161
135
|
sinatra (~> 1.3.2)
|