aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/active_record/model/model_generator.rb
blob: 448bf5c37f57579c1ed22e6fb71099e8e9a3c13a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module ActiveRecord
  module Generators
    class ModelGenerator < Base
      argument :attributes, :type => :hash, :default => {}, :banner => "field:type, field:type"

      check_class_collision

      # TODO Add parent support

      # TODO Add DEFAULTS support
      class_option :skip_timestamps, :type => :boolean, :default => false,
                   :desc => "Don't add timestamps to the migration file"

      # TODO Make this a invoke_if
      # TODO Add DEFAULTS support
      class_option :skip_migration, :type => :boolean, :default => false,
                   :desc => "Don't generate a migration file"

      def create_model_file
        template 'model.rb', File.join('app/models', class_path, "#{file_name}.rb")
      end

      # TODO Add migration support
      def create_migration_file
#        unless options[:skip_migration]
#          m.migration_template 'migration.rb', 'db/migrate', :assigns => {
#            :migration_name => "Create#{class_name.pluralize.gsub(/::/, '')}"
#          }, :migration_file_name => "create_#{file_path.gsub(/\//, '_').pluralize}"
#        end
      end
    end
  end
end