Diff neovim-ruby-client-0.9.0 with a neovim-ruby-client-0.9.1

/usr/portage/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.9.1.ebuild 2023-10-09 14:52:30.444368374 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5
USE_RUBY="ruby27 ruby30 ruby31"
5
USE_RUBY="ruby31 ruby32"
6 6

  
7 7
RUBY_FAKEGEM_NAME="neovim"
8 8
RUBY_FAKEGEM_EXTRADOC="README.md"
......
15 15
inherit ruby-fakegem
16 16

  
17 17
DESCRIPTION="Ruby bindings for Neovim"
18
HOMEPAGE="https://github.com/alexgenco/neovim-ruby"
18
HOMEPAGE="https://github.com/neovim/neovim-ruby"
19 19

  
20 20
LICENSE="MIT"
21 21
SLOT="0"
......
33 33
	sed -i -e '/\(bundler\|pry\)/ s:^:#:' spec/helper.rb || die
34 34

  
35 35
	# Avoid tests that result in a unix socket path that is too long
36
	sed -i -e '/\(establishes an RPC connection\|sets appropriate client info\)/askip "socket path length"' spec/neovim_spec.rb || die
36
	sed -e '/\(establishes an RPC connection\|sets appropriate client info\)/askip "socket path length"' \
37
		-i spec/neovim_spec.rb || die
37 38
}
Thank you!