Rename attribute to attribute_name
This commit is contained in:
parent
2ad9ac8c92
commit
afecb1d63f
1 changed files with 2 additions and 2 deletions
|
@ -1,11 +1,11 @@
|
||||||
module Image::AttachmentExtensions
|
module Image::AttachmentExtensions
|
||||||
extend ActiveSupport::Concern
|
extend ActiveSupport::Concern
|
||||||
class_methods do
|
class_methods do
|
||||||
def has_one_attached_with_sizes(attribute, sizes)
|
def has_one_attached_with_sizes(attribute_name, sizes)
|
||||||
if sizes.nil? || !sizes.is_a?(Hash) || !sizes.any?
|
if sizes.nil? || !sizes.is_a?(Hash) || !sizes.any?
|
||||||
raise ArgumentError, "You must pass a valid hash of sizes"
|
raise ArgumentError, "You must pass a valid hash of sizes"
|
||||||
end
|
end
|
||||||
attribute = attribute.to_s
|
attribute = attribute_name.to_s
|
||||||
|
|
||||||
# clean up sizes
|
# clean up sizes
|
||||||
sizes.keys.each do |key|
|
sizes.keys.each do |key|
|
||||||
|
|
Loading…
Reference in a new issue