Skip to content

Commit

Permalink
Updated version to 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartosz Blimke committed Nov 24, 2009
1 parent e09c8c0 commit feb8ba5
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
== 0.7.3

* Clarified documentation
* Fixed some issues with loading of Webmock classes
* Test::Unit and RSpec adapters have to be required separately

== 0.7.2

* Added support for matching escaped and non escaped URLs
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ or if you use RSpec add these lines to `spec/spec_helper`:

include WebMock

And add these lines if you want to use WebMock without RSpec or Test::Unit support:
You can also use WebMock without RSpec or Test::Unit support:

require 'webmock'

Expand Down
27 changes: 21 additions & 6 deletions webmock.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{webmock}
s.version = "0.7.1"
s.version = "0.7.3"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Bartosz Blimke"]
s.date = %q{2009-11-20}
s.date = %q{2009-11-24}
s.description = %q{WebMock allows stubbing HTTP requests and setting expectations on HTTP requests.}
s.email = %q{bartosz.blimke@gmail.com}
s.extra_rdoc_files = [
Expand All @@ -18,6 +18,7 @@ Gem::Specification.new do |s|
]
s.files = [
".gitignore",
"CHANGELOG",
"LICENSE",
"README.md",
"Rakefile",
Expand All @@ -34,23 +35,30 @@ Gem::Specification.new do |s|
"lib/webmock/request_execution_verifier.rb",
"lib/webmock/request_profile.rb",
"lib/webmock/request_registry.rb",
"lib/webmock/request_signature.rb",
"lib/webmock/request_stub.rb",
"lib/webmock/response.rb",
"lib/webmock/uri.rb",
"lib/webmock/rspec.rb",
"lib/webmock/test_unit.rb",
"lib/webmock/util/hash_counter.rb",
"lib/webmock/utility.rb",
"lib/webmock/util/headers.rb",
"lib/webmock/util/uri.rb",
"lib/webmock/webmock.rb",
"spec/net_http_spec.rb",
"spec/other_net_http_libs_spec.rb",
"spec/request_execution_verifier_spec.rb",
"spec/request_profile_spec.rb",
"spec/request_registry_spec.rb",
"spec/request_signature_spec.rb",
"spec/request_stub_spec.rb",
"spec/response_spec.rb",
"spec/spec.opts",
"spec/spec_helper.rb",
"spec/util/hash_counter_spec.rb",
"spec/utility_spec.rb",
"spec/util/headers_spec.rb",
"spec/util/uri_spec.rb",
"spec/vendor/addressable/lib/addressable/uri.rb",
"spec/vendor/addressable/lib/uri.rb",
"spec/vendor/right_http_connection-1.2.4/History.txt",
"spec/vendor/right_http_connection-1.2.4/Manifest.txt",
"spec/vendor/right_http_connection-1.2.4/README.txt",
Expand Down Expand Up @@ -88,11 +96,15 @@ Gem::Specification.new do |s|
"spec/request_execution_verifier_spec.rb",
"spec/request_profile_spec.rb",
"spec/request_registry_spec.rb",
"spec/request_signature_spec.rb",
"spec/request_stub_spec.rb",
"spec/response_spec.rb",
"spec/spec_helper.rb",
"spec/util/hash_counter_spec.rb",
"spec/utility_spec.rb",
"spec/util/headers_spec.rb",
"spec/util/uri_spec.rb",
"spec/vendor/addressable/lib/addressable/uri.rb",
"spec/vendor/addressable/lib/uri.rb",
"spec/vendor/right_http_connection-1.2.4/lib/net_fix.rb",
"spec/vendor/right_http_connection-1.2.4/lib/right_http_connection.rb",
"spec/vendor/right_http_connection-1.2.4/setup.rb",
Expand All @@ -113,11 +125,14 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<addressable>, [">= 2.1.1"])
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
else
s.add_dependency(%q<addressable>, [">= 2.1.1"])
s.add_dependency(%q<rspec>, [">= 1.2.9"])
end
else
s.add_dependency(%q<addressable>, [">= 2.1.1"])
s.add_dependency(%q<rspec>, [">= 1.2.9"])
end
end
Expand Down

0 comments on commit feb8ba5

Please sign in to comment.