forked from mirrors/nixpkgs
ae22f7d35c
cocoapods-beta is an alternative attribute for the cocoapods package that provides the latest beta instead of the stable version. Also switch to `bundlerApp` so we stop polluting the profile with our gem dependencies and can get rid of the broken `sandbox-pod` executable.
11 lines
351 B
Plaintext
Executable file
11 lines
351 B
Plaintext
Executable file
#!/usr/bin/env nix-shell
|
|
#! nix-shell -i bash -p bash bundix bundler
|
|
|
|
set -e
|
|
|
|
rm -f Gemfile.lock Gemfile-beta.lock
|
|
bundler lock
|
|
BUNDLE_GEMFILE=Gemfile-beta bundler lock --lockfile=Gemfile-beta.lock
|
|
bundix --gemfile=Gemfile --lockfile=Gemfile.lock --gemset=gemset.nix
|
|
bundix --gemfile=Gemfile-beta --lockfile=Gemfile-beta.lock --gemset=gemset-beta.nix
|