module Buildkite::Pipelines::Helpers::Plugins

Public Instance Methods

plugin(name_or_source, options = nil) click to toggle source
# File lib/buildkite/pipelines/helpers/plugins.rb, line 7
def plugin(name_or_source, options = nil)
  attributes['plugins'] ||= Buildkite::Builder::PluginCollection.new(step_collection.plugins)
  attributes['plugins'].add(name_or_source, options)
end
plugins() click to toggle source
# File lib/buildkite/pipelines/helpers/plugins.rb, line 12
def plugins
  attributes['plugins']
end