Sha256: 9c17274b0d94b0079c414ddae4ae25de64c799417674e98e8568b40b38732e5f

Contents?: true

Size: 598 Bytes

Versions: 27

Compression:

Stored size: 598 Bytes

Contents

#!/usr/bin/env ruby
require 'clamp'
require 'yaml'
require_relative '../lib/slather'
require_relative '../lib/slather/command/coverage_command'
require_relative '../lib/slather/command/setup_command'
require_relative '../lib/slather/command/version_command'

class MainCommand < Clamp::Command
  self.default_subcommand = "coverage"

  subcommand 'setup', 'Configures a .xcodeproj for test coverage generation', SetupCommand
  subcommand 'coverage', 'Computes coverage for the supplied project', CoverageCommand
  subcommand 'version', 'Prints slather version', VersionCommand
end

MainCommand.run

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
slather-2.8.5 bin/slather
slather-2.8.4 bin/slather
slather-2.8.3 bin/slather
slather-2.8.2 bin/slather
slather-2.8.1 bin/slather
slather-2.8.0 bin/slather
slather-2.7.5 bin/slather
slather-2.7.4 bin/slather
slather-2.7.3 bin/slather
slather-2.7.2 bin/slather
slather-2.7.1 bin/slather
slather-2.7.0 bin/slather
slather-2.6.1 bin/slather
slather-2.6.0 bin/slather
slather-2.5.0 bin/slather
slather-2.4.9 bin/slather
slather-2.4.8 bin/slather
slather-2.4.7 bin/slather
slather-2.4.6 bin/slather
slather-2.4.5 bin/slather