Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>There are a couple issues at play here. </p> <p><strong>can't convert Pathname into String</strong></p> <p><strong>Update: As of 5/7/12, you can just <code>sudo motion update</code> and this will be fixed</strong></p> <p>This error has to do with the fact that you're using Ruby 1.9. Though I don't see it explicitly stated in the documentation, the fact that the examples of setting this up refer to using <code>sudo</code> in the <code>gem install</code> commands means it's assumed you're running OS X's built-in ruby (1.8.7). If you switch your project to system ruby (add a <code>.rbenv-version</code> file with <code>system</code> in it). Alternatively, if you want to stick with 1.9, you can change line 22 of <code>/Library/RubyMotion/lib/motion/project/vendor.rb</code> to read:</p> <pre><code>App.info 'Build', @path.to_s </code></pre> <p>Once doing this, there's a good chance you'll then get an error like this:</p> <pre><code>ERROR! Building vendor project `./vendor/JSONKit' failed to create at least one `.a' library.` </code></pre> <p>You'll need to edit line 77 of that same file to read:</p> <pre><code>objs = Dir.glob('**/*.o') # Removed the leading "*/" </code></pre> <p>Then <code>rake</code> should finally work properly.</p> <p>An issue has been filed on the <code>motion-cocoapods</code> repo regarding these issues: <a href="https://github.com/HipByte/motion-cocoapods/issues/1" rel="nofollow">https://github.com/HipByte/motion-cocoapods/issues/1</a></p> <p>Additionally, I just filed an official support ticket for this using <code>motion support</code>. (Remember, you paid money for this brand new product which includes support; use it!)</p> <p><strong>Nimbus</strong></p> <p>The problem here is that you're requiring the top-level cocoapod. Since it has "subspecs", you need to require those directly, so maybe <code>dependency 'Nimbus/Core'</code> instead. You can see a full list of them <a href="https://github.com/CocoaPods/Specs/blob/master/Nimbus/0.9.2/Nimbus.podspec" rel="nofollow">here</a> (see the <code>s.subspec</code> entries)</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload