Rails::Generators::NamedBase (original) (raw)

Methods

A

C

E

F

H

I

J

M

N

P

R

S

T

U

Class Public methods

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”.

Source: show | on GitHub

def self.check_class_collision(options = {}) define_method :check_class_collision do name = if respond_to?(:controller_class_name, true) controller_class_name else class_name end

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

end end

Instance Public methods

Source: show | on GitHub

def js_template(source, destination) template(source + ".js", destination + ".js") end

Source: show | on GitHub

def template(source, *args, &block) inside_template do Rails::Generators.add_generated_file(super) end end

Instance Private methods

Tries to retrieve the application name or simply return application.

Source: show | on GitHub

def application_name if defined?(Rails) && Rails.application Rails.application.class.name.split("::").first.underscore else "application" end end

Source: show | on GitHub

def attributes_names @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

Source: show | on GitHub

def class_name (class_path + [file_name]).map!(&:camelize).join("::") end

Source: show | on GitHub

def class_path inside_template? || !namespaced? ? regular_class_path : namespaced_class_path end

Source: show | on GitHub

def edit_helper(...) "edit_#{show_helper(...)}" end

Source: show | on GitHub

def file_path @file_path ||= (class_path + [file_name]).join("/") end

Source: show | on GitHub

def fixture_file_name @fixture_file_name ||= (pluralize_table_names? ? plural_file_name : file_name) end

Source: show | on GitHub

def human_name @human_name ||= singular_name.humanize end

Source: show | on GitHub

def i18n_scope @i18n_scope ||= file_path.tr("/", ".") end

Source: show | on GitHub

def index_helper(type: nil) [plural_route_name, ("index" if uncountable?), type].compact.join("_") end

Source: show | on GitHub

def inside_template @inside_template = true yield ensure @inside_template = false end

Source: show | on GitHub

def inside_template? @inside_template end

Source: show | on GitHub

def model_resource_name(base_name = singular_table_name, prefix: "") resource_name = "#{prefix}#{base_name}" if options[:model_name] "[#{controller_class_path.map { |name| ":" + name }.join(", ")}, #{resource_name}]" else resource_name end end

Source: show | on GitHub

def mountable_engine? defined?(ENGINE_ROOT) && namespaced? end

Source: show | on GitHub

def namespaced_class_path @namespaced_class_path ||= namespace_dirs + @class_path end

Source: show | on GitHub

def new_helper(type: :url) "new_#{singular_route_name}_#{type}" end

Source: show | on GitHub

def plural_file_name @plural_file_name ||= file_name.pluralize end

Source: show | on GitHub

def plural_name @plural_name ||= singular_name.pluralize end

Source: show | on GitHub

def plural_route_name if options[:model_name] "#{controller_class_path.join('')}#{plural_table_name}" else plural_table_name end end

Source: show | on GitHub

def plural_table_name @plural_table_name ||= (pluralize_table_names? ? table_name : table_name.pluralize) end

Source: show | on GitHub

def pluralize_table_names? !defined?(ActiveRecord::Base) || ActiveRecord::Base.pluralize_table_names end

Source: show | on GitHub

def redirect_resource_name model_resource_name(prefix: "@") end

Source: show | on GitHub

def route_url @route_url ||= controller_class_path.collect { |dname| "/" + dname }.join + "/" + plural_file_name end

Source: show | on GitHub

def show_helper(arg = "@#{singular_table_name}", type: :url) "#{singular_route_name}_#{type}(#{arg})" 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.

Source: show | on GitHub

def singular_route_name if options[:model_name] "#{controller_class_path.join('')}#{singular_table_name}" else singular_table_name end end

Source: show | on GitHub

def singular_table_name @singular_table_name ||= (pluralize_table_names? ? table_name.singularize : table_name) end

Source: show | on GitHub

def table_name @table_name ||= begin base = pluralize_table_names? ? plural_name : singular_name (class_path + [base]).join("_") end end

Source: show | on GitHub

def uncountable? singular_name == plural_name end

Source: show | on GitHub

def url_helper_prefix @url_helper_prefix ||= (class_path + [file_name]).join("_") end