method

new

Importance_0
new(*args) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/generators/rails/app/app_generator.rb, line 185
      def initialize(*args)
        super

        unless app_path
          raise Error, "Application name should be provided in arguments. For details run: rails --help"
        end

        if !options[:skip_active_record] && !DATABASES.include?(options[:database])
          raise Error, "Invalid value for --database option. Supported for preconfiguration are: #{DATABASES.join(", ")}."
        end

        # Force sprockets to be skipped when generating API only apps.
        # Can't modify options hash as it's frozen by default.
        self.options = options.merge(skip_sprockets: true, skip_javascript: true).freeze if options[:api]
      end
Register or log in to add new notes.