From 4e1fd54c5839a18bfa279d250f9531bd40356791 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Wed, 22 May 2024 23:14:51 -0700 Subject: [PATCH] Add Gemfile and lock for nokogiri since a script now uses it Signed-off-by: Danila Fedorin --- Gemfile | 7 +++++++ Gemfile.lock | 17 +++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 Gemfile create mode 100644 Gemfile.lock diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..df6f5dc --- /dev/null +++ b/Gemfile @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +source "https://rubygems.org" + +git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } + +gem 'nokogiri' diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..aaa8279 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,17 @@ +GEM + remote: https://rubygems.org/ + specs: + mini_portile2 (2.8.6) + nokogiri (1.15.6) + mini_portile2 (~> 2.8.2) + racc (~> 1.4) + racc (1.8.0) + +PLATFORMS + ruby + +DEPENDENCIES + nokogiri + +BUNDLED WITH + 2.1.4