module Stall::Adjustable

Private Instance Methods

items() click to toggle source
Calls superclass method
# File lib/stall/adjustable.rb, line 12
def items
  super.tap do |items|
    adjustments.each do |adjustment|
      items << adjustment
    end
  end
end