Fix some string interpolation issues

This commit is contained in:
VetheonGames 2023-10-13 21:42:20 -06:00
parent b3431f6253
commit 19444a55b3
2 changed files with 4 additions and 7 deletions

View File

@ -3,8 +3,6 @@ PATH
specs: specs:
configman (1.0.0) configman (1.0.0)
inifile inifile
json
yaml
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
@ -53,7 +51,6 @@ GEM
parser (>= 3.2.1.0) parser (>= 3.2.1.0)
ruby-progressbar (1.13.0) ruby-progressbar (1.13.0)
unicode-display_width (2.5.0) unicode-display_width (2.5.0)
yaml (0.2.1)
PLATFORMS PLATFORMS
x86_64-linux x86_64-linux
@ -67,4 +64,4 @@ DEPENDENCIES
rubocop (~> 1.21) rubocop (~> 1.21)
BUNDLED WITH BUNDLED WITH
2.4.19 2.4.20

View File

@ -1,11 +1,11 @@
#!/usr/bin/env ruby #!/usr/bin/env ruby
# frozen_string_literal: true # frozen_string_literal: true
require "bundler/setup" require 'bundler/setup'
require "configman" require 'configman'
# You can add fixtures and/or initialization code here to make experimenting # 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. # with your gem easier. You can also use a different console, if you like.
require "irb" require 'irb'
IRB.start(__FILE__) IRB.start(__FILE__)