Class: StaticContent::Generators::InstallGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/generators/static_content/install/install_generator.rb

Instance Method Summary collapse

Instance Method Details

#add_migrationsObject



5
6
7
# File 'lib/generators/static_content/install/install_generator.rb', line 5

def add_migrations
  run 'bundle exec rake railties:install:migrations FROM=static_content'
end

#run_migrationsObject



9
10
11
12
13
14
15
16
# File 'lib/generators/static_content/install/install_generator.rb', line 9

def run_migrations
   res = ask 'Would you like to run the migrations now? [Y/n]'
   if res == '' || res.downcase == 'y'
     run 'bundle exec rake db:migrate'
   else
     puts 'Skipping rake db:migrate, don\'t forget to run it!'
   end
end