From 2111665959b988ace4c2f6df313a5a946e82cf2b Mon Sep 17 00:00:00 2001 From: VetheonGames Date: Wed, 20 Sep 2023 00:09:56 -0600 Subject: [PATCH] update bundle and gemspec --- Gemfile | 8 +++----- Gemfile.lock | 10 ++++------ dynamic_curses_input.gemspec | 6 +++--- 3 files changed, 10 insertions(+), 14 deletions(-) diff --git a/Gemfile b/Gemfile index f93f9fd..9df0405 100644 --- a/Gemfile +++ b/Gemfile @@ -5,10 +5,8 @@ source 'https://rubygems.org' # Specify your gem's dependencies in dynamic_curses_input.gemspec gemspec -gem 'rake' +gem 'reline', '~> 0.3.8' -gem 'rubocop' +gem 'curses', '~> 1.4' -gem 'curses' - -gem 'reline' +gem 'rubocop', '~> 1.56' diff --git a/Gemfile.lock b/Gemfile.lock index 3e74046..63f9c35 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - dynamic_curses_input (1.2.1) + dynamic_curses_input (1.2.2) curses reline @@ -20,7 +20,6 @@ GEM racc racc (1.7.1) rainbow (3.1.1) - rake (13.0.6) regexp_parser (2.8.1) reline (0.3.8) io-console (~> 0.5) @@ -46,11 +45,10 @@ PLATFORMS x86_64-linux DEPENDENCIES - curses + curses (~> 1.4) dynamic_curses_input! - rake - reline - rubocop + reline (~> 0.3.8) + rubocop (~> 1.56) BUNDLED WITH 2.4.10 diff --git a/dynamic_curses_input.gemspec b/dynamic_curses_input.gemspec index 171a5f5..9ed8f84 100644 --- a/dynamic_curses_input.gemspec +++ b/dynamic_curses_input.gemspec @@ -33,8 +33,8 @@ Gem::Specification.new do |spec| spec.require_paths = ['lib'] - spec.add_dependency 'curses' - spec.add_dependency 'reline' - spec.add_development_dependency 'rubocop' + spec.add_dependency 'curses', '~> 1.4' + spec.add_dependency 'reline', '~> 0.3.8' + spec.add_development_dependency 'rubocop', '~> 1.56' spec.post_install_message = 'If you find this gem useful, consider supporting its development: https://www.paypal.com/donate/?hosted_button_id=YF5XS7ZXQ6F8A' end