README.md in ProMotion-0.6.2 vs README.md in ProMotion-0.6.3

- old
+ new

@@ -90,26 +90,25 @@ Create a new RubyMotion project. `motion create myapp` -Open it in your favorite editor, then go into your Rakefile and add the following to the top: +Open it in your favorite editor, then go into your Rakefile and modify the top to look like the following: ```ruby # -*- coding: utf-8 -*- $:.unshift("/Library/RubyMotion/lib") -require 'motion/project' -require "rubygems" +require 'motion/project/template/ios' require 'bundler' Bundler.require ``` Create a Gemfile and add the following lines: ```ruby source 'https://rubygems.org' -gem "ProMotion", "~> 0.6.0" +gem "ProMotion", "~> 0.6.2" ``` Run `bundle install` in Terminal to install ProMotion. Go into your app/app_delegate.rb file and replace everything with the following: