-
Book Overview & Buying
-
Table Of Contents
RubyMotion iOS Development Essentials
CocoaPods is the best way to manage library dependencies in Objective-C projects. CocoaPods was originally designed to be integrated in Objective-C Xcode projects, but it can readily be used in RubyMotion projects using the
motion-cocoapods gem.
Perform the following steps to install CocoaPods with RubyMotion:
Install CocoaPods.
$sudo gem install cocoapods
Set up CocoaPods.
$pod setup
Install motion-cocoapods to work with RubyMotion.
$sudo gem install motion-cocoapods
Now we are all set to use CocoaPods in our RubyMotion project. Add the following code in the Rakefile:
Motion::Project::App.setup do |app|
app.pods do
dependency 'Reachability'
end
endSo, next time when you build your code, it will automatically download the library for you. Then you can use the Objective-C CocoaPods in your project.
For detailed documentation on CocoaPods, visit http://cocoapods.org/.
Change the font size
Change margin width
Change background colour