vmfloaty/Gemfile
Michael Hashizume 9b39b29ae7
(maint) Add base64 to test group
base64 is a bundled gem in Ruby >= 3.4 (rather than a default gem),
so it must be declared explicitly.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-21 10:38:56 -07:00

20 lines
427 B
Ruby

# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
gem 'rake', require: false
group :test do
# base64 is a bundled gem in Ruby >= 3.4, so it must be declared explicitly.
gem 'base64'
gem 'simplecov', '~> 0.22.0'
gem 'simplecov-html', '~> 0.13.1'
gem 'simplecov-lcov', '~> 0.8.0'
gem 'pry'
gem 'rb-readline'
gem 'rspec', '~> 3.13.0'
gem 'rubocop', '~> 1.66'
gem 'webmock', '~> 3.23'
end