This commit is contained in:
Laurent Sansonetti
2012-05-07 01:06:11 +02:00
parent 1b02107318
commit 2540b18a22
2 changed files with 11 additions and 1 deletions

10
NEWS
View File

@@ -1,3 +1,13 @@
= RubyMotion 1.2 =
* Fixed codesign bugs in `rake archive:release' (for App Store submissions).
* Fixed a couple bugs in the project vendoring code that would be triggered
when using the motion-cocoapods gem. The fixes were merged from the
https://github.com/HipByte/motion-cocoapods/issues/1 discussion.
* Improved the Xcode detection code by printing a warning message in case
the user installed a recent Xcode in /Applications that has not been
set as the default Xcode in the system yet.
= RubyMotion 1.1 =
* Fixed `rake device' to print a human-readable error message in case the

View File

@@ -1,5 +1,5 @@
PLATFORMS_DIR = '/Applications/Xcode.app/Contents/Developer/Platforms'
PROJECT_VERSION = '1.1'
PROJECT_VERSION = '1.2'
sim_sdks = Dir.glob(File.join(PLATFORMS_DIR, 'iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator*.sdk')).map do |path|
File.basename(path).scan(/^iPhoneSimulator(.+)\.sdk$/)[0][0]