Guest User

Untitled

a guest
Jan 15th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.25 KB | None | 0 0
  1. require 'rails/generators'
  2.  
  3. class InstallGenerator < Rails::Generators::Base
  4.   def dummy
  5.     puts "executing dummy"
  6.   end
  7.  
  8.   def install_migrations
  9.     puts "install_migrations"
  10.     run 'bundle exec rake railties:install:migrations'
  11.   end
  12. end
Add Comment
Please, Sign In to add comment