Methods
- A
-
- C
-
- F
-
- H
-
- I
-
- K
-
- M
-
- N
-
- P
-
- R
-
- S
-
- T
-
- U
-
- W
-
Attributes
[R]
|
file_name |
|
[R]
|
singular_name |
|
Class Protected methods
check_class_collision(options={})
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 => "Observer"
If the generator is invoked with class name Admin, it will check for the
presence of “AdminObserver”.
Source:
show
| on GitHub
def self.check_class_collision(options={})
define_method :check_class_collision do
name = if self.respond_to?(:controller_class_name)
controller_class_name
else
class_name
end
class_collisions "#{options[:prefix]}#{name}#{options[:suffix]}"
end
end
Instance Public methods
template(source, *args, &block)
Source:
show
| on GitHub
def template(source, *args, &block)
inside_template do
super
end
end
Instance Protected methods
Tries to retrieve the application name or simple 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 class_name
(class_path + [file_name]).map!{ |m| m.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 file_path
@file_path ||= (class_path + [file_name]).join('/')
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.gsub('/', '.')
end
indent(content, multiplier = 2)
Source:
show
| on GitHub
def indent(content, multiplier = 2)
spaces = " " * multiplier
content = content.each_line.map {|line| "#{spaces}#{line}" }.join
end
Source:
show
| on GitHub
def index_helper
uncountable? ? "#{plural_table_name}_index" : plural_table_name
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
Returns Ruby 1.9 style key-value pair if current code is running on Ruby
1.9.x. Returns the old-style (with hash rocket) otherwise.
Source:
show
| on GitHub
def key_value(key, value)
if options[:old_style_hash] || RUBY_VERSION < '1.9'
":#{key} => #{value}"
else
"#{key}: #{value}"
end
end
module_namespacing(&block)
Wrap block with namespace of current application if namespace exists and is
not skipped
Source:
show
| on GitHub
def module_namespacing(&block)
content = capture(&block)
content = wrap_with_namespace(content) if namespaced?
concat(content)
end
Source:
show
| on GitHub
def namespace
Rails::Generators.namespace
end
Source:
show
| on GitHub
def namespaced?
!options[:skip_namespace] && namespace
end
Source:
show
| on GitHub
def namespaced_class_path
@namespaced_class_path ||= begin
namespace_path = namespace.name.split("::").map {|m| m.underscore }
namespace_path + @class_path
end
end
Source:
show
| on GitHub
def namespaced_file_path
@namespaced_file_path ||= namespaced_class_path.join("/")
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_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 route_url
@route_url ||= class_path.collect{|dname| "/" + dname }.join('') + "/" + plural_file_name
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
wrap_with_namespace(content)
Source:
show
| on GitHub
def wrap_with_namespace(content)
content = indent(content).chomp
"module #{namespace.name}\n#{content}\nend\n"
end