mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-14 02:35:54 +00:00
9d1e266145
- iOS still has issues with native Ruby dependencies Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
12 lines
209 B
Plaintext
Executable File
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
|