Sha256: ce38962dcfff335b2559d5c7d78329066eb86b1fcd78d8fefd07246c1cc8f966
Contents?: true
Size: 756 Bytes
Versions: 1
Compression:
Stored size: 756 Bytes
Contents
# XCoder A ruby wrapper around various xcode tools and the project.pbxproj ## Example Usage You will need to install the gem: `gem install xcoder` and then require the gem in your project/rakefile/etc `require 'xcoder'` ### Finding all projects from the current directory down `Xcode.find_projects.each {|p| puts p.name }` ### Find a configuration for a target on a project ` project = Xcode.find_projects.first config = project.target(:Target).config(:Debug) ` ### Building a configuration `config.build` ### Packaging a built .app `config.package :sign => 'Developer Identity Name', :profile => 'Profile.mobileprovision'` ### Incrementing the build number config.info_plist do |info| info.version = info.version.to_i + 1 info.save end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
xcoder-0.0.1 | README.md |