module Movescount::Concern::Member::ClassMethods
Attributes
movescount_options[R]
Private Instance Methods
movescount(options = {})
click to toggle source
Allow to set the options from the class
# File lib/movescount/concern/member.rb, line 36 def movescount(options = {}) default_options = { email_column: :movescount_email, userkey_column: :movescount_userkey } @movescount_options = default_options.merge options end