Watson's Blog

RubyMotion アプリをシミュレーターで起動する際に言語を指定する

| Comments

Xcode で起動時の言語指定方法 がこちらに書かれているのですが、RubyMotion では rake を実行する際に環境変数 args を利用して以下のように指定します。

1
2
3
4
5
6
7
8
9
% rake args="-AppleLanguages '(en)'"
     Build ./build/iPhoneSimulator-6.1-Development
  Simulate ./build/iPhoneSimulator-6.1-Development/Locale.app
2013-07-07 22:47:22.293 Locale[13237:c07] foo

% rake args="-AppleLanguages '(ja)'"
     Build ./build/iPhoneSimulator-6.1-Development
  Simulate ./build/iPhoneSimulator-6.1-Development/Locale.app
2013-07-07 22:47:28.500 Locale[13335:c07] ほげ

サンプルのプロジェクトは、以下の URL に置いてあります。

Comments