1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

RubyMotion 1.4にアップデートしよう!

Posted at

RubyMotionが1.4にアップデートされてます.

$ sudo motion updateしましょう.

変更履歴は↓

= RubyMotion 1.4 =

* Added support for the compilation of .xcdatamodeld and .storyboard resource
  files. Thanks Ian Phillips, Andrew Vega and Michail Pishchagin.
* Fixed a bug when the build system would fail in case the resources dir does
  not exist. Thanks Watson.
* Fixed a bug in the Xcode project vendoring code when header files at
  different directory levels would not be properly handled. This also fixes
  the motion-cocoapods gem. Thanks Eloy Duran.
* Added a way to start the simulator in retina mode by setting the `retina'
  environment variable to `true' (other values will be considered false).
  For example: `rake retina=true'. Thanks Marcin Maciukiewicz for the idea.
* Fixed an ABI bug in the way we compile Ruby methods overloading Objective-C
  methods returning small C structures that can fit in a 64-bit integer.
  Thanks Kristoph Cichocki-Romanov for the report.
* Added support for the iOS 4.3 SDK.

.xcdatamodeldと.storyboardのコンパイルに対応.

以前書いたエントリ― STORYBOARDを使ってRUBYMOTIONで開発する方法のibtoolで.storyboardを.storyboardcにコンパイルする必要がなくなりますね.

resourcesディレクトリが無くてもrakeに失敗しなくなる

githubとかに上がってるのでresourcesが含まれていないのがありますけど,それをgit cloneしてrakeして失敗するのがなくなりますね.
(あれって.gitignoreにresourcesを入れてるんですかね)
→ 空ディレクトリをgitが省くそうです

他ライブラリ読み込み関連

XCodeプロジェクト形式で引っぱってくるときにヘッダファイルが他のディレクトリにあった時にハンドリングできなかったのが修正された.

cocos2dでハマってた問題を解決できるかも?あとでやってみよう.

retina simulatorサポート

rake retina=trueでretina simulatorが立ち上がるよ

ABIバグ修正

ObjCのメソッドをRuby側でオーバーロードして64bit inttegerに収まる小さいCの構造体を返すときのバグ修正らしい

iOS 4.3 SDKサポート

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?