Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ on:
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v7
- uses: ruby/setup-ruby@v1
with:
ruby-version: "4.0"
- name: Install
run: make install
ruby-version: .ruby-version
bundler-cache: true
- name: Run linter
run: make lint
- name: Run tests
Expand Down
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4.0.6
16 changes: 9 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,25 @@ GEM
ast (2.4.3)
drb (2.2.3)
hexlet-pairs (1.1.0)
json (2.20.0)
language_server-protocol (3.17.0.5)
json (2.21.2)
language_server-protocol (3.17.0.6)
lint_roller (1.1.0)
minitest (6.0.6)
drb (~> 2.0)
prism (~> 1.5)
minitest-power_assert (0.3.1)
minitest
power_assert (>= 1.1)
parallel (1.28.0)
parser (3.3.11.1)
parallel (2.1.0)
parser (3.3.12.0)
ast (~> 2.4.1)
racc
power_assert (3.0.1)
prism (1.9.0)
racc (1.8.1)
rainbow (3.1.1)
regexp_parser (2.12.0)
rubocop (1.88.0)
rubocop (1.89.0)
json (~> 2.3)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.1.0)
Expand All @@ -38,7 +38,7 @@ GEM
rubocop-ast (>= 1.49.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 4.0)
rubocop-ast (1.49.1)
rubocop-ast (1.50.0)
parser (>= 3.3.7.2)
prism (~> 1.7)
ruby-progressbar (1.13.0)
Expand All @@ -47,7 +47,9 @@ GEM
unicode-emoji (4.2.0)

PLATFORMS
aarch64-linux
ruby
x86_64-linux

DEPENDENCIES
hexlet-pairs (~> 1.1.0)
Expand All @@ -56,4 +58,4 @@ DEPENDENCIES
rubocop (~> 1.88)

BUNDLED WITH
4.0.6
4.0.16
2 changes: 1 addition & 1 deletion hexlet-points.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
spec.description = "A SICP'ish Points implemented in Ruby using hexlet-pairs."
spec.homepage = "https://github.com/hexlet-components/ruby-points"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 3.0")
spec.required_ruby_version = Gem::Requirement.new(">= 4.0")

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/hexlet-components/ruby-points"
Expand Down