mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 18:46:19 +00:00
Jakub Sokołowski
6a23f64550
Was removed in: https://github.com/status-im/status-jenkins-lib/pull/48 But only causes issues when version of Ruby Gems change. Signed-off-by: Jakub Sokołowski <jakub@status.im>
9 lines
141 B
Nix
9 lines
141 B
Nix
{ mkShell, bundler }:
|
|
|
|
mkShell {
|
|
buildInputs = [ bundler ];
|
|
shellHook = ''
|
|
bundle install --quiet --gemfile=fastlane/Gemfile
|
|
'';
|
|
}
|