Module: Kitchen::Directions::MoveExercisesToEOC

Defined in:
lib/kitchen/directions/move_exercises_to_eoc/v1.rb,
lib/kitchen/directions/move_exercises_to_eoc/v2.rb,
lib/kitchen/directions/move_exercises_to_eoc/v3.rb,
lib/kitchen/directions/move_exercises_to_eoc/main.rb

Defined Under Namespace

Classes: V1, V2, V3

Class Method Summary collapse

Class Method Details

.v1(chapter:, metadata_source:, klass:, append_to: nil, uuid_prefix: '.') ⇒ Object



6
7
8
9
10
11
12
13
14
# 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: ,
    append_to: append_to,
    klass: klass,
    uuid_prefix: uuid_prefix
  )
end

.v2(chapter:, metadata_source:, klass:, append_to: nil, uuid_prefix: '.') ⇒ Object



16
17
18
19
20
21
22
23
24
# 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: ,
    append_to: append_to,
    klass: klass,
    uuid_prefix: uuid_prefix
  )
end

.v3(chapter:, metadata_source:, klass:, append_to: nil, uuid_prefix: '.') ⇒ Object



26
27
28
29
30
31
32
33
34
# 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: ,
    append_to: append_to,
    klass: klass,
    uuid_prefix: uuid_prefix
  )
end