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