instance method
check_if_method_has_arguments!
Ruby on Rails 5.2.8.1
Since v4.0.13 PrivateSignature
check_if_method_has_arguments!(method_name, args)
Checks to make sure that the arguments are not blank. Note that if some blank-like object were initially passed into the query method, then this method will not raise an error.
Example:
Post.references() # raises an error Post.references([]) # does not raise an error
This particular method should be called with a method_name and the args passed into that method as an input. For example:
def references(*args)
check_if_method_has_arguments!("references", args)
...
end
Parameters
-
method_namereq -
argsreq
Source
# File activerecord/lib/active_record/relation/query_methods.rb, line 1204
def check_if_method_has_arguments!(method_name, args)
if args.blank?
raise ArgumentError, "The method .#{method_name}() must contain arguments."
end
end
Defined in activerecord/lib/active_record/relation/query_methods.rb line 1204
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::QueryMethods