Class: Fastlane::Actions::RocketAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES
Class Method Summary
collapse
action_name, author, lane_context, method_missing, other_action, output, return_value, sample_return_value, sh, step_text
Class Method Details
.authors ⇒ Object
60
61
62
|
# File 'lib/fastlane/actions/rocket.rb', line 60
def self.authors
["JaviSoto", "radex"]
end
|
.available_options ⇒ Object
55
56
57
58
|
# File 'lib/fastlane/actions/rocket.rb', line 55
def self.available_options
[
]
end
|
.category ⇒ Object
74
75
76
|
# File 'lib/fastlane/actions/rocket.rb', line 74
def self.category
:misc
end
|
.description ⇒ Object
47
48
49
|
# File 'lib/fastlane/actions/rocket.rb', line 47
def self.description
"Outputs ascii-art for a rocket 🚀"
end
|
.details ⇒ Object
51
52
53
|
# File 'lib/fastlane/actions/rocket.rb', line 51
def self.details
"Print an ascii Rocket :rocket:. Useful after using _crashlytics_ or _pilot_ to indicate that your new build has been shipped to outer-space."
end
|
.example_code ⇒ Object
68
69
70
71
72
|
# File 'lib/fastlane/actions/rocket.rb', line 68
def self.example_code
[
'rocket'
]
end
|
.is_supported?(platform) ⇒ Boolean
64
65
66
|
# File 'lib/fastlane/actions/rocket.rb', line 64
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
41
|
# File 'lib/fastlane/actions/rocket.rb', line 4
def self.run(params)
puts "
____
/ \\
| |
| |
| |
\\____/
| |
| |
| |
|____|
{| |}
| |
| |
| F |
| A |
| S |
| T |
| L |
| A |
/| N |\\
|| E ||
|| ||
\\|____|/
/_\\/_\\
######
########
######
####
####
##
##
##
##
"
return "🚀"
end
|