Sha256: 7f5fdfc50100cd514fb9e817634c90f381b646543eb8f99e5cc7987227489ebb

Contents?: true

Size: 862 Bytes

Versions: 2

Compression:

Stored size: 862 Bytes

Contents

#!/usr/bin/env ruby

require 'clamp'
require 'synx'

Clamp do

  parameter "xcodeproj", "Path to the xcodeproj", :attribute_name => :xcodeproj_path
  option ["--prune", "-p"], :flag, "remove source files and image resources that are not referenced by the the xcode project"
  option "--no-color", :flag, "removes all color from the output"
  option "--no-default-exclusions", :flag, "doesn't use the default exclusions of /Libraries, /Frameworks, and /Products"
  option ["--quiet", "-q"], :flag, "silence all output"
  option ["--exclusion", "-e"], "EXCLUSION", "ignore an Xcode group while syncing", :multivalued => true

  def execute
    project = Synx::Project.open(xcodeproj_path)
    project.sync(:prune => prune?, :quiet => quiet?, :no_color => no_color?, :no_default_exclusions => no_default_exclusions?, :group_exclusions => exclusion_list)
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
synx-0.0.54 bin/synx
synx-0.0.53 bin/synx