lockdown 0.3.3 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -2
- data/bin/lockdown +1 -1
- data/lib/lockdown/version.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
@@ -1,7 +1,10 @@
|
|
1
|
-
== 0.3.
|
1
|
+
== 0.3.4 2008-04-30
|
2
|
+
* Fixed: Addition of require 'lockdown/init' to config file
|
3
|
+
|
4
|
+
== 0.3.3 2008-04-30
|
2
5
|
* Spoke too soon. Omitted user_group controller change.
|
3
6
|
|
4
|
-
== 0.3.2 2008-04-
|
7
|
+
== 0.3.2 2008-04-30
|
5
8
|
* Management screens looking good. Now moving on to testing with starter application.
|
6
9
|
|
7
10
|
== 0.3.1 2008-04-29
|
data/bin/lockdown
CHANGED
@@ -102,7 +102,7 @@ begin
|
|
102
102
|
File.open(config_file, "a") do |f|
|
103
103
|
require_lockdown = %Q(require "lockdown/init")
|
104
104
|
|
105
|
-
f << %Q(#{require_lockdown}\n\n) unless configuration_file_has?(require_lockdown)
|
105
|
+
f << %Q(\n\n#{require_lockdown}\n\n) unless configuration_file_has?(require_lockdown)
|
106
106
|
end
|
107
107
|
rescue Exception => e
|
108
108
|
puts e.backtrace.join("\n")
|
data/lib/lockdown/version.rb
CHANGED