lockdown 0.5.5 → 0.5.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,9 @@
1
+ == 0.5.6 2008-06-05
2
+ * Fixed: Misspelling of respond_to?, for some reason I keep thinking responds_to?
3
+
4
+ == 0.5.5 2008-06-05
5
+ * Fixed: Changed request comparison code. Requests that were supposed to be passing were failing.
6
+
1
7
  == 0.5.4 2008-06-05
2
8
  * Fixed: Issue with helpers in Rails 2.1, @action_name is no longer accessible, must call action_name method.
3
9
  * Fixed: Issue with users controller, show method not having user_groups_for_user instance variable
@@ -70,7 +70,7 @@ module Lockdown
70
70
  end
71
71
  yield perm
72
72
  end
73
- elsif ug.responds_to?(:name)
73
+ elsif ug.respond_to?(:name)
74
74
  # This user group was defined in the database
75
75
  ug.permissions.each do |perm|
76
76
  perm_sym = lockdown_symbol(perm.name)
@@ -2,7 +2,7 @@ module Lockdown #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 5
5
- TINY = 5
5
+ TINY = 6
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -33,7 +33,7 @@
33
33
  <h1>Lockdown</h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/lockdown"; return false'>
35
35
  <p>Get Version</p>
36
- <a href="http://rubyforge.org/projects/lockdown" class="numbers">0.5.5</a>
36
+ <a href="http://rubyforge.org/projects/lockdown" class="numbers">0.5.6</a>
37
37
  </div>
38
38
  <h2>What</h2>
39
39
 
@@ -33,7 +33,7 @@
33
33
  <h1>Lockdown</h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/lockdown"; return false'>
35
35
  <p>Get Version</p>
36
- <a href="http://rubyforge.org/projects/lockdown" class="numbers">0.5.5</a>
36
+ <a href="http://rubyforge.org/projects/lockdown" class="numbers">0.5.6</a>
37
37
  </div>
38
38
  <h2>What</h2>
39
39
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lockdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5
4
+ version: 0.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Stone