lockdown 0.5.11 → 0.5.12

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,6 @@
1
+ == 0.5.12 2008-07-02
2
+ * Fix: Added production environment conditional to Dependencies.clear.
3
+
1
4
  == 0.5.11 2008-06-25
2
5
  * Update: Classy Inheritance to current version 0.4.4
3
6
 
@@ -259,7 +259,9 @@ module Lockdown
259
259
  end
260
260
 
261
261
  if Lockdown.rails_app?
262
- Dependencies.clear
262
+ unless ENV['RAILS_ENV'] == 'production'
263
+ Dependencies.clear
264
+ end
263
265
  end
264
266
  end
265
267
 
@@ -2,7 +2,7 @@ module Lockdown #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 5
5
- TINY = 11
5
+ TINY = 12
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/website/index.html CHANGED
@@ -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.11</a>
36
+ <a href="http://rubyforge.org/projects/lockdown" class="numbers">0.5.12</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.11
4
+ version: 0.5.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Stone
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-06-25 00:00:00 -04:00
12
+ date: 2008-07-02 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency