Class: Stonepath::Generators::TaskGenerator

Inherits:
Base
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/stonepath/task/task_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

source_root

Class Method Details

.next_migration_number(dirname) ⇒ Object

Implement the required interface for Rails::Generators::Migration. taken from github.com/rails/rails/blob/master/activerecord/lib/generators/active_record.rb



29
30
31
32
33
34
35
# File 'lib/generators/stonepath/task/task_generator.rb', line 29

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

Instance Method Details

#create_migrationObject



17
18
19
# File 'lib/generators/stonepath/task/task_generator.rb', line 17

def create_migration
  migration_template 'migration.rb', "db/migrate/create_#{file_name.pluralize}.rb"
end

#create_model_fileObject



13
14
15
# File 'lib/generators/stonepath/task/task_generator.rb', line 13

def create_model_file
  template('task.rb', "app/models/#{file_name}.rb") if valid_model_name?(file_name)
end