Sha256: 538cd455c4c4a546bbf3e3cbe8f893f62c7bd45a0bfe1baade44e5dea6fe3694
Contents?: true
Size: 1.04 KB
Versions: 27
Compression:
Stored size: 1.04 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.available_options [ ] end def self.authors ["JaviSoto", "radex"] end def self.is_supported?(platform) true end end end end
Version data entries
27 entries across 27 versions & 1 rubygems