Skip to content

Instantly share code, notes, and snippets.

View ck3g's full-sized avatar
👨‍💻
Studying

Vitali Tatarintev ck3g

👨‍💻
Studying
View GitHub Profile
@ck3g
ck3g / 1.rb
Last active December 14, 2015 14:18
scope :masseurs_with_name, ->(name) {
includes(:users).where('users.first_name like :name OR users.last_name like :name', name: "%#{name}%" )
}