Last active
October 6, 2019 22:21
-
-
Save kdiogenes/7cf6cc3e584f13d043ca4e9e37fd8c32 to your computer and use it in GitHub Desktop.
rails: programmable generators on rails
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rails/generators/rails/scaffold_controller/scaffold_controller_generator' | |
g = Rails::Generators::ScaffoldControllerGenerator.new(['user', '--skip-collision-check']) | |
g.shell.instance_variable_set(:@always_force, true) | |
g.destination_root = '/tmp/rails' | |
g.invoke_all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment