Class: Minke::Generators::BuildCommands

Inherits:
Object
  • Object
show all
Defined in:
lib/minke/generators/config.rb

Overview

BuildCommands define the command that will be executed in the docker container for each of the build steps.

Instance Attribute Summary collapse

Instance Attribute Details

#buildObject

An array of commands to execute for the build step.



77
78
79
# File 'lib/minke/generators/config.rb', line 77

def build
  @build
end

#fetchObject

An array of commands to execute for the fetch step.



73
74
75
# File 'lib/minke/generators/config.rb', line 73

def fetch
  @fetch
end

#testObject

An array of commands to execute for the test step.



81
82
83
# File 'lib/minke/generators/config.rb', line 81

def test
  @test
end