LoginSignup
2
2

More than 5 years have passed since last update.

RubyMotionでビルド時にcode signの処理をスキップするようにする設定

Posted at

Macアプリ(--template=osx)専用の設定です (iOSアプリでこの設定を使うことはできません)

release modeでのビルドしたい時や完成したアプリをApp Storeに申請しない方法で配布する際などに、Rakefileに下記の設定を追加してrake build:relaseするとcode signの処理をスキップしてくれます。

Rakefile
Motion::Project::App.setup do |app|
  app.codesign_for_release = false # これを追加する
end

なお、に追加されたのは下記のcommitのようです。
https://github.com/HipByte/RubyMotion/commit/a6de0f4021cf9dc155151cdc22887728ddddd6ca

2
2
2

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
2
2