Docs header transparent bg

如何在 RubyMotion 中使用 Bundler

如果您還沒有 RubyMotion 應用程式,請產生一個。

$ motion create myapp
$ cd myapp

您需要建立一個 Gemfile。我們在這裡使用 bubblewrap。

gem 'bubble-wrap'

然後,設定您的 Rakefile,以便在編譯時需要您的已綑綁寶石。將此內容新增到檔案最上方,就在 require 'motion/project' 行的下方

require 'bundler'
Bundler.require

接著,安裝您的相依性

$ bundle install

現在,您可以照常編譯您的應用程式。

$ bundle exec rake