11 lines
163 B
Plaintext
Executable File
11 lines
163 B
Plaintext
Executable File
#!/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
|