diff --git a/vcr.gemspec b/vcr.gemspec new file mode 100644 index 00000000..15bce693 --- /dev/null +++ b/vcr.gemspec @@ -0,0 +1,103 @@ +# Generated by jeweler +# DO NOT EDIT THIS FILE DIRECTLY +# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command +# -*- encoding: utf-8 -*- + +Gem::Specification.new do |s| + s.name = %q{vcr} + s.version = "0.1.1" + + s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= + s.authors = ["Myron Marston"] + s.date = %q{2010-02-25} + 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.email = %q{myron.marston@gmail.com} + s.extra_rdoc_files = [ + "LICENSE", + "README.rdoc" + ] + s.files = [ + ".document", + ".gitignore", + "LICENSE", + "README.rdoc", + "Rakefile", + "VERSION", + "features/fixtures/vcr_cassettes/1.8.6/cucumber_tags/replay_cassette1.yml", + "features/fixtures/vcr_cassettes/1.8.6/cucumber_tags/replay_cassette2.yml", + "features/fixtures/vcr_cassettes/1.8.6/nested_replay_cassette.yml", + "features/fixtures/vcr_cassettes/1.8.6/not_the_real_response.yml", + "features/fixtures/vcr_cassettes/1.8.6/temp/not_the_real_response.yml", + "features/fixtures/vcr_cassettes/1.8.7/cucumber_tags/replay_cassette1.yml", + "features/fixtures/vcr_cassettes/1.8.7/cucumber_tags/replay_cassette2.yml", + "features/fixtures/vcr_cassettes/1.8.7/nested_replay_cassette.yml", + "features/fixtures/vcr_cassettes/1.8.7/not_the_real_response.yml", + "features/fixtures/vcr_cassettes/1.9.1/cucumber_tags/replay_cassette1.yml", + "features/fixtures/vcr_cassettes/1.9.1/cucumber_tags/replay_cassette2.yml", + "features/fixtures/vcr_cassettes/1.9.1/nested_replay_cassette.yml", + "features/fixtures/vcr_cassettes/1.9.1/not_the_real_response.yml", + "features/record_response.feature", + "features/replay_recorded_response.feature", + "features/step_definitions/vcr_steps.rb", + "features/support/env.rb", + "lib/vcr.rb", + "lib/vcr/cassette.rb", + "lib/vcr/config.rb", + "lib/vcr/cucumber_tags.rb", + "lib/vcr/fake_web_extensions.rb", + "lib/vcr/net_http_extensions.rb", + "lib/vcr/net_read_adapter_extensions.rb", + "lib/vcr/recorded_response.rb", + "spec/cassette_spec.rb", + "spec/config_spec.rb", + "spec/cucumber_tags_spec.rb", + "spec/fake_web_extensions_spec.rb", + "spec/fixtures/1.8.6/cassette_spec/example.yml", + "spec/fixtures/1.8.7/cassette_spec/example.yml", + "spec/fixtures/1.9.1/cassette_spec/example.yml", + "spec/net_http_extensions_spec.rb", + "spec/net_read_adapter_extensions_spec.rb", + "spec/recorded_response_spec.rb", + "spec/spec.opts", + "spec/spec_helper.rb", + "spec/support/temp_cache_dir.rb", + "spec/vcr_spec.rb" + ] + s.homepage = %q{http://github.com/myronmarston/vcr} + s.rdoc_options = ["--charset=UTF-8"] + s.require_paths = ["lib"] + s.rubygems_version = %q{1.3.6} + s.summary = %q{Use VCR to record HTTP responses and replay them using fakeweb.} + s.test_files = [ + "spec/cassette_spec.rb", + "spec/config_spec.rb", + "spec/cucumber_tags_spec.rb", + "spec/fake_web_extensions_spec.rb", + "spec/net_http_extensions_spec.rb", + "spec/net_read_adapter_extensions_spec.rb", + "spec/recorded_response_spec.rb", + "spec/spec_helper.rb", + "spec/support/temp_cache_dir.rb", + "spec/vcr_spec.rb" + ] + + if s.respond_to? :specification_version then + current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION + s.specification_version = 3 + + if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q, [">= 1.2.8"]) + s.add_development_dependency(%q, [">= 1.2.9"]) + s.add_development_dependency(%q, [">= 0.6.1"]) + else + s.add_dependency(%q, [">= 1.2.8"]) + s.add_dependency(%q, [">= 1.2.9"]) + s.add_dependency(%q, [">= 0.6.1"]) + end + else + s.add_dependency(%q, [">= 1.2.8"]) + s.add_dependency(%q, [">= 1.2.9"]) + s.add_dependency(%q, [">= 0.6.1"]) + end +end +