Class: ActiveRecord::Generators::Base
- Inherits:
-
Rails::Generators::NamedBase
- Object
- Rails::Generators::NamedBase
- ActiveRecord::Generators::Base
- Extended by:
- Migration
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/rails/generators/active_record.rb
Overview
:nodoc:
Direct Known Subclasses
MigrationGenerator, ModelGenerator, ObserverGenerator, SessionMigrationGenerator
Class Method Summary collapse
-
.base_root ⇒ Object
Set the current directory as base for the inherited generators.
-
.next_migration_number(dirname) ⇒ Object
Implement the required interface for Rails::Generators::Migration.
Methods included from Migration
Class Method Details
.base_root ⇒ Object
Set the current directory as base for the inherited generators.
14 15 16 |
# File 'lib/rails/generators/active_record.rb', line 14 def self.base_root File.dirname(__FILE__) end |
.next_migration_number(dirname) ⇒ Object
Implement the required interface for Rails::Generators::Migration.
19 20 21 22 |
# File 'lib/rails/generators/active_record.rb', line 19 def self.next_migration_number(dirname) #:nodoc: next_migration_number = current_migration_number(dirname) + 1 ActiveRecord::Migration.next_migration_number(next_migration_number) end |