RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: hpjaj
I had the same problem. Turns out that scoped has been deprecated and the replacement is where(nil).
scoped
where(nil)
This StackOverflow posting has more details.
I had the same problem. Turns out that
scoped
has been deprecated and the replacement iswhere(nil)
.This StackOverflow posting has more details.