mirror of
https://github.com/we-promise/sure.git
synced 2026-08-04 16:12:14 +00:00
Category::Group.select_options called for(categories) as a bare method call, but Ruby parses a bare 'for' as the start of a for..in loop statement, not a method invocation. Qualify it as self.for(categories) to call the class method explicitly. Verified with 'ruby -c' on all touched .rb files and ERB.new(...).src on all touched .erb files.