Files
Eloy Duran d1c6f442b8 Allow a user to define a post install hook in the Podfile, which allows her to customize the generated Xcode project. Closes #56.
Add MacRubySample to the rake build_examples task, now that it can
specify that it needs garbage collection support.
2011-11-12 22:41:34 +01:00

24 lines
470 B
Ruby

platform :osx
generate_bridge_support!
dependency 'ASIHTTPRequest'
dependency 'SBJson'
target :debug do
dependency 'CocoaLumberjack'
end
#target :test, :exclusive => true do
# dependency 'Kiwi'
#end
# Enable garbage collection support, which MacRuby requires.
post_install do |installer|
installer.project.targets.each do |target|
target.buildConfigurations.each do |config|
config.buildSettings['GCC_ENABLE_OBJC_GC'] = 'supported'
end
end
end