orbacle 0.2.0 → 0.2.1

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: 7b916d0faf99f58f268106d55916e43a08023beb458ecafc81888902e523c025
4
- data.tar.gz: a0846bb91366f78cbcb91077ddbf7454d47ce3e5660640d82046e545a305a001
3
+ metadata.gz: c6960f413f8f7a17987f7323fffb0e6616d55227d669090157ba7687de3e0396
4
+ data.tar.gz: 6657c82410cdde65c3f1752b356eed50d5bb145c2ee4a2bc7f35afb74f0d01a6
5
5
  SHA512:
6
- metadata.gz: 0ccce4920723ee351415d28ddb6d90f7afb72f015f3d3297d62c99f9fb3edcc918591e5e80546ddb558aa53e3d355dc366a8a4f286f7942c48abd4605b933323
7
- data.tar.gz: 5fc9bcfa9a643a76e44ec3589ead8aa70a31fb83c867a6d7ccef2fa39c1016b8dbbda56c4acaa417a4da604450ee9011baadee1647478d61782aeac5d58a90a5
6
+ metadata.gz: 4a510a983ab7ead7c825069744fc60086979423ff8a6b7523c99d39851460e5945942deb6d9260e820a57c92bcbadcb195ded4f0db007825138ed7837989fbc0
7
+ data.tar.gz: 77a34fb83e151e869ca7f161560e36a4941971ed3f1f697b553a35e88154301d464992075bc826db25cdfc283445c24b3807ef0b7f135a13138a089ea13675e3
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- orbacle (0.2.0)
4
+ orbacle (0.2.1)
5
5
  lsp-protocol (= 0.0.7)
6
6
  parser (~> 2.4.0.2)
7
7
  priority_queue_cxx
data/Makefile CHANGED
@@ -35,6 +35,6 @@ build:
35
35
  @gem build orbacle.gemspec
36
36
 
37
37
  install: build
38
- @gem install orbacle-0.2.0.gem
38
+ @gem install orbacle-0.2.1.gem
39
39
 
40
40
  full: setup build install
@@ -18,9 +18,22 @@ module Orbacle
18
18
  attr_reader :dir, :stats_file
19
19
 
20
20
  def define_options(parser)
21
- parser.banner = 'Usage: ./orbacle [options]'
21
+ parser.banner = <<~EOF
22
+ Usage: orbaclerun [options] <command>
22
23
 
23
- parser.on('-d DIR', '--dir', 'Directory in which project resides') do |dir|
24
+ Available commands:
25
+
26
+ index
27
+ test-run of the indexing on your project. You can use that command to check how long the project will be indexed and whether the indexing is successful.
28
+
29
+ file-server
30
+ starts the server working on standard IO. This is the command you want to setup in your editor with LSP plugin.
31
+
32
+ Options:
33
+
34
+ EOF
35
+
36
+ parser.on('-d DIR', '--dir', 'Directory in which your project resides') do |dir|
24
37
  @dir = dir
25
38
  end
26
39
 
@@ -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 = 'orbacle'
7
- spec.version = '0.2.0'
7
+ spec.version = '0.2.1'
8
8
  spec.licenses = ['MIT']
9
9
  spec.authors = ['Rafał Łasocha']
10
10
  spec.email = 'orbacle@swistak35.com'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: orbacle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rafał Łasocha
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-11-11 00:00:00.000000000 Z
11
+ date: 2018-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: priority_queue_cxx