module Tataru::CreateSubroutines

create subroutines

Public Instance Methods

check_create_instructions() click to toggle source
# File lib/tataru/create_subroutines.rb, line 16
def check_create_instructions
  [
    *load_resource_instructions,
    :check_create
  ]
end
commit_create_instructions() click to toggle source
# File lib/tataru/create_subroutines.rb, line 23
def commit_create_instructions
  []
end
create_instructions() click to toggle source
# File lib/tataru/create_subroutines.rb, line 6
def create_instructions
  @rrep.check_required_fields!
  [
    *load_resource_instructions,
    { key: :properties },
    { value_rom: @rrep.name },
    :create
  ]
end
finish_create_instructions() click to toggle source
# File lib/tataru/create_subroutines.rb, line 27
def finish_create_instructions
  []
end