Class: Fastlane::Actions::PutsAction

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

Constant Summary

Constants inherited from Fastlane::Action

Fastlane::Action::AVAILABLE_CATEGORIES

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, available_options, details, lane_context, method_missing, other_action, output, return_value, sample_return_value, sh

Class Method Details

.authorsObject



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

def self.authors
  ["KrauseFx"]
end

.categoryObject



35
36
37
# File 'lib/fastlane/actions/puts.rb', line 35

def self.category
  :misc
end

.descriptionObject



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

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

.example_codeObject



29
30
31
32
33
# File 'lib/fastlane/actions/puts.rb', line 29

def self.example_code
  [
    'puts "Hi there"'
  ]
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