- A
- C
- E
- F
- H
- I
- J
- M
- N
- P
- R
- S
- T
- U
類別私人方法
check_class_collision(options = {}) 連結
在類別初始化時加入要檢查的類別衝突名稱。你可以提供一個雜湊,其中包含要測試的 :prefix
或 :suffix
。
範例
check_class_collision suffix: "Decorator"
如果使用類別名稱 Admin 呼叫產生器,它將檢查是否存在 “AdminDecorator”。
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 214 def self.check_class_collision(options = {}) # :doc: define_method :check_class_collision do name = if respond_to?(:controller_class_name, true) # for ResourceHelpers controller_class_name else class_name end class_collisions "#{options[:prefix]}#{name}#{options[:suffix]}" end end
實例公開方法
js_template(source, destination) 連結
來源:顯示 | 在 GitHub 上
# 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) 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 23 def template(source, *args, &block) inside_template do Rails::Generators.add_generated_file(super) end end
實例私有方法
application_name() 連結
嘗試擷取應用程式名稱,或僅回傳應用程式。
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 138 def application_name # :doc: if defined?(Rails) && Rails.application Rails.application.class.name.split("::").first.underscore else "application" end end
attributes_names() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 188 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() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 70 def class_name # :doc: (class_path + [file_name]).map!(&:camelize).join("::") end
class_path() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 58 def class_path # :doc: inside_template? || !namespaced? ? regular_class_path : namespaced_class_path end
edit_helper(...) 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 105 def edit_helper(...) # :doc: "edit_#{show_helper(...)}" end
file_path() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 54 def file_path # :doc: @file_path ||= (class_path + [file_name]).join("/") end
fixture_file_name() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 125 def fixture_file_name # :doc: @fixture_file_name ||= (pluralize_table_names? ? plural_file_name : file_name) end
human_name() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 74 def human_name # :doc: @human_name ||= singular_name.humanize end
i18n_scope() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 82 def i18n_scope # :doc: @i18n_scope ||= file_path.tr("/", ".") end
index_helper(type: nil) 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 97 def index_helper(type: nil) # :doc: [plural_route_name, ("index" if uncountable?), type].compact.join("_") end
inside_template() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 43 def inside_template # :doc: @inside_template = true yield ensure @inside_template = false end
inside_template?() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 50 def inside_template? # :doc: @inside_template end
model_resource_name(base_name = singular_table_name, prefix: "") 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 150 def model_resource_name(base_name = singular_table_name, prefix: "") # :doc: resource_name = "#{prefix}#{base_name}" if options[:model_name] "[#{controller_class_path.map { |name| ":" + name }.join(", ")}, #{resource_name}]" else resource_name end end
mountable_engine?() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 200 def mountable_engine? # :doc: defined?(ENGINE_ROOT) && namespaced? end
namespaced_class_path() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 66 def namespaced_class_path # :doc: @namespaced_class_path ||= namespace_dirs + @class_path end
new_helper(type: :url) 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 109 def new_helper(type: :url) # :doc: "new_#{singular_route_name}_#{type}" end
plural_file_name() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 121 def plural_file_name # :doc: @plural_file_name ||= file_name.pluralize end
plural_name() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 78 def plural_name # :doc: @plural_name ||= singular_name.pluralize end
plural_route_name() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 167 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() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 117 def plural_table_name # :doc: @plural_table_name ||= (pluralize_table_names? ? table_name : table_name.pluralize) end
pluralize_table_names?() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 196 def pluralize_table_names? # :doc: !defined?(ActiveRecord::Base) || ActiveRecord::Base.pluralize_table_names end
redirect_resource_name() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 146 def redirect_resource_name # :doc: model_resource_name(prefix: "@") end
regular_class_path() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 62 def regular_class_path # :doc: @class_path end
route_url() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 129 def route_url # :doc: @route_url ||= controller_class_path.collect { |dname| "/" + dname }.join + "/" + plural_file_name end
show_helper(arg = "@#{singular_table_name}", type: :url) 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 101 def show_helper(arg = "@#{singular_table_name}", type: :url) # :doc: "#{singular_route_name}_#{type}(#{arg})" end
singular_name() 連結
FIXME:我們避免使用別名,因為 thor 上有一個 bug,會讓這個方法公開並將它加到任務清單中。
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 39 def singular_name # :doc: file_name end
singular_route_name() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 159 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() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 113 def singular_table_name # :doc: @singular_table_name ||= (pluralize_table_names? ? table_name.singularize : table_name) end
table_name() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 86 def table_name # :doc: @table_name ||= begin base = pluralize_table_names? ? plural_name : singular_name (class_path + [base]).join("_") end end
uncountable?() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 93 def uncountable? # :doc: singular_name == plural_name end
url_helper_prefix() 連結
來源:顯示 | 在 GitHub 上
# File railties/lib/rails/generators/named_base.rb, line 133 def url_helper_prefix # :doc: @url_helper_prefix ||= (class_path + [file_name]).join("_") end