attributes_examples.rb 518 B

1234567891011121314151617181920212223
  1. class Sequencer
  2. class Sequence
  3. module Import
  4. module Exchange
  5. class AttributesExamples < Sequencer::Sequence::Base
  6. def self.expecting
  7. [:attributes]
  8. end
  9. def self.sequence
  10. [
  11. 'Exchange::Connection',
  12. 'Exchange::Folders::ByIds',
  13. 'Import::Exchange::AttributeExamples',
  14. 'Import::Exchange::AttributeMapper::AttributeExamples',
  15. ]
  16. end
  17. end
  18. end
  19. end
  20. end
  21. end