Skip to content

Commit

Permalink
Update dependencies and languages
Browse files Browse the repository at this point in the history
  • Loading branch information
mmainz committed Aug 24, 2023
1 parent ac474fa commit ca11d9a
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 54 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["3.0"]
ruby-version: ["3.2"]

steps:
- uses: actions/checkout@v2
- name: Setup Node.js 🖲
uses: actions/setup-node@v2.4.0
with:
node-version: 16.x
node-version: 20.x
check-latest: true
- run: npm ci

Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ AllCops:
- Guardfile
- bin/*
- tmp/**/*
TargetRubyVersion: 2.6
TargetRubyVersion: 3.0

Style:
Enabled: false
Expand Down
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ruby 3.0.2
nodejs 16.6.1
ruby 3.2.2
nodejs 20.5.1
62 changes: 34 additions & 28 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,48 +6,54 @@ PATH
GEM
remote: https://rubygems.org/
specs:
ast (2.4.0)
diff-lcs (1.3)
ast (2.4.2)
diff-lcs (1.5.0)
docile (1.4.0)
jaro_winkler (1.5.4)
parallel (1.19.1)
parser (2.7.0.4)
ast (~> 2.4.0)
rainbow (3.0.0)
rake (13.0.1)
rexml (3.2.5)
rspec (3.9.0)
rspec-core (~> 3.9.0)
rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.9.0)
rspec-core (3.9.1)
rspec-support (~> 3.9.1)
rspec-expectations (3.9.0)
parallel (1.23.0)
parser (3.2.2.3)
ast (~> 2.4.1)
racc
racc (1.7.1)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.8.1)
rexml (3.2.6)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
rspec-mocks (~> 3.12.0)
rspec-core (3.12.2)
rspec-support (~> 3.12.0)
rspec-expectations (3.12.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-mocks (3.9.1)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.6)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-support (3.9.2)
rubocop (0.80.1)
jaro_winkler (~> 1.5.1)
rspec-support (~> 3.12.0)
rspec-support (3.12.1)
rubocop (0.93.1)
parallel (~> 1.10)
parser (>= 2.7.0.1)
parser (>= 2.7.1.5)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8)
rexml
rubocop-ast (>= 0.6.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 1.7)
rubocop-rspec (1.38.1)
rubocop (>= 0.68.1)
ruby-progressbar (1.10.1)
unicode-display_width (>= 1.4.0, < 2.0)
rubocop-ast (1.29.0)
parser (>= 3.2.1.0)
rubocop-rspec (1.44.1)
rubocop (~> 0.87)
rubocop-ast (>= 0.7.1)
ruby-progressbar (1.13.0)
simplecov (0.22.0)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov-lcov (0.8.0)
simplecov_json_formatter (0.1.4)
unicode-display_width (1.6.1)
unicode-display_width (1.8.0)

PLATFORMS
ruby
Expand Down
28 changes: 7 additions & 21 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions valued.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ require 'valued/version'

Gem::Specification.new do |spec|
spec.name = 'valued'
spec.required_ruby_version = '>= 3.0.0'
spec.version = Valued::VERSION
spec.authors = ['Mario Mainz']
spec.email = %w[mainz.mario@googlemail.com]
Expand Down

0 comments on commit ca11d9a

Please sign in to comment.