Sha256: 65f1f9e45d8b1d8b21eb4a85adae29b7c92c0bca7b39f953ef7f4ecc54a0b545
Contents?: true
Size: 475 Bytes
Versions: 3
Compression:
Stored size: 475 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' 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 end MainCommand.run
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
slather-2.2.0 | bin/slather |
slather-2.1.0 | bin/slather |
slather-2.0.2 | bin/slather |