Pedro Pombeiro 9d1e266145
Use fastlane Nix package instead of ruby/bundler for Android
- iOS still has issues with native Ruby dependencies

Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
2019-05-06 11:57:12 +02:00

12 lines
209 B
Plaintext
Executable File

#!/usr/bin/env nix-shell
#! nix-shell -i bash -p bash ruby bundler bundix
rm -f Gemfile.lock
bundler install --path .bundle/vendor
bundix
rm -rf .bundle/vendor
if [ "clean" == "$1" ]; then
rm -r ~/.gem
fi