platformos-check 0.4.3 → 0.4.4

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: f12754f0e3326691fee2d9617ccf751a81081cbd70f96a3d28947cf11891a226
4
- data.tar.gz: 98ac7d17842ab1d83695a4149b8e899a2a23141e15d9059c76f5f8822d385938
3
+ metadata.gz: 2232ebaad35fcbe180ef2bf7430a1f1b14a8a292e9e83162cab6f4daa2627e77
4
+ data.tar.gz: 664d5f186a9a9af5db288b287d05cacc1134b7533c63c11255e635481d7315e7
5
5
  SHA512:
6
- metadata.gz: b16b77525b11cf49605c930eda3d4e8e09afac0eea51600361b961075c580a599059a559853b70002fd83ee1806d9b9b748f78433d42c1e69bd3eaee0a84ed03
7
- data.tar.gz: 584f000e09cac687570ed8688a8a30a7296f87dc14d1fbb44bc4dd616ae71ed6fa0cd9cfee11ee755019c82b5ffd33fcb15218f76a9941eed691cc539e69d97b
6
+ metadata.gz: 8dc44ad6b4b964108030b675ee46d883c75c4d3e8ef7262617dc2897eb7a53bf858d64b0e3ffb2ddc50a1f762bf9fbe6371c630d9a64c5358a5152e0a52e7901
7
+ data.tar.gz: 6c86d9c6e458117f9f25c0563fbe33d7f3792f5b9129671f8e30fe539b0d02cd9faedd77491c091e5c608d1e296a0bb9bc86c236b10f2cc10aa7711ac22f2f1f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ v0.4.4 / 2023-12-04
2
+ ==================
3
+
4
+ * Fix displaying description for filters
5
+
1
6
  v0.4.3 / 2023-09-25
2
7
  ==================
3
8
 
data/Makefile CHANGED
@@ -2,13 +2,13 @@ IMAGE_NAMES := lsp check
2
2
  BUILD_TARGETS := $(patsubst %,build-%,$(IMAGE_NAMES))
3
3
  PUSH_TARGETS := $(patsubst %,push-%,$(IMAGE_NAMES))
4
4
 
5
- VERSION=0.0.1
5
+ VERSION=$(shell ruby -r ./lib/platformos_check/version.rb -e "puts PlatformosCheck::VERSION")
6
6
 
7
7
  IMAGE_NAME=platformos/platformos
8
8
 
9
9
  build: $(BUILD_TARGETS)
10
10
  build-%:
11
- docker build -t ${IMAGE_NAME}-$*:${VERSION} -f docker/$*.Dockerfile .
11
+ docker build --build-arg VERSION=${VERSION} -t ${IMAGE_NAME}-$*:${VERSION} -f docker/$*.Dockerfile .
12
12
  docker tag ${IMAGE_NAME}-$*:${VERSION} ${IMAGE_NAME}-$*:latest
13
13
 
14
14
  push: $(PUSH_TARGETS)
data/README.md CHANGED
@@ -80,7 +80,7 @@ exec docker run -i \
80
80
  -e PLATFORMOS_CHECK_DEBUG_LOG_FILE=$LOG_FILE \
81
81
  $IMAGE_NAME $@
82
82
  ```
83
- This script will automatically download the latest Docker image and initiate a language server. Visual Studio Code (VSC) manages this process automatically. However, you can run the script for verification if needed."
83
+ This script will automatically download the latest Docker image and initiate a language server. Visual Studio Code (VSC) manages this process automatically. However, you can run the script for verification if needed.
84
84
 
85
85
  #### Troubleshooting
86
86
 
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "platformos-check", "~> 0.4.3"
@@ -0,0 +1,15 @@
1
+ # Info
2
+
3
+ This allow you to pack lsp server into one exe file without any dependencies.
4
+
5
+ ## Building exe
6
+
7
+ - To build exe file you need windows
8
+ - install ruby 3.2 installed(https://rubyinstaller.org/)
9
+ - install `ocran` gem `gem install ocran`
10
+ - copy this project
11
+ - run `bundle install`
12
+ - run in bash cmd `build.sh` it will generate `lsp.exe` file.
13
+
14
+
15
+ #TODO: create github action for building exe file https://github.com/ruby/setup-ruby
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env sh
2
+
3
+ ocran run.rb --output lsp.exe --add-all-core --gemfile ./Gemfile --no-dep-run --gem-full --gem-full=platformos-check --console \
4
+ --gem-file /c/Ruby32-x64/bin/etc/ssl \
5
+ --dll ruby_builtin_dlls/libyaml-0-2.dll \
6
+ --dll ruby_builtin_dlls/zlib1.dll \
7
+ --dll ruby_builtin_dlls/libssl-3-x64.dll \
8
+ --dll ruby_builtin_dlls/libcrypto-3-x64.dll \
9
+ --dll ruby_builtin_dlls/libgmp-10.dll \
10
+ --dll ruby_builtin_dlls/libyaml-0-2.dll \
11
+ --dll ruby_builtin_dlls/libffi-8.dll \
12
+ --dll ruby_builtin_dlls/libssl-3-x64.dll \
13
+ --dll ruby_builtin_dlls/libgcc_s_seh-1.dll \
14
+ --dll ruby_builtin_dlls/libwinpthread-1.dll \
15
+ --dll ruby_builtin_dlls/zlib1.dll
Binary file
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'platformos_check'
4
+
5
+ status_code = PlatformosCheck::LanguageServer.start
6
+ exit! status_code