Repository URL to install this package:
|
Version:
0.4.2 ▾
|
module Scrapbook
class InstallGenerator < Rails::Generators::Base
source_root File.expand_path("../templates", __FILE__)
def copy_templates
template "initializer.rb.erb",
"config/initializers/scrapbook.rb"
end
def setup_routes
insert_into_file 'config/routes.rb',
"\n mount Scrapbook::Engine => '/scrapbook/'\n",
after: "Rails.application.routes.draw do"
end
def create_migrations
rake 'scrapbook:install:migrations'
end
end
end