lib/mongoid/token/finders.rb in mongoid_token-2.1.2 vs lib/mongoid/token/finders.rb in mongoid_token-2.2.0
- old
+ new
@@ -9,9 +9,10 @@
self.find_by field_name.to_sym => token
end
end
klass.define_singleton_method :"find_with_#{field_name}" do |*args| # this is going to be painful if tokens happen to look like legal object ids
+ warn "[DEPRECATION] Using `find' from Mongoid::Token has been deprecated and will be removed in version 3.0.0."
args.all?{|arg| BSON::ObjectId.legal?(arg)} ? send(:"find_without_#{field_name}",*args) : klass.send(:"find_by_#{field_name.to_s}", args.first)
end
# this craziness taken from, and then compacted into a string class_eval
# http://geoffgarside.co.uk/2007/02/19/activesupport-alias-method-chain-modules-and-class-methods/