groups

name language licence
Bazaar revno build phase script Ruby BSD
Fix mysql lib paths Other Other
Build number script (Xcode phase) Ruby BSD



language: Ruby
licence: BSD

Build number script (Xcode phase)

options: view full snippetsend to code collector
#!/usr/bin/env ruby

begin
require 'rubygems'
rescue LoadError
	error_string = "\n\nYou must install rubygems in order to use this script"
	raise error_string
end

begin
require 'osx/plist'
rescue LoadError
	error_string = "\n\nYou must install the plist ruby gem in order to use this script. \n gem sources -a http://gems.github.com \n sudo gem install kballard-osx-plist\n"
	raise error_string
end
	
(Continues...)