Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
A fork of motion-cocoapods, motion-pods allows RubyMotion projects to integrate with the CocoaPods dependency manager.
$ [sudo] gem install motion-pods
Or if you use Bundler:
gem 'motion-pods'
Edit the Rakefile
of your RubyMotion project and add the following require
line:
require 'rubygems'
require 'motion-pods'
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
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
To tell motion-pods 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
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
As part of the install and update tasks, the specification repostories will get
updated. You can disable this with the COCOAPODS_NO_REPO_UPDATE
env variable:
$ [bundle exec] rake pod:install COCOAPODS_NO_REPO_UPDATE=1
Setup a local development environment.
$ git clone git://github.com/jbender/motion-pods.git
$ cd motion-pods
$ [bundle exec] rake bootstrap
Verify that all the tests are passing.
$ [bundle exec] rake spec
Create your patch and send a pull-request.
Copyright (c) 2012-2015, HipByte (lrz@hipbyte.com) 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:
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.
FAQs
Unknown package
We found that motion-pods demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.