LoginSignup
1
0

More than 5 years have passed since last update.

Xcode4.5でRubyMotion1.23を動かす時のメモ

Last updated at Posted at 2012-09-21

【注意:1.24では対応されていました】
RubyMotion1.23を使用するときは、RubyMotionのRakefileを編集して、rake updateする必要があります。
手順は以下のとおり

  • /Library/RubyMotion/data/6.0/Rakefile の6行目あたりを以下のように修正
/Library/RubyMotion/data/6.0/Rakefile
xcode = '/Applications/Xcode.app' 
  • ターミナルで cd /Library/RubyMotion/data/6.0 && rake update を実行
    • rvmを使っている人は後半の rake updatervmsudo rake update に変更
    • nokogiriが必要と言われるので、gem install nokogiri --no-ri --no-rdoc を実行しておく
  • ビルド対象のRakeファイルに以下を追加
Rakefile
app.sdk_version = "6.0" 

参考:How to use iOS 6 with Rubymotion NOW

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0