mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
11 lines
163 B
Text
11 lines
163 B
Text
|
#!/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
|