fallback.rb 283 B

12345678910111213141516
  1. class Sequencer
  2. class Unit
  3. module Common
  4. module Provider
  5. class Fallback < Sequencer::Unit::Common::Provider::Attribute
  6. private
  7. def ignore?
  8. state.provided?(attribute) || super
  9. end
  10. end
  11. end
  12. end
  13. end
  14. end