lsp-client 0.0.0

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.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +5 -0
  3. data/README.md +17 -0
  4. data/lib/lsp-client/version.rb +5 -0
  5. metadata +61 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: e6509fc43bc8befc7251b575f50b29daaa5816892d523c2fbe96e93e85c6b536
4
+ data.tar.gz: d2e0c21a1396f28a3055f792136d8f3e319c41e5b9a1fe95e62da664b590e2df
5
+ SHA512:
6
+ metadata.gz: 91de1f41d6bba2f453b1222d76e3e713bedcaa8fb761f2d8ffb255be8babbcfbe7ad3557db562b17bd1f6a7236c1f752c3f69ab497015bf7ecc50b5c1a5364e2
7
+ data.tar.gz: 42d126422f7d5865f1d6d519164aa65a54e51e905bbedbfbef758b4d08140f8d2882f7fc54248598de4eaa2ef2dc933c12cda3c88ea1a730e40cd6e69d7ad7ea
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gemspec
data/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # LSP Client
2
+
3
+ A Ruby client for the Language Server Protocol (LSP).
4
+
5
+ ## Installation
6
+
7
+ Add the gem to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem "lsp-client"
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ ```shell
16
+ $ bundle
17
+ ```
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module LSPClient
4
+ VERSION = "0.0.0"
5
+ end
metadata ADDED
@@ -0,0 +1,61 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lsp-client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Alexandre Terrasa
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-05-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 2.2.10
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 2.2.10
27
+ description:
28
+ email:
29
+ - ruby@shopify.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - Gemfile
35
+ - README.md
36
+ - lib/lsp-client/version.rb
37
+ homepage: https://github.com/Shopify/lsp-client
38
+ licenses:
39
+ - MIT
40
+ metadata:
41
+ allowed_push_host: https://rubygems.org
42
+ post_install_message:
43
+ rdoc_options: []
44
+ require_paths:
45
+ - lib
46
+ required_ruby_version: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: 2.7.0
51
+ required_rubygems_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ requirements: []
57
+ rubygems_version: 3.3.7
58
+ signing_key:
59
+ specification_version: 4
60
+ summary: A Ruby client for Language Server Protocol (LSP)
61
+ test_files: []