Update to Ruby 3.2.2 and wordexp 0.2.0

This commit is contained in:
Sami Samhuri 2023-10-05 14:48:16 -07:00
parent 996feaf62c
commit 03fc5c512f
4 changed files with 35 additions and 26 deletions

View file

@ -1 +1 @@
3.1.0 3.2.2

View file

@ -1,7 +1,7 @@
source 'https://rubygems.org' source 'https://rubygems.org'
ruby '3.1.0' ruby '3.2.2'
gem 'minitest', '~> 5.15' gem 'minitest', '~> 5.20'
gem 'rake', '~> 13.0' gem 'rake', '~> 13.0'
gem 'rubocop', '1.24.1' gem 'rubocop', '1.56.4'
gem 'wordexp', '~> 0.1' gem 'wordexp', '~> 0.2'

View file

@ -2,41 +2,50 @@ GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
ast (2.4.2) ast (2.4.2)
minitest (5.15.0) base64 (0.1.1)
parallel (1.21.0) json (2.6.3)
parser (3.1.0.0) language_server-protocol (3.17.0.3)
minitest (5.20.0)
parallel (1.23.0)
parser (3.2.2.4)
ast (~> 2.4.1) ast (~> 2.4.1)
racc
racc (1.7.1)
rainbow (3.1.1) rainbow (3.1.1)
rake (13.0.6) rake (13.0.6)
regexp_parser (2.2.0) regexp_parser (2.8.1)
rexml (3.2.5) rexml (3.2.6)
rubocop (1.24.1) rubocop (1.56.4)
base64 (~> 0.1.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10) parallel (~> 1.10)
parser (>= 3.0.0.0) parser (>= 3.2.2.3)
rainbow (>= 2.2.2, < 4.0) rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0) regexp_parser (>= 1.8, < 3.0)
rexml rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.15.1, < 2.0) rubocop-ast (>= 1.28.1, < 2.0)
ruby-progressbar (~> 1.7) ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0) unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.15.1) rubocop-ast (1.29.0)
parser (>= 3.0.1.1) parser (>= 3.2.1.0)
ruby-progressbar (1.11.0) ruby-progressbar (1.13.0)
unicode-display_width (2.1.0) unicode-display_width (2.5.0)
wordexp (0.1.1) wordexp (0.2.0)
PLATFORMS PLATFORMS
arm64-darwin-21 arm64-darwin-21
arm64-darwin-22 arm64-darwin-22
arm64-darwin-23
DEPENDENCIES DEPENDENCIES
minitest (~> 5.15) minitest (~> 5.20)
rake (~> 13.0) rake (~> 13.0)
rubocop (= 1.24.1) rubocop (= 1.56.4)
wordexp (~> 0.1) wordexp (~> 0.2)
RUBY VERSION RUBY VERSION
ruby 3.1.0p0 ruby 3.2.2p53
BUNDLED WITH BUNDLED WITH
2.4.6 2.4.20

View file

@ -1,6 +1,6 @@
#!/usr/bin/env ruby -w #!/usr/bin/env ruby -w
require 'English' require 'English'
require_relative './shell' require_relative 'shell'
Shell::CLI.new.run(args: ARGV) if $PROGRAM_NAME == __FILE__ Shell::CLI.new.run(args: ARGV) if $PROGRAM_NAME == __FILE__