From 3e2ab1258b932863c01042d116bf40f63522eabd Mon Sep 17 00:00:00 2001 From: ericgpks Date: Mon, 28 Apr 2025 22:01:16 +0900 Subject: [PATCH] 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. --- Gemfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Gemfile b/Gemfile index 43abf00..54911d2 100644 --- a/Gemfile +++ b/Gemfile @@ -5,6 +5,11 @@ 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'