nvim 1.10.0 → 1.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bc85eeab49096ed77dd13e5180ab09be73eefbfe902c1b072df4a4a1e43a3ab4
4
- data.tar.gz: dfe8c784d1fa82258905ab6391a6ff5a96452fabf2c48a04d252080e9a7d91e5
3
+ metadata.gz: 6befdb7ddc3ff092b9cac368d4e245ce44e8322789559a752cb4633fe263a69c
4
+ data.tar.gz: aec8cc511620f318618d577248318b7f9ee72ed40456aa3d8d71ae0f619be436
5
5
  SHA512:
6
- metadata.gz: '09a1efb791771fe4ff4e07d18dfc1c7c6692d052227177fdcc53b1f2b3c708426c8b726e5378b010d466f8c925b53cab234bdc0750162263e39dfb8e0ab2efd8'
7
- data.tar.gz: 4528ee24eedd1cedd741c9e195372a63e70131ba0a6adbed692fcf21c6cc6ce52bbccf88151a096070b706667aec5ec0dc58f8350400bfda6399eec5b5682e84
6
+ metadata.gz: 9d382647096ceeba099c8cbfba73c0f150da1b2d61791374a4ca73de44fe195baecce3ac8bb84cd6a5beb68eb319d72970f9cc4ad8eb3d093255782807cbeac3
7
+ data.tar.gz: 84902f55fd2bba21caf85926f31159d05d4559ee4fd20f23a063e2dde899052811a735b94f86a64ef3eca1a9d31ee5faf46d4fc58990747195773e5db6138ca1
data/INFO.yaml CHANGED
@@ -3,7 +3,7 @@
3
3
  #
4
4
 
5
5
  nvim:
6
- version: 1.10.0
6
+ version: 1.10.1
7
7
  license: BSD-2-Clause+
8
8
  authors:
9
9
  - Bertram Scharpf
data/README.md CHANGED
@@ -147,8 +147,7 @@ To inhibit the output of the last value, set the
147
147
 
148
148
  #### Last return value
149
149
 
150
- The anonymous variable `_` will hold the result
151
- of the last evaluation.
150
+ The anonymous variable `_` will hold the last non-nil result.
152
151
 
153
152
  ```
154
153
  1 7*11*13
data/lib/neovim/info.rb CHANGED
@@ -1,10 +1,10 @@
1
1
  require "neovim/meta.rb"
2
2
  Neovim::INFO = Neovim::Meta.new "nvim",
3
- version: "1.10.0",
3
+ version: "1.10.1",
4
4
  license: "BSD-2-Clause+",
5
5
  authors: ["Bertram Scharpf"],
6
6
  email: "software@bertram-scharpf.de",
7
7
  summary: "Yet another Ruby client for Neovim",
8
8
  description: "A simple Ruby client for Neovim.\nClean code, minimal dependecies, no frills, no wokeness.",
9
9
  homepage: "https://github.com/BertramScharpf/ruby-nvim",
10
- commit: "40737d0"
10
+ commit: "fa5cec3"
@@ -158,10 +158,8 @@ module Neovim
158
158
  raise unless $rescue and $result != false
159
159
  $!
160
160
  end
161
- unless $result == false or (not $result and r.nil?) then
162
- script_binding.local_variable_set :_, r
163
- puts "#=> #{r.inspect}"
164
- end
161
+ script_binding.local_variable_set :_, r unless r.nil?
162
+ puts "#=> #{r.inspect}" if $result or ($result.nil? and not r.nil?)
165
163
  end
166
164
  end
167
165
  elsif code == "+" then
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nvim
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bertram Scharpf
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-04-08 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies: []
12
12
  email: software@bertram-scharpf.de
13
13
  executables:
@@ -18,7 +18,6 @@ extra_rdoc_files:
18
18
  - LICENSE
19
19
  - README.md
20
20
  - Rakefile
21
- - nvim.gemspec
22
21
  - examples/demo.rb
23
22
  - examples/demo_attach
24
23
  - examples/demo_intar
@@ -27,6 +26,7 @@ extra_rdoc_files:
27
26
  - examples/demo_sub
28
27
  - examples/dump_api
29
28
  - examples/passwords
29
+ - nvim.gemspec
30
30
  files:
31
31
  - INFO.yaml
32
32
  - LICENSE
@@ -79,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
79
79
  - !ruby/object:Gem::Version
80
80
  version: '0'
81
81
  requirements: []
82
- rubygems_version: 3.6.6
82
+ rubygems_version: 3.6.7
83
83
  specification_version: 4
84
84
  summary: Yet another Ruby client for Neovim
85
85
  test_files: []