class Buildkite::Pipelines::StepContext

Attributes

args[R]
data[R]
step[R]

Public Class Methods

new(step, **args) click to toggle source
# File lib/buildkite/pipelines/step_context.rb, line 10
def initialize(step, **args)
  @step = step
  @args = args
  @data = {}
end

Public Instance Methods

[](key) click to toggle source
# File lib/buildkite/pipelines/step_context.rb, line 16
def [](key)
  args[key]
end