Class: Fastlane::Actions::DangerAction
- Inherits:
-
Fastlane::Action
- Object
- Fastlane::Action
- Fastlane::Actions::DangerAction
- Defined in:
- lib/fastlane/actions/danger.rb
Class Method Summary collapse
- .authors ⇒ Object
- .available_options ⇒ Object
- .description ⇒ Object
- .details ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .run(params) ⇒ Object
Methods inherited from Fastlane::Action
action_name, author, output, return_value, sh, step_text
Class Method Details
.authors ⇒ Object
49 50 51 |
# File 'lib/fastlane/actions/danger.rb', line 49 def self. ["KrauseFx"] end |
.available_options ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/fastlane/actions/danger.rb', line 25 def self. [ FastlaneCore::ConfigItem.new(key: :use_bundle_exec, env_name: "FL_DANGER_USE_BUNDLE_EXEC", description: "Use bundle exec when there is a Gemfile presented", is_string: false, default_value: true), FastlaneCore::ConfigItem.new(key: :verbose, env_name: "FL_DANGER_VERBOSE", description: "Show more debugging information", is_string: false, default_value: false), FastlaneCore::ConfigItem.new(key: :github_api_token, env_name: "FL_DANGER_GITHUB_API_TOKEN", description: "GitHub API token for danger", is_string: true, optional: true) ] end |
.description ⇒ Object
17 18 19 |
# File 'lib/fastlane/actions/danger.rb', line 17 def self.description "Runs `danger` for the project" end |
.details ⇒ Object
21 22 23 |
# File 'lib/fastlane/actions/danger.rb', line 21 def self.details "More information: https://github.com/danger/danger" end |
.is_supported?(platform) ⇒ Boolean
45 46 47 |
# File 'lib/fastlane/actions/danger.rb', line 45 def self.is_supported?(platform) true end |
.run(params) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/fastlane/actions/danger.rb', line 4 def self.run(params) Actions.verify_gem!('danger') cmd = [] cmd << ['bundle exec'] if File.exist?('Gemfile') && params[:use_bundle_exec] cmd << ['danger'] cmd << ['--verbose'] if params[:verbose] ENV['DANGER_GITHUB_API_TOKEN'] = params[:github_api_token] if params[:github_api_token] Actions.sh(cmd.join(' ')) end |