aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/model/model_generator.rb
blob: 58c274c4d315b5b0aca2fa5a149afb4fc08b0851 (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