ruby-lsp-cell 0.1.0 → 0.1.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: ef542283838f0b02db357300bd9eb16dbd29df6473451799350e7a9000464efc
4
- data.tar.gz: 6502422f819758a0f20ce099d93c172f5508d9d115219b3696cb8bf59fe28785
3
+ metadata.gz: 178572be5a2fb9118cec4c384a4d2ef55263d9c689021e3e5ef849f8f73059e3
4
+ data.tar.gz: e12e41a2e2204d4ab27cecbd670ddff43cf47a8e22b432eb477fb6b1627d6041
5
5
  SHA512:
6
- metadata.gz: b7a02eb7ecd15d9894347674c1be575ef4d16e4de5cf54703981df112bb1f8a78ad06e26b2a51f76bb1d3aa0473948aac6df4ed740d31ed1b64fe1171813e1be
7
- data.tar.gz: 7885de047e0c9c287ec04fddfe69e26da9b1023a0666c480a2c89b2bc9cc9be91b6f9fc5ac848cdfdd07ee381500164714af26ab333d0d7fcbeac2791ae5864e
6
+ metadata.gz: d99a39479620e9becaf3d94d3e928d68f1c8228d1d162e0a02e0a3c79e7337d853b365338416c4cbf30673b62df1f48f26e890aa12213df5fc8177735751f7bd
7
+ data.tar.gz: f8fcbfa1bef3a640d57c4551ccea2ab9a3f6c4303f9b8fb8abda2960720bf7bc1a05db00455460f5df732ef7d1d816630d76adc8528f8655ed3e6f4ee6920531
data/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ ## [0.1.1] - 2025-06-09
2
+ - Add compatibility with Ruby LSP 0.24.1
3
+
4
+ ## [0.1.0] - 2025-06-03
5
+ - Add compatibility with Ruby LSP 0.23.15
6
+ - Start of the main project
7
+
8
+ ## [0.0.1] - 2024-06-22
9
+ - Add compatibility with Ruby LSP 0.17.17
@@ -3,6 +3,6 @@
3
3
 
4
4
  module RubyLsp
5
5
  module Cell
6
- VERSION = "0.1.0"
6
+ VERSION = "0.1.1"
7
7
  end
8
8
  end
@@ -7,7 +7,7 @@ require "ruby_lsp/internal"
7
7
  require_relative "code_lens"
8
8
  require_relative "../cell/version"
9
9
 
10
- RubyLsp::Addon.depend_on_ruby_lsp!("~> 0.23.0")
10
+ RubyLsp::Addon.depend_on_ruby_lsp!("~> 0.24.0")
11
11
 
12
12
  module RubyLsp
13
13
  module Cell
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-lsp-cell
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Edgar Guzmán
@@ -20,6 +20,7 @@ files:
20
20
  - ".rubocop.yml"
21
21
  - ".ruby-version"
22
22
  - ".vscode/settings.json"
23
+ - CHANGELOG.md
23
24
  - LICENSE.txt
24
25
  - README.md
25
26
  - Rakefile
@@ -27,7 +28,6 @@ files:
27
28
  - lib/ruby_lsp/cell/version.rb
28
29
  - lib/ruby_lsp/ruby-lsp-cell/addon.rb
29
30
  - lib/ruby_lsp/ruby-lsp-cell/code_lens.rb
30
- - ruby-lsp-cell.gemspec
31
31
  homepage: https://github.com/guzmanem/ruby-lsp-cell
32
32
  licenses:
33
33
  - MIT
@@ -1,48 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- lib = File.expand_path("lib", __dir__)
4
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
- require "ruby_lsp/cell/version"
6
-
7
- Gem::Specification.new do |spec|
8
- spec.name = "ruby-lsp-cell"
9
- spec.version = RubyLsp::Cell::VERSION
10
- spec.authors = ["Edgar Guzmán"]
11
- spec.email = ["guzmanem@hotmail.com"]
12
-
13
- spec.summary = "Ruby LSP addon for cell-based development support"
14
- spec.description = "A Ruby LSP extension that provides additional language server features for cell-based development workflows"
15
- spec.homepage = "https://github.com/guzmanem/ruby-lsp-cell"
16
- spec.license = "MIT"
17
- spec.required_ruby_version = ">= 3.0.0"
18
-
19
- spec.metadata["homepage_uri"] = spec.homepage
20
- spec.metadata["source_code_uri"] = "https://github.com/guzmanem/ruby-lsp-cell"
21
- spec.metadata["changelog_uri"] = "https://github.com/guzmanem/ruby-lsp-cell/blob/main/CHANGELOG.md"
22
- spec.metadata["rubygems_mfa_required"] = "true"
23
-
24
- # Specify which files should be added to the gem when it is released.
25
- spec.files = Dir.chdir(__dir__) do
26
- %x(git ls-files -z).split("\x0").reject do |f|
27
- (File.expand_path(f) == __FILE__) ||
28
- f.start_with?(
29
- "bin/",
30
- "test/",
31
- "spec/",
32
- "features/",
33
- "examples/",
34
- ".git",
35
- ".circleci",
36
- "rubocop.yml",
37
- "appveyor",
38
- "Gemfile",
39
- "misc/",
40
- "sorbet/",
41
- )
42
- end
43
- end
44
-
45
- spec.bindir = "exe"
46
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
47
- spec.require_paths = ["lib"]
48
- end