Skip to content

Commit 7c2fe32

Browse files
author
birdee
committed
neovim: fix ruby provider warning
Fixing this warning from checkhealth provider.ruby: require("provider.ruby.health").check() Ruby provider (optional) ~ - Ruby: ruby 3.3.5 (2024-09-03 revision ef084cc8f4) [x86_64-linux] - Host: /nix/store/l354hgiahcjd81qazlc870104i26lm9b-neovim-0.10.2birdeevim/bin/birdeeVim-ruby - OK Latest "neovim" gem is installed: /home/birdee/.local/share/gem/ruby/3.3.0/gems/neovim-0.10.0/lib/neovim/connection.rb:1: warning: logger was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0. You can add logger to your Gemfile or gemspec to silence this warning. 0.10.0 steps taken: added `gem 'logger'` to Gemfile ran the following on the directory nix run --no-write-lock-file github:BirdeeHub/neovim_ruby_updater
1 parent 8767878 commit 7c2fe32

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
source 'https://rubygems.org'
22

33
gem 'neovim'
4+
gem 'logger'
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
msgpack (1.7.2)
4+
logger (1.6.1)
5+
msgpack (1.7.5)
56
multi_json (1.15.0)
67
neovim (0.10.0)
78
msgpack (~> 1.1)
@@ -11,7 +12,8 @@ PLATFORMS
1112
ruby
1213

1314
DEPENDENCIES
15+
logger
1416
neovim
1517

1618
BUNDLED WITH
17-
2.3.27
19+
2.5.16

pkgs/applications/editors/neovim/ruby_provider/gemset.nix

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
{
2+
logger = {
3+
groups = ["default"];
4+
platforms = [];
5+
source = {
6+
remotes = ["https://rubygems.org"];
7+
sha256 = "0lwncq2rf8gm79g2rcnnyzs26ma1f4wnfjm6gs4zf2wlsdz5in9s";
8+
type = "gem";
9+
};
10+
version = "1.6.1";
11+
};
212
msgpack = {
313
groups = ["default"];
414
platforms = [];
515
source = {
616
remotes = ["https://rubygems.org"];
7-
sha256 = "1a5adcb7bwan09mqhj3wi9ib52hmdzmqg7q08pggn3adibyn5asr";
17+
sha256 = "1a5fsgchkpcca4wf3pipbb2jbj523l7fbaq37j10cr0yymwlkc7z";
818
type = "gem";
919
};
10-
version = "1.7.2";
20+
version = "1.7.5";
1121
};
1222
multi_json = {
1323
groups = ["default"];

0 commit comments

Comments
 (0)