Skip to content

Commit

Permalink
Release v2.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
binarylogic committed Apr 9, 2009
1 parent 902d83a commit 9cf6cc2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rdoc
@@ -1,6 +1,6 @@
== 2.0.7
== 2.0.7 release 2009-4-9

* Rename TestCase::ControllerAdapter to TestCase::RailsRequestAdapter to help clarify it's usage.
* Rename TestCase::ControllerAdapter to TestCase::RailsRequestAdapter to help clarify it's usage and fix a constant typo.

== 2.0.6 release 2009-4-9

Expand Down
2 changes: 1 addition & 1 deletion lib/authlogic/test_case/mock_request.rb
Expand Up @@ -15,7 +15,7 @@ def referer
end

def remote_ip
(controller && controller.respond_to?(:env) && controller.env.is_a?(Hahs) && controller.env['REMOTE_ADDR']) || "1.1.1.1"
(controller && controller.respond_to?(:env) && controller.env.is_a?(Hash) && controller.env['REMOTE_ADDR']) || "1.1.1.1"
end

def user_agent
Expand Down
2 changes: 1 addition & 1 deletion lib/authlogic/version.rb
Expand Up @@ -41,7 +41,7 @@ def to_a

MAJOR = 2
MINOR = 0
TINY = 6
TINY = 7

# The current version as a Version instance
CURRENT = new(MAJOR, MINOR, TINY)
Expand Down

0 comments on commit 9cf6cc2

Please sign in to comment.