Class: Scan::CommandsGenerator

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

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.startObject



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

def self.start
  new.run
end

Instance Method Details

#convert_options(options) ⇒ Object



19
20
21
22
23
# File 'scan/lib/scan/commands_generator.rb', line 19

def convert_options(options)
  o = options.__hash__.dup
  o.delete(:verbose)
  o
end

#runObject



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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'scan/lib/scan/commands_generator.rb', line 25

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

  global_option("--verbose") { FastlaneCore::Globals.verbose = true }

  command :tests do |c|
    c.syntax = "fastlane scan"
    c.description = Scan::DESCRIPTION

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

    c.action do |_args, options|
      config = FastlaneCore::Configuration.create(Scan::Options.available_options,
                                                  convert_options(options))
      Scan::Manager.new.work(config)
    end
  end

  command :init do |c|
    c.syntax = "fastlane scan init"
    c.description = "Creates a new Scanfile for you"
    c.action do |args, options|
      containing = FastlaneCore::Helper.fastlane_enabled_folder_path
      path = File.join(containing, Scan.scanfile_name)
      UI.user_error!("Scanfile already exists").yellow if File.exist?(path)

      is_swift_fastfile = args.include?("swift")
      if is_swift_fastfile
        path = File.join(containing, Scan.scanfile_name + ".swift")
        UI.user_error!("Scanfile.swift already exists") if File.exist?(path)
      end

      if is_swift_fastfile
        template = File.read("#{Scan::ROOT}/lib/assets/ScanfileTemplate.swift")
      else
        template = File.read("#{Scan::ROOT}/lib/assets/ScanfileTemplate")
      end

      File.write(path, template)
      UI.success("Successfully created '#{path}'. Open the file using a code editor.")
    end
  end

  default_command(:tests)

  run!
end