instance method valid_const?

Ruby on Rails 3.2.22.5

Since v3.1.12 Last seen in v3.2.22.5

Available in: v3.1.12 v3.2.22.5

Signature

valid_const?()

No documentation comment.

Source
# File railties/lib/rails/generators/rails/plugin_new/plugin_new_generator.rb, line 273
      def valid_const?
        if camelized =~ /^\d/
          raise Error, "Invalid plugin name #{original_name}. Please give a name which does not start with numbers."
        elsif RESERVED_NAMES.include?(name)
          raise Error, "Invalid plugin name #{original_name}. Please give a name which does not match one of the reserved rails words."
        elsif Object.const_defined?(camelized)
          raise Error, "Invalid plugin name #{original_name}, constant #{camelized} is already in use. Please choose another plugin name."
        end
      end

Defined in railties/lib/rails/generators/rails/plugin_new/plugin_new_generator.rb line 273 · View on GitHub · Improve this page · Find usages on GitHub

Defined in Rails::Generators::PluginNewGenerator

Type at least 2 characters to search.

↑↓ navigate · open · esc close