Sha256: 336b2f0390506a0899ff6e23d2124cf7a80c9e3f12dec7ee7ce38e438611aa28
Contents?: true
Size: 835 Bytes
Versions: 1
Compression:
Stored size: 835 Bytes
Contents
module Danger class Dangerfile # Anything inside this module is considered public API, and in the future # documentation will be generated from it via rdoc. module DSL # @!group Danger Zone # Provides access to the raw Travis/Circle/Buildkite/GitHub objects, which # you can use to pull out extra bits of information. _Warning_ # the interfaces of these objects is **not** considered a part of the Dangerfile public # API, and is viable to change occasionally on the whims of developers. # @return [EnvironmentManager] attr_reader :env private def initialize load_default_plugins end def load_default_plugins Dir['./danger_plugins/*.rb'].each do |file| require File.expand_path(file) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
danger-0.8.5 | lib/danger/danger_core/dangerfile_dsl.rb |