mirror of
https://github.com/neovim/neovim.git
synced 2025-01-01 17:23:36 -07:00
9 lines
189 B
Ruby
9 lines
189 B
Ruby
begin
|
|
require "neovim/ruby_provider"
|
|
rescue LoadError
|
|
warn(
|
|
"Your neovim RubyGem is missing or out of date. " +
|
|
"Install the latest version using `gem install neovim`."
|
|
)
|
|
end
|