Advertisement
d4rky

Untitled

Sep 24th, 2015
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.39 KB | None | 0 0
  1. module CalculationDecorator
  2.   extend ActiveSupport::Concern
  3.  
  4.   included do
  5.     attr_accessor :calculated_price
  6.     attr_accessor :yearly_offer_number
  7.     attr_accessor :yearly_premium_url
  8.     attr_accessor :position_in_leads
  9.     attr_accessor :quotation_token
  10.     attr_accessor :save_quote_key
  11.     attr_accessor :competitors
  12.   end
  13. end
  14.  
  15. # and then
  16.  
  17. calc.include(CalculationDecorator)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement