mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
10 lines
163 B
Text
Executable file
10 lines
163 B
Text
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
|