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

Bazaar revno build phase script

options: view full snippetsend to code collector
#!/usr/bin/ruby
# Simple bazaar version numbering build phase script
#   by Jeremy Knope <jerome@buttered-cat.com>
#   with thanks to Rudy for the ruby plist extension help

# Requirements: osx-plist ruby gem, install via:
#
#  $ gem sources -a http://gems.github.com/ (you only need to do this once)
#  $ gem install kballard-osx-plist
#

# Only run if we're versioned by bazaar
if File.exists? '.bzr'
	require 'rubygems'
	require 'osx/plist'
	
(Continues...)