vcr 2.4.0 → 2.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +3 -0
  3. data/.travis.yml +2 -0
  4. data/CHANGELOG.md +31 -0
  5. data/Gemfile +1 -2
  6. data/Gemfile.lock +63 -46
  7. data/README.md +5 -2
  8. data/features/cassettes/allow_unused_http_interactions.feature +1 -1
  9. data/features/cassettes/automatic_re_recording.feature +1 -1
  10. data/features/cassettes/decompress.feature +3 -3
  11. data/features/cassettes/dynamic_erb.feature +2 -2
  12. data/features/cassettes/exclusive.feature +1 -1
  13. data/features/cassettes/naming.feature +1 -1
  14. data/features/cassettes/no_cassette.feature +6 -3
  15. data/features/cassettes/persistence.feature +1 -1
  16. data/features/cassettes/update_content_length_header.feature +1 -1
  17. data/features/configuration/allow_http_connections_when_no_cassette.feature +1 -1
  18. data/features/configuration/cassette_library_dir.feature +1 -1
  19. data/features/configuration/debug_logging.feature +5 -5
  20. data/features/configuration/filter_sensitive_data.feature +2 -2
  21. data/features/configuration/hook_into.feature +4 -7
  22. data/features/getting_started.md +2 -2
  23. data/features/hooks/before_playback.feature +5 -5
  24. data/features/hooks/before_record.feature +5 -5
  25. data/features/middleware/rack.feature +2 -2
  26. data/features/record_modes/all.feature +1 -1
  27. data/features/record_modes/new_episodes.feature +1 -1
  28. data/features/record_modes/none.feature +1 -1
  29. data/features/record_modes/once.feature +1 -1
  30. data/features/request_matching/custom_matcher.feature +1 -1
  31. data/features/request_matching/headers.feature +0 -2
  32. data/features/request_matching/playback_repeats.feature +1 -1
  33. data/features/request_matching/uri_without_param.feature +1 -1
  34. data/features/support/env.rb +1 -0
  35. data/features/test_frameworks/cucumber.feature +8 -8
  36. data/features/test_frameworks/rspec_macro.feature +2 -2
  37. data/features/test_frameworks/rspec_metadata.feature +1 -1
  38. data/gemfiles/typhoeus_old.gemfile +1 -1
  39. data/gemfiles/typhoeus_old.gemfile.lock +31 -57
  40. data/lib/vcr/cassette/migrator.rb +8 -1
  41. data/lib/vcr/configuration.rb +9 -2
  42. data/lib/vcr/library_hooks/excon.rb +2 -184
  43. data/lib/vcr/library_hooks/typhoeus.rb +1 -1
  44. data/lib/vcr/library_hooks/typhoeus_0.4.rb +4 -0
  45. data/lib/vcr/library_hooks/webmock.rb +1 -1
  46. data/lib/vcr/middleware/excon.rb +226 -0
  47. data/lib/vcr/version.rb +1 -1
  48. data/spec/acceptance/threading_spec.rb +28 -0
  49. data/spec/monkey_patches.rb +3 -7
  50. data/spec/quality_spec.rb +1 -1
  51. data/spec/spec_helper.rb +7 -4
  52. data/spec/support/http_library_adapters.rb +4 -3
  53. data/spec/support/shared_example_groups/excon.rb +22 -0
  54. data/spec/support/shared_example_groups/hook_into_http_library.rb +46 -46
  55. data/spec/support/shared_example_groups/request_hooks.rb +8 -8
  56. data/spec/vcr/cassette/erb_renderer_spec.rb +5 -5
  57. data/spec/vcr/cassette/http_interaction_list_spec.rb +52 -40
  58. data/spec/vcr/cassette/migrator_spec.rb +11 -11
  59. data/spec/vcr/cassette/persisters/file_system_spec.rb +11 -11
  60. data/spec/vcr/cassette/persisters_spec.rb +2 -2
  61. data/spec/vcr/cassette/serializers_spec.rb +13 -12
  62. data/spec/vcr/cassette_spec.rb +58 -58
  63. data/spec/vcr/configuration_spec.rb +43 -31
  64. data/spec/vcr/deprecations_spec.rb +3 -3
  65. data/spec/vcr/errors_spec.rb +25 -25
  66. data/spec/vcr/extensions/net_http_response_spec.rb +7 -7
  67. data/spec/vcr/library_hooks/excon_spec.rb +7 -85
  68. data/spec/vcr/library_hooks/fakeweb_spec.rb +15 -13
  69. data/spec/vcr/library_hooks/faraday_spec.rb +4 -4
  70. data/spec/vcr/library_hooks/typhoeus_0.4_spec.rb +5 -0
  71. data/spec/vcr/library_hooks/typhoeus_spec.rb +3 -3
  72. data/spec/vcr/library_hooks/webmock_spec.rb +13 -5
  73. data/spec/vcr/library_hooks_spec.rb +9 -9
  74. data/spec/vcr/middleware/faraday_spec.rb +10 -10
  75. data/spec/vcr/middleware/rack_spec.rb +20 -15
  76. data/spec/vcr/request_ignorer_spec.rb +3 -3
  77. data/spec/vcr/request_matcher_registry_spec.rb +88 -61
  78. data/spec/vcr/structs_spec.rb +85 -85
  79. data/spec/vcr/test_frameworks/cucumber_spec.rb +7 -7
  80. data/spec/vcr/test_frameworks/rspec_spec.rb +10 -10
  81. data/spec/vcr/util/hooks_spec.rb +20 -20
  82. data/spec/vcr/util/internet_connection_spec.rb +2 -2
  83. data/spec/vcr_spec.rb +50 -48
  84. data/vcr.gemspec +4 -4
  85. 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 :fakeweb
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
@@ -52,7 +52,7 @@ Feature: Update content_length header
52
52
 
53
53
  VCR.configure do |c|
54
54
  c.cassette_library_dir = 'cassettes'
55
- c.hook_into :fakeweb
55
+ c.hook_into :webmock
56
56
  end
57
57
 
58
58
  def make_request_and_print_results
@@ -18,7 +18,7 @@ Feature: Allow HTTP connections when no cassette
18
18
 
19
19
  VCR.configure do |c|
20
20
  c.allow_http_connections_when_no_cassette = true
21
- c.hook_into :fakeweb
21
+ c.hook_into :webmock
22
22
  c.cassette_library_dir = 'cassettes'
23
23
  end
24
24
  """
@@ -14,7 +14,7 @@ Feature: cassette_library_dir
14
14
 
15
15
  VCR.configure do |c|
16
16
  c.cassette_library_dir = 'vcr/cassettes'
17
- c.hook_into :fakeweb
17
+ c.hook_into :webmock
18
18
  end
19
19
 
20
20
  VCR.use_cassette('localhost') do
@@ -18,7 +18,7 @@ Feature: Debug Logging
18
18
  require 'vcr'
19
19
 
20
20
  VCR.configure do |c|
21
- c.hook_into :fakeweb
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
- [fakeweb] Handling request: [get http://localhost:7777/] (disabled: false)
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
- [fakeweb] Identified request type (recordable) for [get http://localhost:7777/]
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
- [fakeweb] Handling request: [get http://localhost:7777/] (disabled: false)
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
- [fakeweb] Identified request type (stubbed_by_vcr) for [get http://localhost:7777/]
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 :fakeweb
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 :fakeweb
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
- - FakeWeb is currently about 4 times faster than WebMock for hooking into
25
- Net::HTTP (see benchmarks/http_stubbing_libraries.rb for details).
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
@@ -1,7 +1,7 @@
1
1
  ### Install it
2
2
 
3
3
  [sudo] gem install vcr
4
- [sudo] gem install fakeweb
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 :fakeweb
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 :fakeweb
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 :fakeweb
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 :fakeweb
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 :fakeweb
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 :fakeweb
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 :fakeweb
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 :fakeweb
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 :fakeweb
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 :fakeweb
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 :fakeweb
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 :fakeweb
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 :fakeweb
81
+ c.hook_into :webmock
82
82
  c.allow_http_connections_when_no_cassette = true
83
83
  end
84
84
  """
@@ -20,7 +20,7 @@ Feature: :all
20
20
  require 'vcr'
21
21
 
22
22
  VCR.configure do |c|
23
- c.hook_into :fakeweb
23
+ c.hook_into :webmock
24
24
  c.cassette_library_dir = 'cassettes'
25
25
  end
26
26
  """
@@ -19,7 +19,7 @@ Feature: :new_episodes
19
19
  require 'vcr'
20
20
 
21
21
  VCR.configure do |c|
22
- c.hook_into :fakeweb
22
+ c.hook_into :webmock
23
23
  c.cassette_library_dir = 'cassettes'
24
24
  end
25
25
  """
@@ -15,7 +15,7 @@ Feature: :none
15
15
  require 'vcr'
16
16
 
17
17
  VCR.configure do |c|
18
- c.hook_into :fakeweb
18
+ c.hook_into :webmock
19
19
  c.cassette_library_dir = 'cassettes'
20
20
  end
21
21
  """
@@ -22,7 +22,7 @@ Feature: :once
22
22
  require 'vcr'
23
23
 
24
24
  VCR.configure do |c|
25
- c.hook_into :fakeweb
25
+ c.hook_into :webmock
26
26
  c.cassette_library_dir = 'cassettes'
27
27
  end
28
28
  """
@@ -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 :fakeweb
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
@@ -84,6 +84,4 @@ Feature: Matching on Headers
84
84
  | c.hook_into :webmock | patron |
85
85
  | c.hook_into :webmock | em-http-request |
86
86
  | c.hook_into :excon | excon |
87
- | c.hook_into :faraday | faraday (w/ net_http) |
88
- | c.hook_into :faraday | faraday (w/ typhoeus) |
89
87
 
@@ -65,7 +65,7 @@ Feature: Playback repeats
65
65
  require 'vcr'
66
66
 
67
67
  VCR.configure do |c|
68
- c.hook_into :fakeweb
68
+ c.hook_into :webmock
69
69
  c.cassette_library_dir = 'cassettes'
70
70
  end
71
71
 
@@ -70,7 +70,7 @@ Feature: URI without param(s)
70
70
  require 'vcr'
71
71
 
72
72
  VCR.configure do |c|
73
- c.hook_into :fakeweb
73
+ c.hook_into :webmock
74
74
  c.cassette_library_dir = 'cassettes'
75
75
  c.default_cassette_options = {
76
76
  :match_requests_on => [:method,
@@ -5,6 +5,7 @@ Bundler.setup
5
5
  require 'ruby-debug' if !defined?(RUBY_ENGINE) && RUBY_VERSION != '1.9.3' && !ENV['CI']
6
6
 
7
7
  require 'aruba/cucumber'
8
+ require 'aruba/jruby' if RUBY_PLATFORM == 'java'
8
9
 
9
10
  additional_paths = []
10
11
  Before('@rspec-1') do
@@ -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 "cucumber_tags/<tag_name>" for scenarios
23
- with each of these tags (Unless the :use_scenario_name option is provided. See below).
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 :use_scenario_name => true to '#tag' or '#tags'.
29
- In this case, the cassette will be named "<feature_name>/<scenario_name>".
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 "<feature_name>/<scenario_name>/<row_name>.
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 :fakeweb
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 :fakeweb
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 :fakeweb
95
+ c.hook_into :webmock
96
96
  end
97
97
 
98
98
  Spec::Runner.configure do |c|
@@ -18,7 +18,7 @@ Feature: Usage with RSpec metadata
18
18
 
19
19
  VCR.configure do |c|
20
20
  c.cassette_library_dir = 'spec/cassettes'
21
- c.hook_into :fakeweb
21
+ c.hook_into :webmock
22
22
  c.configure_rspec_metadata!
23
23
  end
24
24
 
@@ -1,6 +1,6 @@
1
1
  # This file was generated by Appraisal
2
2
 
3
- source :rubygems
3
+ source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
6
  gem "jruby-openssl", :platforms=>:jruby
@@ -1,12 +1,12 @@
1
1
  PATH
2
- remote: /Users/hungerandthirst/Code/Ruby/vcr
2
+ remote: /Users/myron/code/vcr
3
3
  specs:
4
- vcr (2.3.0)
4
+ vcr (2.4.0)
5
5
 
6
6
  GEM
7
- remote: http://rubygems.org/
7
+ remote: https://rubygems.org/
8
8
  specs:
9
- addressable (2.3.2)
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.1.4)
20
- childprocess (0.3.6)
21
- ffi (~> 1.0, >= 1.0.6)
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.1)
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
- debugger (1.2.2)
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.0)
50
- excon (0.16.10)
40
+ eventmachine (1.0.1)
41
+ excon (0.20.0)
51
42
  fakeweb (1.3.0)
52
- faraday (0.8.4)
43
+ faraday (0.8.6)
53
44
  multipart-post (~> 1.1)
54
- ffi (1.2.0)
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.4)
55
+ github-markup (0.7.5)
65
56
  http_parser.rb (0.5.3)
66
- httpclient (2.3.0.1)
67
- json (1.6.7)
68
- linecache (0.46)
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.1.5)
61
+ multipart-post (1.2.0)
74
62
  patron (0.4.18)
75
- pry (0.9.10)
76
- coderay (~> 1.0.5)
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.5)
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.12.0)
93
- rspec-core (~> 2.12.0)
94
- rspec-expectations (~> 2.12.0)
95
- rspec-mocks (~> 2.12.0)
96
- rspec-core (2.12.0)
97
- rspec-expectations (2.12.0)
98
- diff-lcs (~> 1.1.3)
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.12.0)
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.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.3)
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)