Sha256: 394803c06ababd0965ce64bbfbd7817e1625a3e49168db206155698b51c3bf8c
Contents?: true
Size: 1.18 KB
Versions: 8
Compression:
Stored size: 1.18 KB
Contents
require 'commander' require 'fastlane/version' HighLine.track_eof = false module PEM class CommandsGenerator include Commander::Methods def self.start self.new.run end def run program :name, 'pem' program :version, Fastlane::VERSION program :description, 'CLI for \'PEM\' - Automatically generate and renew your push notification profiles' program :help, 'Author', 'Felix Krause <pem@krausefx.com>' program :help, 'Website', 'https://fastlane.tools' program :help, 'GitHub', 'https://github.com/fastlane/PEM' program :help_formatter, :compact global_option('--verbose') { FastlaneCore::Globals.verbose = true } FastlaneCore::CommanderGenerator.new.generate(PEM::Options.available_options) command :renew do |c| c.syntax = 'fastlane pem renew' c.description = 'Renews the certificate (in case it expired) and shows the path to the generated pem file' c.action do |args, options| PEM.config = FastlaneCore::Configuration.create(PEM::Options.available_options, options.__hash__) PEM::Manager.start end end default_command :renew run! end end end
Version data entries
8 entries across 8 versions & 1 rubygems