Sha256: 915a367b6160707c8660d360f87b4fd76c10a3eff8401fc002f25090d00aba72

Contents?: true

Size: 427 Bytes

Versions: 1

Compression:

Stored size: 427 Bytes

Contents

class AnalyzeCommand < Clamp::Command
  option ['--project'], 'PROJECT', 'Path to the xcodeproj'
  option ['--scheme'], 'SCHEME', 'The scheme that the project was built in'
  option ['--workspace'], 'WORKSPACE', 'Path to the workspace'
  option ["--verbose", "-v"], :flag, "Enable verbose mode"

  def execute
    results = Depcheck.run(project, workspace, scheme)
    Depcheck::SimpleOutput.post(results, verbose?)
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
depcheck-0.5.0 lib/depcheck/command/analyze_command.rb