Sha256: 56ad24c8ddbf380464354961d52dda627e97bd29b2dff6df3623a9358445bd37

Contents?: true

Size: 274 Bytes

Versions: 1

Compression:

Stored size: 274 Bytes

Contents

# frozen_string_literal: true

module Buildkite
  module Builder
    class Dsl
      attr_reader :context

      def extend(mod)
        mod < Extension ? super(mod.dsl) : super
      end

      def initialize(context)
        @context = context
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
buildkite-builder-2.0.0.beta1 lib/buildkite/builder/dsl.rb