I am getting this error while accessing scopes.
Here is AR model
class StatisticVariable < ActiveRecord::Base
attr_accessible :code, :name
has_many :statistic_values
scope :logins, where(code: 'logins').first
scope :unique_logins, where(code: 'unique_logins').first
scope :registrations, where(code: 'registrations').first
end
and when I try with StatisticVariable.logins
or any other scopes it gives:
NoMethodError: undefined method `default_scoped?'
If I configure scope as class method then it works perfectly.
def self.registrations
where(code: 'registrations').first
end
Please guide me to understand and fix this problem.
default_scope order: "foo"
todefault_scope { { order: "foo" } }
. Fixed it by changing it todefault_scope { order("foo") }
. – Drugget