rails_pwnerer 0.6.54 → 0.6.55
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +2 -0
- data/lib/pwnage/app/files.rb +2 -2
- data/rails_pwnerer.gemspec +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
data/lib/pwnage/app/files.rb
CHANGED
@@ -99,9 +99,9 @@ class RailsPwnage::App::Files
|
|
99
99
|
when :db_console
|
100
100
|
Dir.chdir(RailsPwnage::Config[app_name, instance_name][:app_path]) do
|
101
101
|
if File.exist? 'script/rails'
|
102
|
-
Kernel.system 'rails dbconsole --include-password
|
102
|
+
Kernel.system 'rails dbconsole production --include-password'
|
103
103
|
else
|
104
|
-
Kernel.system 'ruby script/dbconsole --include-password
|
104
|
+
Kernel.system 'ruby script/dbconsole production --include-password'
|
105
105
|
end
|
106
106
|
end
|
107
107
|
end
|
data/rails_pwnerer.gemspec
CHANGED