renaming :singular resource option to :singleton

This commit is contained in:
Ryan Bates
2010-08-06 13:06:18 -07:00
parent 7d9e710f05
commit c9e0f4e3ef
4 changed files with 12 additions and 12 deletions

View File

@@ -67,8 +67,8 @@ module CanCan
# [:+through+]
# Load this resource through another one. This should match the name of the parent instance variable.
#
# [:+singular+]
# Pass +true+ if this is a singular resource through a +has_one+ association.
# [:+singleton+]
# Pass +true+ if this is a singleton resource through a +has_one+ association.
#
# [:+parent+]
# True or false depending on if the resource is considered a parent resource. This defaults to +true+ if a resource

View File

@@ -42,18 +42,18 @@ module CanCan
def load_resource_instance
if !parent? && new_actions.include?(@params[:action].to_sym)
build_resource
elsif id_param || @options[:singular]
elsif id_param || @options[:singleton]
find_resource
end
end
def build_resource
method_name = @options[:singular] ? "build_#{name}" : "new"
method_name = @options[:singleton] ? "build_#{name}" : "new"
resource_base.send(*[method_name, @params[name]].compact)
end
def find_resource
if @options[:singular]
if @options[:singleton]
resource_base.send(name)
else
@options[:find_by] ? resource_base.send("find_by_#{@options[:find_by]}!", id_param) : resource_base.find(id_param)
@@ -90,10 +90,10 @@ module CanCan
# The object that methods (such as "find", "new" or "build") are called on.
# If the :through option is passed it will go through an association on that instance.
# If the :singular option is passed it won't use the association because it needs to be handled later.
# If the :singleton option is passed it won't use the association because it needs to be handled later.
def resource_base
if through_resource
@options[:singular] ? through_resource : through_resource.send(name.to_s.pluralize)
@options[:singleton] ? through_resource : through_resource.send(name.to_s.pluralize)
else
resource_class
end