module Kitchen::Directions::MoveExercisesToEOC
Public Class Methods
v1(chapter:, metadata_source:, klass:, append_to: nil, uuid_prefix: '.')
click to toggle source
# File lib/kitchen/directions/move_exercises_to_eoc/main.rb, line 6 def self.v1(chapter:, metadata_source:, klass:, append_to: nil, uuid_prefix: '.') V1.new.bake( chapter: chapter, metadata_source: metadata_source, append_to: append_to, klass: klass, uuid_prefix: uuid_prefix ) end
v2(chapter:, metadata_source:, klass:, append_to: nil, uuid_prefix: '.')
click to toggle source
# File lib/kitchen/directions/move_exercises_to_eoc/main.rb, line 16 def self.v2(chapter:, metadata_source:, klass:, append_to: nil, uuid_prefix: '.') V2.new.bake( chapter: chapter, metadata_source: metadata_source, append_to: append_to, klass: klass, uuid_prefix: uuid_prefix ) end
v3(chapter:, metadata_source:, klass:, append_to: nil, uuid_prefix: '.')
click to toggle source
# File lib/kitchen/directions/move_exercises_to_eoc/main.rb, line 26 def self.v3(chapter:, metadata_source:, klass:, append_to: nil, uuid_prefix: '.') V3.new.bake( chapter: chapter, metadata_source: metadata_source, append_to: append_to, klass: klass, uuid_prefix: uuid_prefix ) end