code-ruby 0.15.16 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +10 -9
  3. data/VERSION +1 -1
  4. data/bin/code +1 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 441325308911e5cba82286bbc9a4be1d33c03b25210dbaeb818bf78c97ce12e4
4
- data.tar.gz: 3b56769984fc4ffa5a1e9a036bfbac8393462dc1e22033804627764aa3b7aabf
3
+ metadata.gz: c8fd1137d78771da7054494333cedcdf9ebb4d45402112d2694d227e4d44739b
4
+ data.tar.gz: f494bfe408b64cd08e39f300b499d1634c8ec59534519306658d44ef908c2f72
5
5
  SHA512:
6
- metadata.gz: c8d1677af87363f60d2a2321af4539b8912f6c36f3185b7c8bc142ec2470853ea6f5884df3712903ae45cef4da168603620b7f1c9398b99fcd091c90d6a92a82
7
- data.tar.gz: 1ab4328234974b7bd6501af777b5be1e6f76d8398927dd21fc6dfd18d210b19791462793973e7ec3b11dce4941733c9dc60fd0d353da2a59dbca17d5c8a40dac
6
+ metadata.gz: 641adcd7f50838888057e7f2c84464d89641a5648136a00f18955ae2128d35b59ac7d2a780544c0a3cf2f917110e7417cbe9dfc4d1f9c494eac80cf313abe2b4
7
+ data.tar.gz: d42e4ab20e52db2ab7cbde25b12c43810ef8441076954cbe3fbf7fba6abb1ae861af48ea0b85b85d037e26c77aeb96cc4c6b26a96f42e651ea3e33ee4845ca89
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- code-ruby (0.15.16)
4
+ code-ruby (1.0.0)
5
5
  activesupport
6
6
  bigdecimal
7
7
  did-you-mean
@@ -13,7 +13,7 @@ PATH
13
13
  GEM
14
14
  remote: https://rubygems.org/
15
15
  specs:
16
- activesupport (7.2.0)
16
+ activesupport (7.2.1)
17
17
  base64
18
18
  bigdecimal
19
19
  concurrent-ruby (~> 1.0, >= 1.3.1)
@@ -27,7 +27,7 @@ GEM
27
27
  ast (2.4.2)
28
28
  base64 (0.2.0)
29
29
  bigdecimal (3.1.8)
30
- bundler-audit (0.9.1)
30
+ bundler-audit (0.9.2)
31
31
  bundler (>= 1.2.0, < 3)
32
32
  thor (~> 1.0)
33
33
  concurrent-ruby (1.3.4)
@@ -35,16 +35,17 @@ GEM
35
35
  did-you-mean (0.1.1)
36
36
  levenshtein (>= 0.2.0)
37
37
  diff-lcs (1.5.1)
38
- dorian-arguments (0.3.0)
38
+ dorian-arguments (0.4.1)
39
39
  activesupport
40
40
  bigdecimal
41
41
  dorian-to_struct
42
- dorian-to_struct (0.5.0)
42
+ dorian-to_struct (0.6.0)
43
43
  drb (2.2.1)
44
44
  i18n (1.14.5)
45
45
  concurrent-ruby (~> 1.0)
46
46
  json (2.7.2)
47
- language-ruby (0.9.2)
47
+ language-ruby (0.9.3)
48
+ dorian-arguments
48
49
  zeitwerk
49
50
  language_server-protocol (3.17.0.3)
50
51
  levenshtein (0.2.2)
@@ -59,7 +60,7 @@ GEM
59
60
  rainbow (3.1.1)
60
61
  rake (13.2.1)
61
62
  regexp_parser (2.9.2)
62
- rexml (3.3.5)
63
+ rexml (3.3.6)
63
64
  strscan
64
65
  rspec (3.13.0)
65
66
  rspec-core (~> 3.13.0)
@@ -93,10 +94,10 @@ GEM
93
94
  rubocop-performance (1.21.1)
94
95
  rubocop (>= 1.48.1, < 2.0)
95
96
  rubocop-ast (>= 1.31.1, < 2.0)
96
- rubocop-rails (2.25.1)
97
+ rubocop-rails (2.26.0)
97
98
  activesupport (>= 4.2.0)
98
99
  rack (>= 1.1)
99
- rubocop (>= 1.33.0, < 2.0)
100
+ rubocop (>= 1.52.0, < 2.0)
100
101
  rubocop-ast (>= 1.31.1, < 2.0)
101
102
  rubocop-rails-omakase (1.0.0)
102
103
  rubocop
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.15.16
1
+ 1.0.0
data/bin/code CHANGED
@@ -40,7 +40,7 @@ input += parsed.files.map { |file| File.read(file) }.join
40
40
 
41
41
  abort parsed.help if input.empty?
42
42
 
43
- profile = parsed.options.profile || parsed.options.profiler
43
+ profile = parsed.options.profile || !parsed.options.profiler.empty?
44
44
  require "ruby-prof" if profile
45
45
 
46
46
  RubyProf.start if profile
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: code-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.16
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dorian Marié
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-22 00:00:00.000000000 Z
11
+ date: 2024-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport