13
14
15
16
17
18
19
20
21
22
23
24
|
# File 'lib/generators/grindstone/install_generator.rb', line 13
def install
namespace = ask_for 'Where do you want to mount Grindstone?', 'blog',
_namespace
route "mount Grindstone::Engine => '/#{namespace}', as: 'grindstone'"
template 'initializer.erb', 'config/initializers/grindstone.rb'
template '20090106022023_create_authors.erb',
'db/migrate/20090106022023_create_authors.rb'
template '20090106022024_create_posts.erb',
'db/migrate/20090106022023_create_posts.rb'
template '20090106022025_create_comments.erb',
'db/migrate/20090106022025_create_comments.rb'
end
|