class Object
Public Instance Methods
add_member_methods()
click to toggle source
# File lib/install/web.rb, line 5 def add_member_methods inject_into_file "app/models/application_record.rb", after: "class ApplicationRecord < ActiveRecord::Base\n" do <<-RUBY def self.member_at(index) offset(index).limit(1).first end def self.member_by(attr, value) find_by(Hash[attr, value]) end RUBY end end