require 'generators/active_record' module ActiveRecord module Generators class ModelGenerator < Base argument :attributes, :type => :hash, :default => {}, :banner => "field:type, field:type" check_class_collision conditional_class_options :migration, :timestamps 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 def create_migration_file if options[:migration] && options[:parent].nil? file_name = "create_#{file_path.gsub(/\//, '_').pluralize}" migration_template "migration.rb", "db/migrate/#{file_name}.rb" end end protected def parent_class_name options[:parent] || "ActiveRecord::Base" end end end end