From 19444a55b3c184df97b99735a9bfe9a6bb3175d6 Mon Sep 17 00:00:00 2001 From: VetheonGames Date: Fri, 13 Oct 2023 21:42:20 -0600 Subject: [PATCH] Fix some string interpolation issues --- Gemfile.lock | 5 +---- bin/console | 6 +++--- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index b231555..a968d18 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -3,8 +3,6 @@ PATH specs: configman (1.0.0) inifile - json - yaml GEM remote: https://rubygems.org/ @@ -53,7 +51,6 @@ GEM parser (>= 3.2.1.0) ruby-progressbar (1.13.0) unicode-display_width (2.5.0) - yaml (0.2.1) PLATFORMS x86_64-linux @@ -67,4 +64,4 @@ DEPENDENCIES rubocop (~> 1.21) BUNDLED WITH - 2.4.19 + 2.4.20 diff --git a/bin/console b/bin/console index 26fdec2..a3b3dad 100755 --- a/bin/console +++ b/bin/console @@ -1,11 +1,11 @@ #!/usr/bin/env ruby # frozen_string_literal: true -require "bundler/setup" -require "configman" +require 'bundler/setup' +require 'configman' # You can add fixtures and/or initialization code here to make experimenting # with your gem easier. You can also use a different console, if you like. -require "irb" +require 'irb' IRB.start(__FILE__)