-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
23 lines (18 loc) · 805 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
source 'https://rubygems.org'
# Core dependencies
gem 'gosu', '~> 1.4.6' # Modern 2D game development and rendering
gem 'matrix', '~> 0.4.2' # Matrix operations for 3D math
gem 'minitest', '~> 5.18.0' # Testing framework
gem 'pry', '~> 0.14.2' # Debugging tool
gem 'rake', '~> 13.0.6' # Task automation
gem 'simplecov', '~> 0.22.0', require: false # Test coverage reporting
gem 'sqlite3', '~> 1.6.0' # SQLite database for debug logging
group :development do
gem 'minitest-focus', '~> 1.3.1' # Focus on specific tests
gem 'rubocop', '~> 1.60', require: false
gem 'rubocop-minitest', '~> 0.34.1', require: false
gem 'rubocop-rake', '~> 0.6.0', require: false
end
gem 'logger', '~> 1.6'
gem 'ostruct', '~> 0.6.1'