mirror of
https://github.com/red-data-tools/YouPlot.git
synced 2025-05-06 23:21:13 +08:00

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.
18 lines
266 B
Ruby
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
|