aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/active_record/model/model_generator.rb
blob: 53592c222ff57f605ceff797562a3eaa212c1b7c (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
34
35
module ActiveRecord
  module Generators
    class ModelGenerator < Base
      argument :attributes, :type => :hash, :default => {}, :banner => "field:type, field:type"

      check_class_collision

      conditional_class_option :timestamps
      conditional_class_option :migration

      class_option :parent, :type => :string,
                   :desc => "The parent class for the generated model"

      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
        if options[:migration] && options[:parent].nil?
#          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

      protected

        def parent_class_name
          options[:parent] || "ActiveRecord::Base"
        end

    end
  end
end