Guest User

Untitled

a guest
Apr 24th, 2018
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. class Goldstar
  2. FULFILLMENT_METHODS_ENUM = {:willcall => 0, :delivery => 1}
  3.  
  4. class <<self ; self ; end.class_eval do
  5. attr_writer :from_address
  6. def from_address
  7. @from_address || reset_from_address
  8. end
  9.  
  10. def reset_from_address
  11. @from_address = 'events@goldstar.com'
  12. end
  13. end
  14. end
Add Comment
Please, Sign In to add comment