rails_pwnerer 0.6.54 → 0.6.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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