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.
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/danger/commands/runner.rb', line 35 def initialize(argv) dangerfile = argv.option("dangerfile", "Dangerfile") @dangerfile_path = dangerfile if File.exist?(dangerfile) @base = argv.option("base") @head = argv.option("head") @fail_on_errors = argv.option("fail-on-errors", false) @fail_if_no_pr = argv.option("fail-if-no-pr", false) @new_comment = argv.flag?("new-comment") @remove_previous_comments = argv.flag?("remove-previous-comments") @danger_id = argv.option("danger_id", "danger") @cork = Cork::Board.new(silent: argv.option("silent", false), verbose: argv.option("verbose", false)) adjust_colored2_output(argv) super end |
Instance Attribute Details
#cork ⇒ Object
Returns the value of attribute cork.
27 28 29 |
# File 'lib/danger/commands/runner.rb', line 27 def cork @cork end |
Class Method Details
.options ⇒ Object
58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/danger/commands/runner.rb', line 58 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"], ["--fail-on-errors=<true|false>", "Should always fail the build process, defaults to false"], ["--fail-if-no-pr=<true|false>", "Should fail the build process if no PR is found (useful for CircleCI), defaults to false"], ["--dangerfile=<path/to/dangerfile>", "The location of your Dangerfile"], ["--danger_id=<id>", "The identifier of this Danger instance"], ["--new-comment", "Makes Danger post a new comment instead of editing its previous one"], ["--remove-previous-comments", "Removes all previous comment and create a new one in the end of the list"] ].concat(super) end |
Instance Method Details
#run ⇒ Object
71 72 73 74 75 76 77 78 79 80 81 82 |
# File 'lib/danger/commands/runner.rb', line 71 def run Executor.new(ENV).run( base: @base, head: @head, dangerfile_path: @dangerfile_path, danger_id: @danger_id, new_comment: @new_comment, fail_on_errors: @fail_on_errors, fail_if_no_pr: @fail_if_no_pr, remove_previous_comments: @remove_previous_comments ) end |
#validate! ⇒ Object
51 52 53 54 55 56 |
# File 'lib/danger/commands/runner.rb', line 51 def validate! super if self.class == Runner && !@dangerfile_path help!("Could not find a Dangerfile.") end end |