aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/rails/generators/active_record.rb
blob: a7e5e373a75f1a7bdb08b71bcf891388a2529daf (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                             



                                                  

                   

                                                       
                                                 
 

                                                                       
               
         
       

     
# frozen_string_literal: true

require "rails/generators/named_base"
require "rails/generators/active_model"
require "rails/generators/active_record/migration"
require "active_record"

module ActiveRecord
  module Generators # :nodoc:
    class Base < Rails::Generators::NamedBase # :nodoc:
      include ActiveRecord::Generators::Migration

      # Set the current directory as base for the inherited generators.
      def self.base_root
        __dir__
      end
    end
  end
end