Class: SpreeStaticContent::Generators::InstallGenerator

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

Instance Method Summary collapse

Instance Method Details

#add_migrationsObject



10
11
12
# File 'lib/generators/spree_static_content/install_generator.rb', line 10

def add_migrations
  run 'rake railties:install:migrations FROM=spree_static_content'
end

#add_stylesheetsObject



6
7
8
# File 'lib/generators/spree_static_content/install_generator.rb', line 6

def add_stylesheets
  inject_into_file "app/assets/stylesheets/admin/all.css", " *= require formtastic\n", :before => /\*\//, :verbose => true
end

#run_migrationsObject



14
15
16
17
18
19
20
21
# File 'lib/generators/spree_static_content/install_generator.rb', line 14

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