Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisk committed Aug 23, 2010
1 parent c50a1e5 commit 809ab3d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
@@ -1,4 +1,4 @@
fakeweb (development) fakeweb (1.3.0)


* improve response header registration so you can pass an array to set a header * improve response header registration so you can pass an array to set a header
more than once [Myron Marston] more than once [Myron Marston]
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
@@ -1,7 +1,7 @@
require 'rubygems' require 'rubygems'
require 'rake' require 'rake'


version = '1.2.8' version = '1.3.0'


begin begin
require 'jeweler' require 'jeweler'
Expand Down
4 changes: 2 additions & 2 deletions fakeweb.gemspec
Expand Up @@ -5,11 +5,11 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{fakeweb} s.name = %q{fakeweb}
s.version = "1.2.8" s.version = "1.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 = ["Chris Kampmeier", "Blaine Cook"] s.authors = ["Chris Kampmeier", "Blaine Cook"]
s.date = %q{2009-12-25} s.date = %q{2010-08-22}
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.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.email = ["chris@kampers.net", "romeda@gmail.com"]
s.extra_rdoc_files = [ s.extra_rdoc_files = [
Expand Down
2 changes: 1 addition & 1 deletion lib/fake_web.rb
Expand Up @@ -13,7 +13,7 @@
module FakeWeb module FakeWeb


# Returns the version string for the copy of FakeWeb you have loaded. # Returns the version string for the copy of FakeWeb you have loaded.
VERSION = '1.2.8' VERSION = '1.3.0'


# Resets the FakeWeb Registry. This will force all subsequent web requests to # Resets the FakeWeb Registry. This will force all subsequent web requests to
# behave as real requests. # behave as real requests.
Expand Down
2 changes: 1 addition & 1 deletion test/test_fake_web.rb
Expand Up @@ -584,7 +584,7 @@ def test_http_version_from_file_response
end end


def test_version def test_version
assert_equal "1.2.8", FakeWeb::VERSION assert_equal "1.3.0", FakeWeb::VERSION
end end


end end

0 comments on commit 809ab3d

Please sign in to comment.