ruby-lsp-doclinks 0.1.1 → 0.1.3

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: db54e7e5f3e3bfc9428d8a31d8c6550481a5fc2930012d1f8205c5f9722ccc8e
4
- data.tar.gz: 656afe8483775c656c56482007123941add55b3ca7f7a4a71364210e4525a3f5
3
+ metadata.gz: 6cb2415735db78487975413f1f294cd3a85c8fcc43475b37f233c3a58576a408
4
+ data.tar.gz: ac50c6f6bd6c1b6ee9ca39ff61cfe3277b4569e26fa952ca0b0de74a7911fd8e
5
5
  SHA512:
6
- metadata.gz: 77d8bd070678adf7466abbba4525a9bd9cf48ee73ef9fe98b4f4b8adc04a38038e82168efd016e42ceed00c8d934e5c73a187a9c92c9d2ee4207f24b51260bd2
7
- data.tar.gz: '0159da4748b0be1bc728a932fa3091d0be62c01e838a05e985e4b90993e2ae0bda0bc04af0e13313a47f0763abd7180c221f64d6fa342a0ac3eb67269ada495c'
6
+ metadata.gz: bbeb3f968b46875007ef2e8feaf9a95384c310ae79b6b7cc608e8407ab3661ece83f338502cbe9753037569ac29fb5a5b851b1f56839478c95375900a73d18d7
7
+ data.tar.gz: c7f1e318db94512e7c86e133fa0fee91ac59070901010a2453a517545e1164b6b3f73b587f1f8459144bb6186df3a7223eab64f049b9e961e19d3eb2001a006a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ =## [0.1.3] - 2025-03-25
2
+
3
+ - Remove debug logging
4
+ - Fix sorbet
5
+ - Fix CI
6
+
7
+ =## [0.1.2] - 2025-03-25
8
+
9
+ - Fix missing require
10
+
1
11
  =## [0.1.1] - 2025-03-25
2
12
 
3
13
  - Fix bad constant
data/README.md CHANGED
@@ -45,6 +45,8 @@ If you'd like to use a yard server or something custom, you can customize the do
45
45
 
46
46
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
47
47
 
48
+ Note: The `Gemfile.lock` is included in version control for development purposes only. It helps ensure consistent development dependencies across different environments. This file is not part of the gem package and is not updated during gem releases.
49
+
48
50
  You can point your project to a path based version of the gem with an entry in your Gemfile like:
49
51
  ```
50
52
  gem "ruby-lsp-doclinks", path: "~/myprojects/ruby-lsp-doclinks"
@@ -1,7 +1,10 @@
1
1
  # frozen_string_literal: true
2
+ # typed: true
3
+
2
4
 
3
5
  require "ruby_lsp/addon"
4
6
  require "ruby_lsp/requests/support/common"
7
+ require "ruby_lsp/doclinks/version"
5
8
 
6
9
  module RubyLsp
7
10
  module Doclinks
@@ -36,7 +39,7 @@ module RubyLsp
36
39
  end
37
40
 
38
41
  def version
39
- "0.1.0"
42
+ RubyLsp::Doclinks::VERSION
40
43
  end
41
44
 
42
45
  def create_hover_listener(response_builder, node_context, dispatcher)
@@ -59,44 +62,36 @@ module RubyLsp
59
62
  end
60
63
 
61
64
  def on_constant_read_node_enter(node)
62
- # $stderr.puts "#{name} addon handling on_constant_read_node_enter: #{node.inspect} slice=#{node&.slice&.inspect}"
63
65
  constant = node.slice
64
66
  handle_constant(constant)
65
67
  end
66
68
 
67
69
  def on_constant_path_node_enter(node)
68
- # $stderr.puts "#{name} addon handling on_constant_path_node_enter: #{node.inspect} slice=#{node&.slice&.inspect}"
69
70
  # Handle nested constants like Foo::Bar
70
71
  constant = node.slice
71
72
  handle_constant(constant)
72
73
  end
73
74
 
74
75
  def on_call_node_enter(node)
75
- # $stderr.puts "#{name} addon handling on_call_node_enter: #{node.name} receiver_slice=#{node&.receiver&.slice&.inspect}"
76
76
  # Handle method calls
77
77
  constant = node.receiver&.slice
78
78
  method = node.name
79
- # $stderr.puts "#{name} addon constant=#{constant} method=#{method} node=#{node.inspect}"
80
79
  handle_constant(constant, method)
81
80
  end
82
81
 
83
82
  private
84
83
 
85
84
  def handle_constant(constant, method_name = nil)
86
- # $stderr.puts "#{name} addon handling: #{constant}#{method_name ? "##{method_name}" : ""}"
87
85
  return unless constant && !constant.empty?
88
86
 
89
87
  # Check if the word is a gem constant
90
88
  gem_info = find_gem_for_constant(constant)
91
- # $stderr.puts "#{name} addon gem_info: #{gem_info.inspect}"
92
89
  return unless gem_info
93
90
 
94
91
  # Generate documentation link based on configuration
95
92
  doc_link = generate_doc_link(gem_info, constant, method_name)
96
- # $stderr.puts "#{name} addon doc_link: #{doc_link}"
97
93
  return unless doc_link
98
94
 
99
- # $stderr.puts "#{name} addon adding hover response"
100
95
  display_name = method_name ? "#{constant}##{method_name}" : constant
101
96
  content = "\n[View documentation for #{display_name}](#{doc_link})"
102
97
  @response_builder.push(content, category: :documentation)
@@ -120,16 +115,14 @@ module RubyLsp
120
115
  next if path.nil? || path.empty?
121
116
 
122
117
  Dir.glob("#{path}/**/*.rb").any? do |file|
123
- next if file.nil?
124
-
125
118
  begin
126
119
  content = File.read(file)
127
- next if content.nil? || content.empty?
120
+ next if content.empty?
128
121
 
129
122
  # Look for class/module definitions with the exact constant name
130
123
  content.match?(/\b(?:class|module)\s+#{Regexp.escape(constant_name)}\b/)
131
124
  rescue => e
132
- $stderr.puts "Error reading file #{file}: #{e.message}"
125
+ # $stderr.puts "Doclinks error reading file #{file}: #{e.message}"
133
126
  false
134
127
  end
135
128
  end
@@ -156,7 +149,7 @@ module RubyLsp
156
149
  constant: constant.gsub("::", "/"),
157
150
  method: "#{method_name}#{method_type}"
158
151
  }
159
- $stderr.puts "#{name} addon doc_url for source=#{source}: #{doc_url}"
152
+ # $stderr.puts "Doclinks addon doc_url for source=#{source}: #{doc_url}"
160
153
 
161
154
  doc_url
162
155
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RubyLsp
4
4
  module Doclinks
5
- VERSION = "0.1.1"
5
+ VERSION = "0.1.3"
6
6
  end
7
7
  end
data/sorbet/rbi/todo.rbi CHANGED
@@ -11,5 +11,5 @@ module ActiveSupport::Multibyte::Chars; end
11
11
  module ActiveSupport::SafeBuffer; end
12
12
  module ActiveSupport::StringInquirer; end
13
13
  module ActiveSupport::TimeZone; end
14
- module RubyLsp::Addon; end
14
+ class RubyLsp::Addon; end
15
15
  module RubyLsp::Doclinks::Hover::Requests::Support::Common; end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-lsp-doclinks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Conway