Class: Cert::CommandsGenerator

Inherits:
Object
  • Object
show all
Includes:
Commander::Methods
Defined in:
cert/lib/cert/commands_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.startObject



15
16
17
# File 'cert/lib/cert/commands_generator.rb', line 15

def self.start
  self.new.run
end

Instance Method Details

#runObject



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'cert/lib/cert/commands_generator.rb', line 19

def run
  program :name, 'cert'
  program :version, Fastlane::VERSION
  program :description, 'CLI for \'cert\' - Create new iOS code signing certificates'
  program :help, 'Author', 'Felix Krause <[email protected]>'
  program :help, 'Website', 'https://fastlane.tools'
  program :help, 'Documentation', 'https://docs.fastlane.tools/actions/cert/'
  program :help_formatter, :compact

  global_option('--verbose') { FastlaneCore::Globals.verbose = true }
  global_option('--env STRING[,STRING2]', String, 'Add environment(s) to use with `dotenv`')

  command :create do |c|
    c.syntax = 'fastlane cert create'
    c.description = 'Create new iOS code signing certificates'

    FastlaneCore::CommanderGenerator.new.generate(Cert::Options.available_options, command: c)

    c.action do |args, options|
      Cert.config = FastlaneCore::Configuration.create(Cert::Options.available_options, options.__hash__)
      Cert::Runner.new.launch
    end
  end

  command :revoke_expired do |c|
    c.syntax = 'fastlane cert revoke_expired'
    c.description = 'Revoke expired iOS code signing certificates'

    FastlaneCore::CommanderGenerator.new.generate(Cert::Options.available_options, command: c)

    c.action do |args, options|
      Cert.config = FastlaneCore::Configuration.create(Cert::Options.available_options, options.__hash__)
      Cert::Runner.new.revoke_expired_certs!
    end
  end

  default_command(:create)

  run!
end