Class: Fastlane::Actions::RocketAction

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

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, details, output, return_value, sh, step_text

Class Method Details

.authorsObject



55
56
57
# File 'lib/fastlane/actions/rocket.rb', line 55

def self.authors
  ["JaviSoto", "radex"]
end

.available_optionsObject



50
51
52
53
# File 'lib/fastlane/actions/rocket.rb', line 50

def self.available_options
  [
  ]
end

.descriptionObject



46
47
48
# File 'lib/fastlane/actions/rocket.rb', line 46

def self.description
  "Outputs ascii-art for a rocket 🚀"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


59
60
61
# File 'lib/fastlane/actions/rocket.rb', line 59

def self.is_supported?(platform)
  true
end

.run(params) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/fastlane/actions/rocket.rb', line 4

def self.run(params)
  puts "
  ____
 /    \\
|      |
|      |
|      |
 \\____/
 |    |
 |    |
 |    |
 |____|
{|    |}
 |    |
 |    |
 | F  |
 | A  |
 | S  |
 | T  |
 | L  |
 | A  |
/| N  |\\
|| E  ||
||    ||
\\|____|/
 /_\\/_\\
 ######
########
 ######
  ####
  ####
   ##
   ##
   ##
   ##
   "
end