Module: Koudoku::Plan

Extended by:
ActiveSupport::Concern
Defined in:
app/concerns/koudoku/plan.rb

Instance Method Summary collapse

Instance Method Details

#is_upgrade_from?(plan) ⇒ Boolean



4
5
6
# File 'app/concerns/koudoku/plan.rb', line 4

def is_upgrade_from?(plan)
  (price || 0) >= (plan.price || 0)
end