Rakefile in motion-objection-0.7.2 vs Rakefile in motion-objection-0.8

- old
+ new

@@ -5,14 +5,16 @@ $:.unshift("./lib/") require './lib/motion-objection' Motion::Project::App.setup do |app| - # Use `rake config' to see complete project settings. app.name = 'motion-objection' + if ENV['DEV_CERT'] + app.codesign_certificate = ENV['DEV_CERT'] + end app.identifier = 'com.atomicobject.motion-objection' app.pods do - pod "Objection", "~>1.0.3" + pod "Objection", '~>1.1' end end