Class: Fastlane::Actions::PutsAction

Inherits:
Fastlane::Action show all
Defined in:
lib/fastlane/actions/puts.rb

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, available_options, details, output, return_value, sh

Class Method Details

.authorsObject



16
17
18
# File 'lib/fastlane/actions/puts.rb', line 16

def self.authors
  ["KrauseFx"]
end

.descriptionObject



12
13
14
# File 'lib/fastlane/actions/puts.rb', line 12

def self.description
  "Prints out the given text"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


20
21
22
# File 'lib/fastlane/actions/puts.rb', line 20

def self.is_supported?(platform)
  true
end

.run(params) ⇒ Object



4
5
6
# File 'lib/fastlane/actions/puts.rb', line 4

def self.run(params)
  UI.message params.join(' ')
end

.step_textObject

We don’t want to show this as step



25
26
27
# File 'lib/fastlane/actions/puts.rb', line 25

def self.step_text
  nil
end