mirror of
https://github.com/samsonjs/wordexp.git
synced 2026-04-27 14:57:42 +00:00
Merge pull request #117 from samsonjs/update-dependencies
Update dependency and relax rubocop versions
This commit is contained in:
commit
4b224d0db2
3 changed files with 25 additions and 29 deletions
|
|
@ -4,7 +4,7 @@ executors:
|
||||||
parameters:
|
parameters:
|
||||||
version:
|
version:
|
||||||
description: "Ruby version number"
|
description: "Ruby version number"
|
||||||
default: "3.3.3"
|
default: "3.3.5"
|
||||||
type: string
|
type: string
|
||||||
docker:
|
docker:
|
||||||
- image: cimg/ruby:<< parameters.version >>
|
- image: cimg/ruby:<< parameters.version >>
|
||||||
|
|
@ -15,7 +15,7 @@ commands:
|
||||||
parameters:
|
parameters:
|
||||||
version:
|
version:
|
||||||
description: "Ruby version number"
|
description: "Ruby version number"
|
||||||
default: "3.3.3"
|
default: "3.3.5"
|
||||||
type: string
|
type: string
|
||||||
steps:
|
steps:
|
||||||
- restore_cache:
|
- restore_cache:
|
||||||
|
|
@ -44,7 +44,7 @@ jobs:
|
||||||
parameters:
|
parameters:
|
||||||
version:
|
version:
|
||||||
description: "Ruby version number"
|
description: "Ruby version number"
|
||||||
default: "3.3.3"
|
default: "3.3.5"
|
||||||
type: string
|
type: string
|
||||||
executor:
|
executor:
|
||||||
name: ruby
|
name: ruby
|
||||||
|
|
@ -65,14 +65,14 @@ workflows:
|
||||||
- test:
|
- test:
|
||||||
matrix:
|
matrix:
|
||||||
parameters:
|
parameters:
|
||||||
version: ["3.1.6", "3.2.4", "3.3.3"]
|
version: ["3.1.6", "3.2.5", "3.3.5"]
|
||||||
cron-workflow:
|
cron-workflow:
|
||||||
jobs:
|
jobs:
|
||||||
- rubocop
|
- rubocop
|
||||||
- test:
|
- test:
|
||||||
matrix:
|
matrix:
|
||||||
parameters:
|
parameters:
|
||||||
version: ["3.1.6", "3.2.4", "3.3.3"]
|
version: ["3.1.6", "3.2.5", "3.3.5"]
|
||||||
triggers:
|
triggers:
|
||||||
- schedule:
|
- schedule:
|
||||||
cron: "0 13 * * 6"
|
cron: "0 13 * * 6"
|
||||||
|
|
|
||||||
10
Gemfile
10
Gemfile
|
|
@ -6,8 +6,8 @@ gem 'minitest-ci', '~> 3.4'
|
||||||
gem 'minitest-reporters', '~> 1.6'
|
gem 'minitest-reporters', '~> 1.6'
|
||||||
gem 'rake', '~> 13.2'
|
gem 'rake', '~> 13.2'
|
||||||
gem 'rake-compiler', '~> 1.2'
|
gem 'rake-compiler', '~> 1.2'
|
||||||
gem 'rubocop', '1.65.1'
|
gem 'rubocop', '~> 1.66'
|
||||||
gem 'rubocop-minitest', '0.35.1'
|
gem 'rubocop-minitest', '~> 0.36'
|
||||||
gem 'rubocop-packaging', '0.5.2'
|
gem 'rubocop-packaging', '~> 0.5'
|
||||||
gem 'rubocop-performance', '1.21.1'
|
gem 'rubocop-performance', '~> 1.22'
|
||||||
gem 'rubocop-rake', '0.6.0'
|
gem 'rubocop-rake', '~> 0.6'
|
||||||
|
|
|
||||||
34
Gemfile.lock
34
Gemfile.lock
|
|
@ -11,7 +11,7 @@ GEM
|
||||||
builder (3.3.0)
|
builder (3.3.0)
|
||||||
json (2.7.2)
|
json (2.7.2)
|
||||||
language_server-protocol (3.17.0.3)
|
language_server-protocol (3.17.0.3)
|
||||||
minitest (5.25.0)
|
minitest (5.25.1)
|
||||||
minitest-ci (3.4.0)
|
minitest-ci (3.4.0)
|
||||||
minitest (>= 5.0.6)
|
minitest (>= 5.0.6)
|
||||||
minitest-reporters (1.7.1)
|
minitest-reporters (1.7.1)
|
||||||
|
|
@ -19,44 +19,40 @@ GEM
|
||||||
builder
|
builder
|
||||||
minitest (>= 5.0)
|
minitest (>= 5.0)
|
||||||
ruby-progressbar
|
ruby-progressbar
|
||||||
parallel (1.26.2)
|
parallel (1.26.3)
|
||||||
parser (3.3.4.2)
|
parser (3.3.5.0)
|
||||||
ast (~> 2.4.1)
|
ast (~> 2.4.1)
|
||||||
racc
|
racc
|
||||||
racc (1.8.1)
|
racc (1.8.1)
|
||||||
rainbow (3.1.1)
|
rainbow (3.1.1)
|
||||||
rake (13.2.1)
|
rake (13.2.1)
|
||||||
rake-compiler (1.2.7)
|
rake-compiler (1.2.8)
|
||||||
rake
|
rake
|
||||||
regexp_parser (2.9.2)
|
regexp_parser (2.9.2)
|
||||||
rexml (3.3.6)
|
rubocop (1.66.1)
|
||||||
strscan
|
|
||||||
rubocop (1.65.1)
|
|
||||||
json (~> 2.3)
|
json (~> 2.3)
|
||||||
language_server-protocol (>= 3.17.0)
|
language_server-protocol (>= 3.17.0)
|
||||||
parallel (~> 1.10)
|
parallel (~> 1.10)
|
||||||
parser (>= 3.3.0.2)
|
parser (>= 3.3.0.2)
|
||||||
rainbow (>= 2.2.2, < 4.0)
|
rainbow (>= 2.2.2, < 4.0)
|
||||||
regexp_parser (>= 2.4, < 3.0)
|
regexp_parser (>= 2.4, < 3.0)
|
||||||
rexml (>= 3.2.5, < 4.0)
|
rubocop-ast (>= 1.32.2, < 2.0)
|
||||||
rubocop-ast (>= 1.31.1, < 2.0)
|
|
||||||
ruby-progressbar (~> 1.7)
|
ruby-progressbar (~> 1.7)
|
||||||
unicode-display_width (>= 2.4.0, < 3.0)
|
unicode-display_width (>= 2.4.0, < 3.0)
|
||||||
rubocop-ast (1.32.0)
|
rubocop-ast (1.32.3)
|
||||||
parser (>= 3.3.1.0)
|
parser (>= 3.3.1.0)
|
||||||
rubocop-minitest (0.35.1)
|
rubocop-minitest (0.36.0)
|
||||||
rubocop (>= 1.61, < 2.0)
|
rubocop (>= 1.61, < 2.0)
|
||||||
rubocop-ast (>= 1.31.1, < 2.0)
|
rubocop-ast (>= 1.31.1, < 2.0)
|
||||||
rubocop-packaging (0.5.2)
|
rubocop-packaging (0.5.2)
|
||||||
rubocop (>= 1.33, < 2.0)
|
rubocop (>= 1.33, < 2.0)
|
||||||
rubocop-performance (1.21.1)
|
rubocop-performance (1.22.1)
|
||||||
rubocop (>= 1.48.1, < 2.0)
|
rubocop (>= 1.48.1, < 2.0)
|
||||||
rubocop-ast (>= 1.31.1, < 2.0)
|
rubocop-ast (>= 1.31.1, < 2.0)
|
||||||
rubocop-rake (0.6.0)
|
rubocop-rake (0.6.0)
|
||||||
rubocop (~> 1.0)
|
rubocop (~> 1.0)
|
||||||
ruby-progressbar (1.13.0)
|
ruby-progressbar (1.13.0)
|
||||||
strscan (3.1.0)
|
unicode-display_width (2.6.0)
|
||||||
unicode-display_width (2.5.0)
|
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
arm64-darwin-21
|
arm64-darwin-21
|
||||||
|
|
@ -71,11 +67,11 @@ DEPENDENCIES
|
||||||
minitest-reporters (~> 1.6)
|
minitest-reporters (~> 1.6)
|
||||||
rake (~> 13.2)
|
rake (~> 13.2)
|
||||||
rake-compiler (~> 1.2)
|
rake-compiler (~> 1.2)
|
||||||
rubocop (= 1.65.1)
|
rubocop (~> 1.66)
|
||||||
rubocop-minitest (= 0.35.1)
|
rubocop-minitest (~> 0.36)
|
||||||
rubocop-packaging (= 0.5.2)
|
rubocop-packaging (~> 0.5)
|
||||||
rubocop-performance (= 1.21.1)
|
rubocop-performance (~> 1.22)
|
||||||
rubocop-rake (= 0.6.0)
|
rubocop-rake (~> 0.6)
|
||||||
wordexp!
|
wordexp!
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue