Added install generator

Added an install generator

Typo in migration
This commit is contained in:
John Dyer 2012-01-17 13:21:42 -05:00
parent 800bd305e9
commit 5a5a1b4321
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class NamespacePaypalAccounts < ActiveRecord::Migration
def change
rename_table :paypal_accounts, :spree_paypal_accounts
end
end

View File

@ -0,0 +1,18 @@
module SpreePaypalExpress
module Generators
class InstallGenerator < Rails::Generators::Base
def add_migrations
run 'rake railties:install:migrations FROM=spree_paypal_express'
end
def run_migrations
res = ask "Would you like to run the migrations now? [Y/n]"
if res == "" || res.downcase == "y"
run 'rake db:migrate'
else
puts "Skiping rake db:migrate, don't forget to run it!"
end
end
end
end
end