Class: ExvoNotificationsGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/exvo_notifications/exvo_notifications_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(dirname) ⇒ Object



13
14
15
16
17
18
19
# File 'lib/generators/exvo_notifications/exvo_notifications_generator.rb', line 13

def self.next_migration_number(dirname)
  if ActiveRecord::Base.timestamped_migrations
    Time.now.utc.strftime("%Y%m%d%H%M%S")
  else
    "%.3d" % (current_migration_number(dirname) + 1)
  end
end

.source_rootObject



9
10
11
# File 'lib/generators/exvo_notifications/exvo_notifications_generator.rb', line 9

def self.source_root
   @source_root ||= File.join(File.dirname(__FILE__), 'templates')
end

Instance Method Details

#copy_not_working_page_fileObject



25
26
27
# File 'lib/generators/exvo_notifications/exvo_notifications_generator.rb', line 25

def copy_not_working_page_file
  copy_file 'not_working.html', 'public/not_working.html'
end

#create_migration_fileObject



21
22
23
# File 'lib/generators/exvo_notifications/exvo_notifications_generator.rb', line 21

def create_migration_file
  migration_template 'migration.rb', 'db/migrate/add_plan_to_user.rb'
end