Class: PrinterGenerator
- Inherits:
-
Rails::Generators::NamedBase
- Object
- Rails::Generators::NamedBase
- PrinterGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/printer/printer_generator.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.next_migration_number(dirname) ⇒ Object
9 10 11 12 13 14 15 |
# File 'lib/generators/printer/printer_generator.rb', line 9 def self.next_migration_number(dirname) if ActiveRecord::Base. Time.new.utc.strftime("%Y%m%d%H%M%S") else "%.3d" % (current_migration_number(dirname) + 1) end end |
.source_root ⇒ Object
5 6 7 |
# File 'lib/generators/printer/printer_generator.rb', line 5 def self.source_root @source_root ||= File.join(File.dirname(__FILE__), 'templates') end |
Instance Method Details
#create_migration_file ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/generators/printer/printer_generator.rb', line 17 def create_migration_file migration_template 'printer.rb', 'db/migrate/create_printers.rb' # allow the clock to advance 1sec sleep 2 migration_template 'print_job.rb', 'db/migrate/create_print_jobs.rb' # allow the clock to advance 1sec sleep 2 migration_template 'printable.rb', 'db/migrate/create_printables.rb' # allow the clock to advance 1sec sleep 2 migration_template 'template.rb', 'db/migrate/create_templates.rb' end |