class Blazing::Recipe::DbMigrateAndPrecompileAssets

Public Instance Methods

run(target_options = {}) click to toggle source
Calls superclass method
# File lib/appboost/blazing/db_migrate_and_precompile_assets.rb, line 5
def run(target_options = {})
  super target_options

  info 'precompiling assets'
  system 'bundle exec rake RAILS_GROUPS=assets db:migrate assets:precompile'
end