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 CHANGED
@@ -1,3 +1,5 @@
1
+ v0.6.55. Fixed bug in dbconsole command.
2
+
1
3
  v0.6.54. Support Rails 3 applications.
2
4
 
3
5
  v0.6.53. Updated magic Google search string for RubyGems download location.
@@ -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 production'
102
+ Kernel.system 'rails dbconsole production --include-password'
103
103
  else
104
- Kernel.system 'ruby script/dbconsole --include-password production'
104
+ Kernel.system 'ruby script/dbconsole production --include-password'
105
105
  end
106
106
  end
107
107
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{rails_pwnerer}
5
- s.version = "0.6.54"
5
+ s.version = "0.6.55"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Victor Costan"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_pwnerer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.54
4
+ version: 0.6.55
5
5
  platform: ruby
6
6
  authors:
7
7
  - Victor Costan