Skip to content

Commit

Permalink
0.3.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
myronmarston committed Mar 25, 2010
1 parent ea72321 commit d4767bf
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 7 deletions.
11 changes: 11 additions & 0 deletions History.rdoc
Original file line number Original file line Diff line number Diff line change
@@ -1,3 +1,14 @@
== 0.3.0 March 24, 2010
* Renamed a bunch of methods, replacing them with method names that more clearly fit the VCR/cassette metaphor:
* VCR.create_cassette! => VCR.insert_cassette
* VCR.destroy_cassette! => VCR.eject_cassette
* VCR.with_cassette => VCR.use_cassette
* VCR::Cassette#destroy! => VCR::Cassette#eject
* VCR::Cassette#cache_file => VCR::Cassette#file
* VCR::Config.cache_dir => VCR::Config.cassette_library_dir
* :unregistered record mode => :new_episodes record mode
* All the old methods still work, but you'll get deprecation warnings.

== 0.2.0 March 9, 2010 == 0.2.0 March 9, 2010
* Added <tt>:allow_real_http</tt> cassette option, which allows VCR to work with capybara and a javascript driver. * Added <tt>:allow_real_http</tt> cassette option, which allows VCR to work with capybara and a javascript driver.
Bug reported by {Ben Hutton}[http://github.com/benhutton]. Bug reported by {Ben Hutton}[http://github.com/benhutton].
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ begin
Jeweler::Tasks.new do |gem| Jeweler::Tasks.new do |gem|
gem.name = "vcr" gem.name = "vcr"
gem.summary = %Q{Use VCR to record HTTP responses and replay them using fakeweb.} gem.summary = %Q{Use VCR to record HTTP responses and replay them using fakeweb.}
gem.description = %Q{VCR provides helpers to record HTTP requests for URIs that are not registered with fakeweb, and replay them later. It provides built-in support for cucumber, but works with any ruby testing framework.} gem.description = %Q{VCR provides helpers to record HTTP requests for URIs that are not registered with fakeweb, and replay them later. It works with any ruby testing framework, and provides built-in support for cucumber.}
gem.email = "myron.marston@gmail.com" gem.email = "myron.marston@gmail.com"
gem.homepage = "http://github.com/myronmarston/vcr" gem.homepage = "http://github.com/myronmarston/vcr"
gem.authors = ["Myron Marston"] gem.authors = ["Myron Marston"]
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Original file line Diff line number Diff line change
@@ -1 +1 @@
0.2.0 0.3.0
15 changes: 10 additions & 5 deletions vcr.gemspec
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{vcr} s.name = %q{vcr}
s.version = "0.2.0" s.version = "0.3.0"


s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Myron Marston"] s.authors = ["Myron Marston"]
s.date = %q{2010-03-09} s.date = %q{2010-03-24}
s.description = %q{VCR provides helpers to record HTTP requests for URIs that are not registered with fakeweb, and replay them later. It provides built-in support for cucumber, but works with any ruby testing framework.} s.description = %q{VCR provides helpers to record HTTP requests for URIs that are not registered with fakeweb, and replay them later. It works with any ruby testing framework, and provides built-in support for cucumber.}
s.email = %q{myron.marston@gmail.com} s.email = %q{myron.marston@gmail.com}
s.extra_rdoc_files = [ s.extra_rdoc_files = [
"LICENSE", "LICENSE",
Expand Down Expand Up @@ -47,13 +47,15 @@ Gem::Specification.new do |s|
"lib/vcr/cassette.rb", "lib/vcr/cassette.rb",
"lib/vcr/config.rb", "lib/vcr/config.rb",
"lib/vcr/cucumber_tags.rb", "lib/vcr/cucumber_tags.rb",
"lib/vcr/deprecations.rb",
"lib/vcr/extensions/fake_web.rb", "lib/vcr/extensions/fake_web.rb",
"lib/vcr/extensions/net_http.rb", "lib/vcr/extensions/net_http.rb",
"lib/vcr/extensions/net_read_adapter.rb", "lib/vcr/extensions/net_read_adapter.rb",
"lib/vcr/recorded_response.rb", "lib/vcr/recorded_response.rb",
"spec/cassette_spec.rb", "spec/cassette_spec.rb",
"spec/config_spec.rb", "spec/config_spec.rb",
"spec/cucumber_tags_spec.rb", "spec/cucumber_tags_spec.rb",
"spec/deprecations_spec.rb",
"spec/extensions/fake_web_spec.rb", "spec/extensions/fake_web_spec.rb",
"spec/extensions/net_http_spec.rb", "spec/extensions/net_http_spec.rb",
"spec/extensions/net_read_adapter_spec.rb", "spec/extensions/net_read_adapter_spec.rb",
Expand All @@ -63,8 +65,9 @@ Gem::Specification.new do |s|
"spec/recorded_response_spec.rb", "spec/recorded_response_spec.rb",
"spec/spec.opts", "spec/spec.opts",
"spec/spec_helper.rb", "spec/spec_helper.rb",
"spec/support/deprecated.rb",
"spec/support/disable_warnings.rb", "spec/support/disable_warnings.rb",
"spec/support/temp_cache_dir.rb", "spec/support/temp_cassette_library_dir.rb",
"spec/vcr_spec.rb", "spec/vcr_spec.rb",
"vcr.gemspec" "vcr.gemspec"
] ]
Expand All @@ -77,13 +80,15 @@ Gem::Specification.new do |s|
"spec/cassette_spec.rb", "spec/cassette_spec.rb",
"spec/config_spec.rb", "spec/config_spec.rb",
"spec/cucumber_tags_spec.rb", "spec/cucumber_tags_spec.rb",
"spec/deprecations_spec.rb",
"spec/extensions/fake_web_spec.rb", "spec/extensions/fake_web_spec.rb",
"spec/extensions/net_http_spec.rb", "spec/extensions/net_http_spec.rb",
"spec/extensions/net_read_adapter_spec.rb", "spec/extensions/net_read_adapter_spec.rb",
"spec/recorded_response_spec.rb", "spec/recorded_response_spec.rb",
"spec/spec_helper.rb", "spec/spec_helper.rb",
"spec/support/deprecated.rb",
"spec/support/disable_warnings.rb", "spec/support/disable_warnings.rb",
"spec/support/temp_cache_dir.rb", "spec/support/temp_cassette_library_dir.rb",
"spec/vcr_spec.rb" "spec/vcr_spec.rb"
] ]


Expand Down

0 comments on commit d4767bf

Please sign in to comment.