class Fastlane::Actions::RocketAction

Public Class Methods

authors() click to toggle source
# File fastlane/lib/fastlane/actions/rocket.rb, line 60
def self.authors
  ["JaviSoto", "radex"]
end
available_options() click to toggle source
# File fastlane/lib/fastlane/actions/rocket.rb, line 55
def self.available_options
  [
  ]
end
category() click to toggle source
# File fastlane/lib/fastlane/actions/rocket.rb, line 78
def self.category
  :misc
end
description() click to toggle source

@!group Documentation

# File fastlane/lib/fastlane/actions/rocket.rb, line 47
def self.description
  "Outputs ascii-art for a rocket 🚀"
end
details() click to toggle source
# File fastlane/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() click to toggle source
# File fastlane/lib/fastlane/actions/rocket.rb, line 68
def self.example_code
  [
    'rocket'
  ]
end
is_supported?(platform) click to toggle source
# File fastlane/lib/fastlane/actions/rocket.rb, line 64
def self.is_supported?(platform)
  true
end
return_type() click to toggle source
# File fastlane/lib/fastlane/actions/rocket.rb, line 74
def self.return_type
  :string
end
run(params) click to toggle source
# File fastlane/lib/fastlane/actions/rocket.rb, line 4
def self.run(params)
  puts("
  ____
 /    \\
|      |
|      |
|      |
 \\____/
 |    |
 |    |
 |    |
 |____|
{|    |}
 |    |
 |    |
 | F  |
 | A  |
 | S  |
 | T  |
 | L  |
 | A  |
/| N  |\\
|| E  ||
||    ||
\\|____|/
 /_\\/_\\
 ######
########
 ######
  ####
  ####
   ##
   ##
   ##
   ##
   ")
  return "🚀"
end