Class: Danger::Runner
- Inherits:
-
CLAide::Command
- Object
- CLAide::Command
- Danger::Runner
- Defined in:
- lib/danger/commands/runner.rb
Instance Attribute Summary collapse
-
#cork ⇒ Object
Returns the value of attribute cork.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(argv) ⇒ Runner
constructor
A new instance of Runner.
- #run ⇒ Object
- #validate! ⇒ Object
Constructor Details
#initialize(argv) ⇒ Runner
Returns a new instance of Runner.
27 28 29 30 31 32 33 34 35 36 |
# File 'lib/danger/commands/runner.rb', line 27 def initialize(argv) dangerfile = argv.option("dangerfile", "Dangerfile") @dangerfile_path = dangerfile if File.exist? dangerfile @base = argv.option("base") @head = argv.option("head") @danger_id = argv.option("danger_id", "danger") @cork = Cork::Board.new(silent: argv.option("silent", false), verbose: argv.option("verbose", false)) super end |
Instance Attribute Details
#cork ⇒ Object
Returns the value of attribute cork.
19 20 21 |
# File 'lib/danger/commands/runner.rb', line 19 def cork @cork end |
Class Method Details
.options ⇒ Object
45 46 47 48 49 50 51 52 |
# File 'lib/danger/commands/runner.rb', line 45 def self. [ ["--base=[master|dev|stable]", "A branch/tag/commit to use as the base of the diff"], ["--head=[master|dev|stable]", "A branch/tag/commit to use as the head"], ["--dangerfile=<path/to/dangerfile>", "The location of your Dangerfile"], ["--danger_id=<id>", "The identifier of this Danger instance"] ].concat(super) end |
Instance Method Details
#run ⇒ Object
54 55 56 57 58 59 |
# File 'lib/danger/commands/runner.rb', line 54 def run Executor.new.run(base: @base, head: @head, dangerfile_path: @dangerfile_path, danger_id: @danger_id) end |
#validate! ⇒ Object
38 39 40 41 42 43 |
# File 'lib/danger/commands/runner.rb', line 38 def validate! super if self.class == Runner && !@dangerfile_path help! "Could not find a Dangerfile." end end |