atomicobject/motion-objection

View on GitHub
lib/motion-objection.rb

Summary

Maintainability
A
0 mins
Test Coverage
unless defined?(Motion::Project::Config)
  raise "This file must be required within a RubyMotion project Rakefile."
end

Motion::Project::App.setup do |app|
  Dir.glob(File.join(File.dirname(__FILE__), 'motion-objection/**/*.rb')).each do |file|
    app.files.unshift(file)
  end

  app.pods do
    pod "Objection", '~>1.3.1'
  end
end