aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/model_subclass/model_subclass_generator.rb
blob: 46497097804bba503b305c5666bf42096b34c7ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module Rails
  module Generators
    class ModelSubclassGenerator < Base
      desc "model_subclass is deprecated. Invoke model with --parent option instead."

      def say_deprecation_warn
         say self.class.desc
      end
    end
  end
end