Sha256: 0a5cf3598c0946497384aa5b0b6c6e961016856aa57d115f963c1f5300b3b212
Contents?: true
Size: 1.39 KB
Versions: 658
Compression:
Stored size: 1.39 KB
Contents
module Fastlane module Actions class RocketAction < Action def self.run(params) puts(" ____ / \\ | | | | | | \\____/ | | | | | | |____| {| |} | | | | | F | | A | | S | | T | | L | | A | /| N |\\ || E || || || \\|____|/ /_\\/_\\ ###### ######## ###### #### #### ## ## ## ## ") return "🚀" end ##################################################### # @!group Documentation ##################################################### def self.description "Outputs ascii-art for a rocket 🚀" end 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 def self.available_options [ ] end def self.authors ["JaviSoto", "radex"] end def self.is_supported?(platform) true end def self.example_code [ 'rocket' ] end def self.return_type :string end def self.category :misc end end end end
Version data entries
658 entries across 658 versions & 5 rubygems