Thanks for the response! I actually downloaded the public-api branch and built the TouchDB.framework from that, which worked.
Here is how my Rakefile ended up (for anyone else considering using TouchDB with Ruby Motion):
# -*- coding: utf-8 -*-
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project'
Motion::Project::App.setup do |app|
# Use `rake config' to see complete project settings.
app.vendor_project('vendor/TouchDB.framework', :static,
:products => ['TouchDB'],
:headers_dir => 'Headers')
app.libs += %w(/usr/lib/libz.dylib /usr/lib/libsqlite3.dylib)
app.frameworks += %w(CFNetwork SystemConfiguration MobileCoreServices Security)
end
Now to try actually using TouchDB in my app! :)
Thanks again,
-jim rankin