cucumber 0.3.0

Tooling for using Cucumber with Rust projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
with (import <nixpkgs> {});
let
  env = bundlerEnv {
    name = "your-package";
    inherit ruby;
    gemfile = ./Gemfile;
    lockfile = ./Gemfile.lock;
    gemset = ./gemset.nix;
  };
in stdenv.mkDerivation {
  name = "your-package";
  buildInputs = [env ruby];
}