From dacbb42af56316c6b69fa1d38b240b5d9113d5fd Mon Sep 17 00:00:00 2001 From: Georg Ledermann Date: Thu, 26 Sep 2024 09:20:28 +0200 Subject: [PATCH] Fix warnings --- Gemfile | 12 ++++++++++++ Gemfile.lock | 8 ++++++++ 2 files changed, 20 insertions(+) diff --git a/Gemfile b/Gemfile index 0a877a3..38dc3ea 100644 --- a/Gemfile +++ b/Gemfile @@ -5,3 +5,15 @@ gem 'jekyll' # A modern, highly customizable, and responsive Jekyll theme for documentation with built-in search. (https://github.com/just-the-docs/just-the-docs) gem 'just-the-docs' + +# Provides a simple logging utility for outputting messages. (https://github.com/ruby/logger) +gem 'logger' + +# CSV Reading and Writing (https://github.com/ruby/csv) +gem 'csv' + +# Class to build custom data structures, similar to a Hash. (https://github.com/ruby/ostruct) +gem 'ostruct' + +# Support for encoding and decoding binary data using a Base64 representation. (https://github.com/ruby/base64) +gem 'base64' diff --git a/Gemfile.lock b/Gemfile.lock index a4d20e1..1ee429d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -3,9 +3,11 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) + base64 (0.2.0) bigdecimal (3.1.8) colorator (1.1.0) concurrent-ruby (1.3.4) + csv (3.3.0) em-websocket (0.5.3) eventmachine (>= 0.12.9) http_parser.rb (~> 0) @@ -55,7 +57,9 @@ GEM listen (3.9.0) rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) + logger (1.6.1) mercenary (0.4.0) + ostruct (0.6.0) pathutil (0.16.2) forwardable-extended (~> 2.6) public_suffix (6.0.1) @@ -78,8 +82,12 @@ PLATFORMS ruby DEPENDENCIES + base64 + csv jekyll just-the-docs + logger + ostruct BUNDLED WITH 2.5.20