Sha256: dfe07eaf22ee71670964e20ce2b4b350f7be0e3c42e5e4aeed56e549bbda36c9
Contents?: true
Size: 835 Bytes
Versions: 206
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
206 entries across 206 versions & 2 rubygems