Sha256: 24ea5f1f1184dfcdddbecb31c00518bcc078ff59d47fec2f99294cff333f6a12

Contents?: true

Size: 541 Bytes

Versions: 2

Compression:

Stored size: 541 Bytes

Contents

#!/usr/bin/env ruby

require 'clamp'
require File.join(File.dirname(__FILE__), '..', 'lib', 'slather')

Clamp do

  parameter "xcodeproj", "Path to the xcodeproj", :attribute_name => :xcodeproj_path
  option ["--build-directory", "-b"], "BUILD_DIRECTORY", "The directory where gcno files will be written to. Defaults to derived data."

  def execute
    puts "Slathering..."
    project = Slather::Project.open(xcodeproj_path)
    project.build_directory = build_directory
    project.post_to_coveralls
    puts "Done slathering!"
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
slather-0.0.232 bin/slather
slather-0.0.231 bin/slather