Code Monkey home page Code Monkey logo

motion-cocoapods's Introduction

motion-cocoapods

Build Status Gem Version

motion-cocoapods allows RubyMotion projects to integrate with the CocoaPods dependency manager.

Installation

$ [sudo] gem install motion-cocoapods

Or if you use Bundler:

gem 'motion-cocoapods'

Setup

  1. Edit the Rakefile of your RubyMotion project and add the following require line:

    require 'rubygems'
    require 'motion-cocoapods'
  2. Still in the Rakefile, set your dependencies using the same language as you would do in Podfiles.

    Motion::Project::App.setup do |app|
      # ...
      app.pods do
        pod 'AFNetworking'
      end
    end

    You can use use_frameworks! to install pods as frameworks (NOTE This feature requires RubyMotion 4.18+).

    Motion::Project::App.setup do |app|
      # ...
      app.pods do
        use_frameworks!
        pod 'AFNetworking'
      end
    end
  3. If this is the first time using CocoaPods on your machine, you'll need to let CocoaPods do some setup work with the following command:

    $ [bundle exec] pod setup
    

Tasks

To tell motion-cocoapods to download your dependencies, run the following rake task:

$ [bundle exec] rake pod:install

That’s all. The build system will properly download the given pods and their dependencies. On the next build of your application it will pod the pods and link them to your application executable.

If the vendor/Podfile.lock file exists, this will be used to install specific versions. To update the versions, use the following rake task:

$ [bundle exec] rake pod:update

Options

If necessary, you can pass vendor_project options to the pods configuration method. These options are described here. For instance, to only generate BridgeSupport metadata for a single pod, which might be needed if a dependency that you’re not using directly is causing issues (such as C++ headers), you can specify that like so:

   Motion::Project::App.setup do |app|
     app.pods :headers_dir => 'Headers/AFNetworking' do
       pod 'AFNetworking'
       # ...
     end
   end

By default the output of CocoaPods doing its work is silenced. If, however, you would like to see the output, you can set the COCOAPODS_VERBOSE env variable:

$ [bundle exec] rake pod:install COCOAPODS_VERBOSE=1

Contribute

  1. Setup a local development environment.

    $ git clone git://github.com/HipByte/motion-cocoapods.git
    $ cd motion-cocoapods
    $ [bundle exec] rake bootstrap
    
  2. Verify that all the tests are passing.

    $ [bundle exec] rake spec
    
  3. Create your patch and send a pull-request.

License

Copyright (c) 2012-2015, HipByte ([email protected]) and contributors. All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

motion-cocoapods's People

Contributors

watson1978 avatar alloy avatar markvillacampa avatar lrz avatar aaronlasseigne avatar amirrajan avatar fabiopelosin avatar clayallsopp avatar siuying avatar nickyhajal avatar lax avatar parndt avatar gantman avatar alexrothenberg avatar adammenges avatar bitgangsta avatar dclausen avatar eamonn-webster avatar markrickert avatar readmecritic avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.