YouPlot/Gemfile
ericgpks 3e2ab1258b feat: add necessary gems to introduce rbs to this repository
To add types, I would like to have help from typeprof to define rbs files for current library code that's why I added both steep and typeprof to Gemfile.
2025-04-28 22:01:16 +09:00

18 lines
266 B
Ruby

# frozen_string_literal: true
source 'https://rubygems.org'
# Specify your gem's dependencies in youplot.gemspec
gemspec
group :development do
gem 'steep', require: false
gem 'typeprof'
end
group :test do
gem 'rake'
gem 'simplecov'
gem 'test-unit'
end