Skip to content

Commit

Permalink
misspelling of respond_to. keep using responds_to for some reason
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Stone committed Jun 6, 2008
1 parent 83a6b1f commit 49104af
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions History.txt
@@ -1,3 +1,6 @@
== 0.5.6 2008-06-05
* Fixed: Misspelling of respond_to?, for some reason I keep thinking responds_to?

== 0.5.5 2008-06-05
* Fixed: Changed request comparison code. Requests that were supposed to be passing were failing.

Expand Down
2 changes: 1 addition & 1 deletion lib/lockdown/system.rb
Expand Up @@ -70,7 +70,7 @@ def permissions_for_user_group(ug)
end
yield perm
end
elsif ug.responds_to?(:name)
elsif ug.respond_to?(:name)
# This user group was defined in the database
ug.permissions.each do |perm|
perm_sym = lockdown_symbol(perm.name)
Expand Down
2 changes: 1 addition & 1 deletion lib/lockdown/version.rb
Expand Up @@ -2,7 +2,7 @@ module Lockdown #:nodoc:
module VERSION #:nodoc:
MAJOR = 0
MINOR = 5
TINY = 5
TINY = 6

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion website/generator.html
Expand Up @@ -33,7 +33,7 @@
<h1>Lockdown</h1>
<div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/lockdown"; return false'>
<p>Get Version</p>
<a href="http://rubyforge.org/projects/lockdown" class="numbers">0.5.5</a>
<a href="http://rubyforge.org/projects/lockdown" class="numbers">0.5.6</a>
</div>
<h2>What</h2>

Expand Down
2 changes: 1 addition & 1 deletion website/index.html
Expand Up @@ -33,7 +33,7 @@
<h1>Lockdown</h1>
<div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/lockdown"; return false'>
<p>Get Version</p>
<a href="http://rubyforge.org/projects/lockdown" class="numbers">0.5.5</a>
<a href="http://rubyforge.org/projects/lockdown" class="numbers">0.5.6</a>
</div>
<h2>What</h2>

Expand Down

0 comments on commit 49104af

Please sign in to comment.