This commit is contained in:
Laurent Sansonetti
2012-03-25 18:24:57 +02:00
parent f98f6c56d7
commit 4a8eaa12c1
2 changed files with 11 additions and 1 deletions

10
NEWS
View File

@@ -1,3 +1,13 @@
= RubyMotion 0.62 =
* Fixed a bug when `rake spec' would start the REPL.
* Added persistent REPL history.
* Changed the REPL to not exit with an error status in case of a broken pipe.
* Changed `motion create' to generate a .gitignore file, which currently
lists `build' and `.repl_history'.
* Added completion functionality to the REPL. Use the <tab> key to complete
methods, constants, instance variables and local variables.
= RubyMotion 0.61 =
* Fixed a bug when doing `rake clean' on a project with vendored projects.

View File

@@ -1,5 +1,5 @@
PLATFORMS_DIR = '/Applications/Xcode.app/Contents/Developer/Platforms'
PROJECT_VERSION = '0.61'
PROJECT_VERSION = '0.62'
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]