mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
f5b3f9962e
* cocoapods: init at 1.3.1 * requires xcode
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
|