scopes with lambda and arguments in Rails 4 style?
Ruby has not deprecated the old style of lambda either, so if you feel more comfortable using that by all means go for it.
I don't personally like the stabby lambda's syntax myself but eventually they will probably become the norm so it doesn't hurt to get used to them.
I think it should be:
scope :find_lazy, -> (id) { where(id: id) }