Class: Supply::CommandsGenerator

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

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.startObject



11
12
13
# File 'supply/lib/supply/commands_generator.rb', line 11

def self.start
  new.run
end

Instance Method Details

#load_supplyfileObject



63
64
65
# File 'supply/lib/supply/commands_generator.rb', line 63

def load_supplyfile
  Supply.config.load_configuration_file('Supplyfile')
end

#runObject



15
16
17
18
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
59
60
61
# File 'supply/lib/supply/commands_generator.rb', line 15

def run
  program :name, 'supply'
  program :version, Fastlane::VERSION
  program :description, Supply::DESCRIPTION
  program :help, 'Author', 'Felix Krause <[email protected]>'
  program :help, 'Website', 'https://fastlane.tools'
  program :help, 'Documentation', 'https://docs.fastlane.tools/actions/supply/'
  program :help_formatter, :compact

  always_trace!

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

  command :run do |c|
    c.syntax = 'fastlane supply'
    c.description = 'Run a deploy process'

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

    c.action do |args, options|
      Supply.config = FastlaneCore::Configuration.create(Supply::Options.available_options, options.__hash__)
      load_supplyfile

      Supply::Uploader.new.perform_upload
    end
  end

  command :init do |c|
    c.syntax = 'fastlane supply init'
    c.description = 'Sets up supply for you'

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

    c.action do |args, options|
      require 'supply/setup'
      Supply.config = FastlaneCore::Configuration.create(Supply::Options.available_options, options.__hash__)
      load_supplyfile

      Supply::Setup.new.perform_download
    end
  end

  default_command(:run)

  run!
end