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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1.244.0
with:
ruby-version: '3.3.7' # Match the project's .ruby-version file
ruby-version: '3.4.4' # Match the project's .ruby-version file
bundler-cache: true # Runs 'bundle install' and caches installed gems automatically

- name: Run RuboCop
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AllCops:
TargetRubyVersion: 3.3
TargetRubyVersion: 3.4
DisplayCopNames: true

PercentLiteralDelimiters:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.7
3.4.4
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Development Guidelines

This project is a MapReduce framework implemented in Ruby. Development targets Ruby 3.3 and uses Bundler for dependency management.
This project is a MapReduce framework implemented in Ruby. Development targets Ruby 3.4 and uses Bundler for dependency management.

## Setup

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.7.4
FROM ruby:3.4.4

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion simple_map_reduce.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r(^exe/)) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.3.7'
spec.required_ruby_version = '>= 3.4.4'

spec.add_development_dependency 'bundler', '>= 2.5'
spec.add_development_dependency 'factory_bot', '~> 6.5', '>= 6.5.1'
Expand Down