aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/model/model_generator.rb
blob: 36354c5638ef6f4f059244c6a519db9e793c165e (plain) (blame)
1
2
3
4
5
6
7
8
module Rails
  module Generators
    class ModelGenerator < NamedBase
      argument :attributes, :type => :hash, :default => {}, :banner => "field:type field:type"
      hook_for :orm, :test_framework
    end
  end
end