trabajo-afectivo/lib/sequencer/unit/common/provider/fallback.rb

17 lines
283 B
Ruby
Raw Normal View History

class Sequencer
class Unit
module Common
module Provider
class Fallback < Sequencer::Unit::Common::Provider::Attribute
private
def ignore?
state.provided?(attribute) || super
end
end
end
end
end
end