lsp-protocol 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fded7d142743940e36e6b8a38630cae77df4fc6f243436e32e9a513d00363293
4
- data.tar.gz: 951ea21544f22fc937cf6a795eb71b0e01867511dfeae72a73193ac731e235c6
3
+ metadata.gz: 6adcb76cfa923e5f65504e13f90a684eb0340aa8419c692bf8c0f6c6f170160a
4
+ data.tar.gz: 75bb1bc7d814e036001c9765555cc3ec51aaf3ccc75a54dcf691491109cd9768
5
5
  SHA512:
6
- metadata.gz: 3f3457bcca090879e4f21506f78bab7813c64ba01b8c20d8bcccbaae8f0436602524e708c5a0a7eb1434eecaeeccb55831f08ff437ece95d44119cae7ca94724
7
- data.tar.gz: b5592d39d55e99be34d1f01decc93097edcf3964135e0e25aad5c71ec08d426071f2d68d3804f7ab896b4e69653e3df261708a017f58e9ca2c35c8c57a0031ca
6
+ metadata.gz: f3e50d68cc7a5685e9b38002f67172870e1e002b3fae240c5f61edba667ef1abd27968bacfed09928cdda8b397464227b86b0765fd75594839aecb33f1922964
7
+ data.tar.gz: 2880c1a7b1ec7839ab312774ae7d44511536171144534ef54b9f774187cbdcd8405c802f7a5b20d39ad31e8fb1fc75db1f16be9abe9ebec6ac0e44b78615d241
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lsp-protocol (0.0.4)
4
+ lsp-protocol (0.0.5)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/lib/lsp.rb CHANGED
@@ -6,11 +6,10 @@ module Lsp
6
6
  VersionedTextDocumentIdentifier = Struct.new(:uri, :version)
7
7
  TextDocumentPositionParams = Struct.new(:text_document, :position)
8
8
  InitializeRequest = Struct.new(:root_uri)
9
- CompletionItem = Struct.new(:label, :text_edit) do
9
+ CompletionItem = Struct.new(:label) do
10
10
  def to_h
11
11
  {
12
12
  label: label,
13
- textEdit: text_edit.to_h,
14
13
  }
15
14
  end
16
15
  end
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'lsp-protocol'
7
- spec.version = '0.0.5'
7
+ spec.version = '0.0.6'
8
8
  spec.licenses = ['MIT']
9
9
  spec.authors = ['Rafał Łasocha']
10
10
  spec.email = 'lsp@swistak35.com'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lsp-protocol
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rafał Łasocha
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-09-06 00:00:00.000000000 Z
11
+ date: 2018-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler