Class: ActiveRecord::Generators::Base
- Inherits:
-
Rails::Generators::NamedBase
- Object
- Thor::Group
- Rails::Generators::Base
- Rails::Generators::NamedBase
- ActiveRecord::Generators::Base
- Includes:
- Rails::Generators::Migration
- Defined in:
- activerecord/lib/rails/generators/active_record.rb
Overview
:nodoc:
Direct Known Subclasses
Instance Attribute Summary
Attributes included from Rails::Generators::Migration
#migration_class_name, #migration_file_name, #migration_number
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 Rails::Generators::Migration
Methods included from ActiveSupport::Concern
#append_features, extended, #included
Methods inherited from Rails::Generators::NamedBase
Methods inherited from Rails::Generators::Base
class_option, default_source_root, desc, hide!, hook_for, inherited, namespace, remove_hook_for, source_root
Methods included from Rails::Generators::Actions
#add_source, #capify!, #environment, #gem, #gem_group, #generate, #git, #initialize, #initializer, #lib, #rake, #rakefile, #readme, #route, #vendor
Constructor Details
This class inherits a constructor from Rails::Generators::NamedBase
Class Method Details
.base_root ⇒ Object
Set the current directory as base for the inherited generators.
12 13 14 |
# File 'activerecord/lib/rails/generators/active_record.rb', line 12 def self.base_root File.dirname(__FILE__) end |
.next_migration_number(dirname) ⇒ Object
Implement the required interface for Rails::Generators::Migration.
17 18 19 20 |
# File 'activerecord/lib/rails/generators/active_record.rb', line 17 def self.next_migration_number(dirname) next_migration_number = current_migration_number(dirname) + 1 ActiveRecord::Migration.next_migration_number(next_migration_number) end |