mirror of
https://github.com/jimeh/jimeh.github.io.git
synced 2026-02-19 09:06:40 +00:00
Ruby 3.4+ removed csv and logger from default gems, requiring them as explicit dependencies. Also add .mise.toml to pin Ruby 3 for the project. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
177 B
Ruby
14 lines
177 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org/'
|
|
|
|
gem 'csv'
|
|
gem 'github-pages'
|
|
gem 'logger'
|
|
|
|
group :development do
|
|
gem 'rake'
|
|
gem 'rubocop'
|
|
gem 'webrick'
|
|
end
|