method
new
new(*args)
public
Hide source
# File railties/lib/rails/generators/rails/app/app_generator.rb, line 267 def initialize(*args) super if !options[:skip_active_record] && !DATABASES.include?(options[:database]) raise Error, "Invalid value for --database option. Supported preconfigurations are: #{DATABASES.join(", ")}." end # Force sprockets and yarn to be skipped when generating API only apps. # Can't modify options hash as it's frozen by default. if options[:api] self.options = options.merge(skip_sprockets: true, skip_javascript: true).freeze end @after_bundle_callbacks = [] end