11 lines
163 B
Plaintext
11 lines
163 B
Plaintext
|
#!/usr/bin/env nix-shell
|
||
|
#! nix-shell -i bash -p bash ruby bundler bundix
|
||
|
|
||
|
rm Gemfile.lock
|
||
|
bundler install
|
||
|
bundix
|
||
|
|
||
|
if [ "clean" == "$1" ]; then
|
||
|
rm -rf ~/.gem
|
||
|
fi
|