# -*- encoding: utf-8 -*- Gem::Specification.new do |s| s.name = %q{fakeweb} s.version = "1.2.5" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Chris Kampmeier", "Blaine Cook"] s.date = %q{2009-07-08} s.description = %q{FakeWeb is a helper for faking web requests in Ruby. It works at a global level, without modifying code or writing extensive stubs.} s.email = ["chris@kampers.net", "romeda@gmail.com"] s.extra_rdoc_files = ["CHANGELOG", "LICENSE.txt", "README.rdoc"] s.files = ["CHANGELOG", "LICENSE.txt", "README.rdoc", "Rakefile", "lib/fake_web.rb", "lib/fake_web/ext/net_http.rb", "lib/fake_web/registry.rb", "lib/fake_web/responder.rb", "lib/fake_web/response.rb", "lib/fake_web/stub_socket.rb", "lib/fake_web/utility.rb", "lib/fakeweb.rb", "test/fixtures/google_response_from_curl", "test/fixtures/google_response_with_transfer_encoding", "test/fixtures/google_response_without_transfer_encoding", "test/fixtures/test_example.txt", "test/fixtures/test_txt_file", "test/test_allow_net_connect.rb", "test/test_deprecations.rb", "test/test_fake_authentication.rb", "test/test_fake_web.rb", "test/test_fake_web_open_uri.rb", "test/test_helper.rb", "test/test_missing_open_uri.rb", "test/test_precedence.rb", "test/test_query_string.rb", "test/test_regexes.rb", "test/test_response_headers.rb", "test/test_trailing_slashes.rb", "test/test_utility.rb"] s.homepage = %q{http://github.com/chrisk/fakeweb} s.rdoc_options = ["--main", "README.rdoc", "--title", "FakeWeb API Documentation", "--charset", "utf-8", "--line-numbers", "--inline-source"] s.require_paths = ["lib"] s.rubyforge_project = %q{fakeweb} s.rubygems_version = %q{1.3.5} s.summary = %q{A tool for faking responses to HTTP requests} s.test_files = ["test/fixtures/google_response_from_curl", "test/fixtures/google_response_with_transfer_encoding", "test/fixtures/google_response_without_transfer_encoding", "test/fixtures/test_example.txt", "test/fixtures/test_txt_file", "test/test_allow_net_connect.rb", "test/test_deprecations.rb", "test/test_fake_authentication.rb", "test/test_fake_web.rb", "test/test_fake_web_open_uri.rb", "test/test_helper.rb", "test/test_missing_open_uri.rb", "test/test_precedence.rb", "test/test_query_string.rb", "test/test_regexes.rb", "test/test_response_headers.rb", "test/test_trailing_slashes.rb", "test/test_utility.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_development_dependency(%q, [">= 0.9.5"]) else s.add_dependency(%q, [">= 0.9.5"]) end else s.add_dependency(%q, [">= 0.9.5"]) end end