class Rails::Generators::NamedBase

Parent:
Rails::Generators::Base

Attributes

file_name[R]

TODO Change this to private once we've dropped Ruby 2.2 support. Workaround for Ruby 2.2 “private attribute?” warning.

Private Class Methods

check_class_collision(options = {}) Show source
# File railties/lib/rails/generators/named_base.rb, line 218
def self.check_class_collision(options = {}) # :doc:
  define_method :check_class_collision do
    name = if respond_to?(:controller_class_name) # for ResourceHelpers
      controller_class_name
    else
      class_name
    end

    class_collisions "#{options[:prefix]}#{name}#{options[:suffix]}"
  end
end

Add a class collisions name to be checked on class initialization. You can supply a hash with a :prefix or :suffix to be tested.

Examples

check_class_collision suffix: "Decorator"

If the generator is invoked with class name Admin, it will check for the presence of “AdminDecorator”.

Public Instance Methods

js_template(source, destination) Show source
# File railties/lib/rails/generators/named_base.rb, line 29
def js_template(source, destination)
  template(source + ".js", destination + ".js")
end
template(source, *args, &block) Show source
# File railties/lib/rails/generators/named_base.rb, line 23
def template(source, *args, &block)
  inside_template do
    super
  end
end
Calls superclass method

Private Instance Methods

application_name() Show source
# File railties/lib/rails/generators/named_base.rb, line 142
def application_name # :doc:
  if defined?(Rails) && Rails.application
    Rails.application.class.name.split("::").first.underscore
  else
    "application"
  end
end

Tries to retrieve the application name or simply return application.

attributes_names() Show source
# File railties/lib/rails/generators/named_base.rb, line 192
def attributes_names # :doc:
  @attributes_names ||= attributes.each_with_object([]) do |a, names|
    names << a.column_name
    names << "password_confirmation" if a.password_digest?
    names << "#{a.name}_type" if a.polymorphic?
  end
end
class_name() Show source
# File railties/lib/rails/generators/named_base.rb, line 74
def class_name # :doc:
  (class_path + [file_name]).map!(&:camelize).join("::")
end
class_path() Show source
# File railties/lib/rails/generators/named_base.rb, line 62
def class_path # :doc:
  inside_template? || !namespaced? ? regular_class_path : namespaced_class_path
end
edit_helper() Show source
# File railties/lib/rails/generators/named_base.rb, line 109
def edit_helper # :doc:
  "edit_#{show_helper}"
end
file_path() Show source
# File railties/lib/rails/generators/named_base.rb, line 58
def file_path # :doc:
  @file_path ||= (class_path + [file_name]).join("/")
end
fixture_file_name() Show source
# File railties/lib/rails/generators/named_base.rb, line 129
def fixture_file_name # :doc:
  @fixture_file_name ||= (pluralize_table_names? ? plural_file_name : file_name)
end
human_name() Show source
# File railties/lib/rails/generators/named_base.rb, line 78
def human_name # :doc:
  @human_name ||= singular_name.humanize
end
i18n_scope() Show source
# File railties/lib/rails/generators/named_base.rb, line 86
def i18n_scope # :doc:
  @i18n_scope ||= file_path.tr("/", ".")
end
index_helper() Show source
# File railties/lib/rails/generators/named_base.rb, line 101
def index_helper # :doc:
  uncountable? ? "#{plural_route_name}_index" : plural_route_name
end
inside_template() { || ... } Show source
# File railties/lib/rails/generators/named_base.rb, line 47
def inside_template # :doc:
  @inside_template = true
  yield
ensure
  @inside_template = false
end
inside_template?() Show source
# File railties/lib/rails/generators/named_base.rb, line 54
def inside_template? # :doc:
  @inside_template
end
model_resource_name(prefix: "") Show source
# File railties/lib/rails/generators/named_base.rb, line 154
def model_resource_name(prefix: "") # :doc:
  resource_name = "#{prefix}#{singular_table_name}"
  if options[:model_name]
    "[#{controller_class_path.map { |name| ":" + name }.join(", ")}, #{resource_name}]"
  else
    resource_name
  end
end
mountable_engine?() Show source
# File railties/lib/rails/generators/named_base.rb, line 204
def mountable_engine? # :doc:
  defined?(ENGINE_ROOT) && namespaced?
end
namespaced_class_path() Show source
# File railties/lib/rails/generators/named_base.rb, line 70
def namespaced_class_path # :doc:
  @namespaced_class_path ||= namespace_dirs + @class_path
end
new_helper() Show source
# File railties/lib/rails/generators/named_base.rb, line 113
def new_helper # :doc:
  "new_#{singular_route_name}_url"
end
plural_file_name() Show source
# File railties/lib/rails/generators/named_base.rb, line 125
def plural_file_name # :doc:
  @plural_file_name ||= file_name.pluralize
end
plural_name() Show source
# File railties/lib/rails/generators/named_base.rb, line 82
def plural_name # :doc:
  @plural_name ||= singular_name.pluralize
end
plural_route_name() Show source
# File railties/lib/rails/generators/named_base.rb, line 171
def plural_route_name # :doc:
  if options[:model_name]
    "#{controller_class_path.join('_')}_#{plural_table_name}"
  else
    plural_table_name
  end
end
plural_table_name() Show source
# File railties/lib/rails/generators/named_base.rb, line 121
def plural_table_name # :doc:
  @plural_table_name ||= (pluralize_table_names? ? table_name : table_name.pluralize)
end
pluralize_table_names?() Show source
# File railties/lib/rails/generators/named_base.rb, line 200
def pluralize_table_names? # :doc:
  !defined?(ActiveRecord::Base) || ActiveRecord::Base.pluralize_table_names
end
redirect_resource_name() Show source
# File railties/lib/rails/generators/named_base.rb, line 150
def redirect_resource_name # :doc:
  model_resource_name(prefix: "@")
end
regular_class_path() Show source
# File railties/lib/rails/generators/named_base.rb, line 66
def regular_class_path # :doc:
  @class_path
end
route_url() Show source
# File railties/lib/rails/generators/named_base.rb, line 133
def route_url # :doc:
  @route_url ||= class_path.collect { |dname| "/" + dname }.join + "/" + plural_file_name
end
show_helper() Show source
# File railties/lib/rails/generators/named_base.rb, line 105
def show_helper # :doc:
  "#{singular_route_name}_url(@#{singular_table_name})"
end
singular_name() Show source
# File railties/lib/rails/generators/named_base.rb, line 43
def singular_name # :doc:
  file_name
end

FIXME: We are avoiding to use alias because a bug on thor that make this method public and add it to the task list.

singular_route_name() Show source
# File railties/lib/rails/generators/named_base.rb, line 163
def singular_route_name # :doc:
  if options[:model_name]
    "#{controller_class_path.join('_')}_#{singular_table_name}"
  else
    singular_table_name
  end
end
singular_table_name() Show source
# File railties/lib/rails/generators/named_base.rb, line 117
def singular_table_name # :doc:
  @singular_table_name ||= (pluralize_table_names? ? table_name.singularize : table_name)
end
table_name() Show source
# File railties/lib/rails/generators/named_base.rb, line 90
def table_name # :doc:
  @table_name ||= begin
    base = pluralize_table_names? ? plural_name : singular_name
    (class_path + [base]).join("_")
  end
end
uncountable?() Show source
# File railties/lib/rails/generators/named_base.rb, line 97
def uncountable? # :doc:
  singular_name == plural_name
end
url_helper_prefix() Show source
# File railties/lib/rails/generators/named_base.rb, line 137
def url_helper_prefix # :doc:
  @url_helper_prefix ||= (class_path + [file_name]).join("_")
end

© 2004–2018 David Heinemeier Hansson
Licensed under the MIT License.