Opening in XCode, use xcworkspace, otherwise you’ll get build errors regarding missing frameworks.
Tons of thoughts to follow that could use some organization.
Running ns doctor ios revealed a few issues, the commands I used to resolve them are below:
sudo gem install -n /usr/local/bin xcodeproj
sudo gem install -n /usr/local/bin cocoapods
pip install six
When running ns prepare ios, an error occured in Ruby related to ffi, and this command resolved that:
gem install --user-install ffi -- --enable-libffi-alloc
There’s is a tool in the repository to create a new repository and can be run like so:
tools/mkm.sh title_of_migration
Where `title_of_migration` is a short description of the change. After running that there will be a new migration file and the index.js will be updated to include that migration in future runs.
Some caveats:
- The class name in the generated migration will use the title_of_migration
casing and should be updated to reflect our naming convention. I hope to fix this eventually.
- If the app is running under the debugger then after running that command the
app will reload and run your blank/new migration, so be careful of that. I’m still trying to think of a good solution to this.