Class: HelloBarGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Extended by:
ActiveRecord::Generators::Migration
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/hello_bar/hello_bar_generator.rb

Instance Method Summary collapse

Instance Method Details

#installObject



10
11
12
13
14
15
16
17
# File 'lib/generators/hello_bar/hello_bar_generator.rb', line 10

def install
  create_routes
  begin
    migration_template "migration.rb", "db/migrate/create_announcements.rb"
  rescue
  end
  default_data
end