From b460cfe5375b3b3ca3e736c041143414862781de Mon Sep 17 00:00:00 2001 From: Earlopain <14981592+Earlopain@users.noreply.github.com> Date: Fri, 3 Nov 2023 16:34:53 +0100 Subject: [PATCH 1/3] Add rbs mention to readme (#693) --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d242b2558..dfb02f8e0 100755 --- a/README.md +++ b/README.md @@ -71,6 +71,8 @@ As of version 0.33.0, Solargraph includes a [type checker](https://github.com/ca ### Updating Core Documentation +As of version 0.49.0, Solargraph uses [rbs](https://github.com/ruby/rbs) for core and stdlib documentation. The following only applies to prior versions. + The Solargraph gem ships with documentation for Ruby 2.2.2. You can download documentation for other Ruby versions from the command line. $ solargraph list-cores # List the installed documentation versions From b02db5a2b250a5e752825fdd6c6bf56dd9dd26de Mon Sep 17 00:00:00 2001 From: Earlopain <14981592+Earlopain@users.noreply.github.com> Date: Fri, 3 Nov 2023 16:35:47 +0100 Subject: [PATCH 2/3] Remove Atom from the readme (#692) --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index dfb02f8e0..51e3521f4 100755 --- a/README.md +++ b/README.md @@ -28,10 +28,6 @@ Plug-ins and extensions are available for the following editors: * Extension: https://marketplace.visualstudio.com/items?itemName=castwide.solargraph * GitHub: https://github.com/castwide/vscode-solargraph -* **Atom** - * Package: https://atom.io/packages/ruby-solargraph - * GitHub: https://github.com/castwide/atom-solargraph - * **Sublime Text** * Extension: https://packagecontrol.io/packages/LSP * GitHub: https://github.com/sublimelsp/LSP From 254b79504c6b4f05d243502c78b829e0aa26e08d Mon Sep 17 00:00:00 2001 From: Earlopain <14981592+Earlopain@users.noreply.github.com> Date: Fri, 3 Nov 2023 16:37:45 +0100 Subject: [PATCH 3/3] Add more metadata to the gemspec (#691) --- solargraph.gemspec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/solargraph.gemspec b/solargraph.gemspec index 4e6ddde61..7be8dcb73 100755 --- a/solargraph.gemspec +++ b/solargraph.gemspec @@ -16,7 +16,10 @@ Gem::Specification.new do |s| s.homepage = 'https://solargraph.org' s.license = 'MIT' s.executables = ['solargraph'] - s.metadata["funding_uri"] = "https://www.patreon.com/castwide" + s.metadata["funding_uri"] = "https://www.patreon.com/castwide" + s.metadata["bug_tracker_uri"] = "https://github.com/castwide/solargraph/issues" + s.metadata["changelog_uri"] = "https://github.com/castwide/solargraph/blob/master/CHANGELOG.md" + s.metadata["source_code_uri"] = "https://github.com/castwide/solargraph" s.required_ruby_version = '>= 2.6'