Simple example of how to make use of nixpkgs-ruby

Fix up the docs

+4 -4
+4 -4
README.md
··· 1 1 # Setup steps for new project 2 2 3 3 Make a .ruby-version file with your chosen ruby version. Create a Gemfile with your gems. Run the following commands to make a lockfile. 4 - 4 + ```bash 5 5 nix flake init --template github:bobvanderlinden/nixpkgs-ruby# 6 6 nix develop 7 7 bundle lock 8 8 bundix 9 - 9 + ``` 10 10 Now you can add gems to the buildInputs and enable direnv. Reload the environment and you are ready to work with your chosen version of Ruby and associated Gems. 11 - 11 + ```bash 12 12 direnv allow <foldername> 13 - 13 + ``` 14 14 Credit to Bob van der Linden <bobvanderlinden@gmail.com> for creating https://github.com/bobvanderlinden/nixpkgs-ruby