Skip to content

Instantly share code, notes, and snippets.

View vsokolov's full-sized avatar

Viktor Sokolov vsokolov

  • Russia, Siberia, Krasnoyarsk
View GitHub Profile
@vsokolov
vsokolov / Spree: Filter by brand.md
Last active June 13, 2022 19:47 — forked from maxivak/Spree: Filter by brand.md
Spree: Filter Products by properties

Fix 'scoped' error for Rails 4

error: undefined method 'scoped' solution:

# config/initializers/scoped.rb
class ActiveRecord::Base
  # do things the modern way and silence Rails 4 deprecation warnings
 def self.scoped(options=nil)

options ? where(nil).apply_finder_options(options, true) : where(nil)