Class: FollowableBehaviourGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- FollowableBehaviourGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/followable_generator.rb
Class Method Summary collapse
-
.next_migration_number(dirname) ⇒ Object
Implement the required interface for Rails::Generators::Migration.
- .source_root ⇒ Object
Instance Method Summary collapse
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/rails/generators/active_record.rb
14 15 16 17 18 19 20 |
# File 'lib/generators/followable_generator.rb', line 14 def self.next_migration_number(dirname) if ActiveRecord::Base. Time.now.utc.strftime("%Y%m%d%H%M%S") else "%.3d" % (current_migration_number(dirname) + 1) end end |
.source_root ⇒ Object
8 9 10 |
# File 'lib/generators/followable_generator.rb', line 8 def self.source_root @source_root ||= File.join(File.dirname(__FILE__), 'templates') end |
Instance Method Details
#create_migration_file ⇒ Object
22 23 24 |
# File 'lib/generators/followable_generator.rb', line 22 def create_migration_file migration_template 'migration.rb', 'db/migrate/followable_behaviour_migration.rb' end |
#create_model ⇒ Object
26 27 28 |
# File 'lib/generators/followable_generator.rb', line 26 def create_model template "model.rb", File.join('app/models', "follow.rb") end |