Update Gemfile.lock (+gemset.nix) and shell.nix

Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
This commit is contained in:
Ivan Bushchik 2024-01-08 22:37:28 +03:00
parent bc8f58f01a
commit 89263a2929
No known key found for this signature in database
GPG key ID: 2F16FBF3262E090C
3 changed files with 18 additions and 6 deletions

View file

@ -54,7 +54,7 @@ GEM
nokogiri (~> 1.12) nokogiri (~> 1.12)
jekyll-watch (2.2.1) jekyll-watch (2.2.1)
listen (~> 3.0) listen (~> 3.0)
json (2.6.3) json (2.7.1)
json-minify (0.0.3) json-minify (0.0.3)
json (> 0) json (> 0)
kramdown (2.4.0) kramdown (2.4.0)

View file

@ -235,10 +235,10 @@
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0nalhin1gda4v8ybk6lq8f407cgfrj6qzn234yra4ipkmlbfmal6"; sha256 = "0r9jmjhg2ly3l736flk7r2al47b5c8cayh0gqkq0yhjqzc9a6zhq";
type = "gem"; type = "gem";
}; };
version = "2.6.3"; version = "2.7.1";
}; };
json-minify = { json-minify = {
dependencies = ["json"]; dependencies = ["json"];

View file

@ -1,4 +1,16 @@
{ pkgs ? import <nixpkgs> { } }: { pkgs ? import <nixpkgs> { } }:
pkgs.mkShell { pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [ bundler nodejs-slim bundix ]; nativeBuildInputs = with pkgs.buildPackages;
with rubyPackages; [
bundler
nodejs-slim
bundix
jekyll
bundler
eventmachine
racc
em-websocket
ffi
json
];
} }