From 93d83ca18f72627c0ac02cb546a58314127bf9e3 Mon Sep 17 00:00:00 2001 From: Andrey Date: Tue, 18 Jun 2024 13:02:48 +0200 Subject: [PATCH 01/11] introduce FileHelpers.absolute_path to reduce duplication in tests --- sig/datadog/ci/worker.rbs | 2 +- .../ci/contrib/minitest/instrumentation_spec.rb | 6 ++---- spec/datadog/ci/itr/coverage/event_spec.rb | 2 +- spec/ddcov/ddcov_spec.rb | 4 ---- spec/ddcov/ddcov_with_symlinks_spec.rb | 4 ---- spec/spec_helper.rb | 2 ++ spec/support/file_helpers.rb | 11 +++++++++++ 7 files changed, 17 insertions(+), 14 deletions(-) create mode 100644 spec/support/file_helpers.rb diff --git a/sig/datadog/ci/worker.rbs b/sig/datadog/ci/worker.rbs index 21b86c17..a762cb24 100644 --- a/sig/datadog/ci/worker.rbs +++ b/sig/datadog/ci/worker.rbs @@ -1,8 +1,8 @@ module Datadog module CI class Worker < Datadog::Core::Worker - include Datadog::Core::Workers::Async::Thread::PrependedMethods include Datadog::Core::Workers::Async::Thread + include Datadog::Core::Workers::Async::Thread::PrependedMethods DEFAULT_SHUTDOWN_TIMEOUT: 60 diff --git a/spec/datadog/ci/contrib/minitest/instrumentation_spec.rb b/spec/datadog/ci/contrib/minitest/instrumentation_spec.rb index e5ee8fb9..8bbe37ed 100644 --- a/spec/datadog/ci/contrib/minitest/instrumentation_spec.rb +++ b/spec/datadog/ci/contrib/minitest/instrumentation_spec.rb @@ -504,9 +504,7 @@ def test_pass_other # expect that background thread is covered test_span = test_spans.find { |span| span.get_tag("test.name") == "test_pass_other" } cov_event = find_coverage_for_test(test_span) - expect(cov_event.coverage.keys).to include( - File.expand_path(File.join(__dir__, "helpers/addition_helper.rb")) - ) + expect(cov_event.coverage.keys).to include(absolute_path("helpers/addition_helper.rb")) end context "when ITR skips tests" do @@ -935,7 +933,7 @@ def test_with_background_thread # expect that background thread is not covered cov_event = find_coverage_for_test(first_test_span) expect(cov_event.coverage.keys).not_to include( - File.expand_path(File.join(__dir__, "helpers/addition_helper.rb")) + absolute_path("helpers/addition_helper.rb") ) end end diff --git a/spec/datadog/ci/itr/coverage/event_spec.rb b/spec/datadog/ci/itr/coverage/event_spec.rb index bb1ccbf0..ad17bef6 100644 --- a/spec/datadog/ci/itr/coverage/event_spec.rb +++ b/spec/datadog/ci/itr/coverage/event_spec.rb @@ -86,7 +86,7 @@ context "when file paths are absolute" do let(:coverage) do { - File.expand_path(File.join(__dir__, "./project/file.rb")) => true + absolute_path("./project/file.rb") => true } end diff --git a/spec/ddcov/ddcov_spec.rb b/spec/ddcov/ddcov_spec.rb index 70873407..4f0cc68a 100644 --- a/spec/ddcov/ddcov_spec.rb +++ b/spec/ddcov/ddcov_spec.rb @@ -6,10 +6,6 @@ require_relative "calculator/code_with_❤️" RSpec.describe Datadog::CI::ITR::Coverage::DDCov do - def absolute_path(path) - File.expand_path(File.join(__dir__, path)) - end - let(:ignored_path) { nil } let(:threading_mode) { :multi } subject { described_class.new(root: root, ignored_path: ignored_path, threading_mode: threading_mode) } diff --git a/spec/ddcov/ddcov_with_symlinks_spec.rb b/spec/ddcov/ddcov_with_symlinks_spec.rb index c6bb0583..3b382216 100644 --- a/spec/ddcov/ddcov_with_symlinks_spec.rb +++ b/spec/ddcov/ddcov_with_symlinks_spec.rb @@ -5,10 +5,6 @@ require "datadog_cov.#{RUBY_VERSION}_#{RUBY_PLATFORM}" RSpec.describe Datadog::CI::ITR::Coverage::DDCov do - def absolute_path(path) - File.expand_path(File.join(__dir__, path)) - end - before do # create a symlink to the calculator_with_symlinks/operations folder in vendor/gems FileUtils.ln_s( diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index fb652ca0..7bbe6ca7 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -14,6 +14,7 @@ require_relative "support/span_helpers" require_relative "support/platform_helpers" require_relative "support/synchronization_helpers" +require_relative "support/file_helpers" # shared contexts require_relative "support/contexts/ci_mode" @@ -63,6 +64,7 @@ def self.load_plugins config.include TracerHelpers config.include SpanHelpers config.include SynchronizationHelpers + config.include FileHelpers # Enable flags like --only-failures and --next-failure config.example_status_persistence_file_path = ".rspec_status" diff --git a/spec/support/file_helpers.rb b/spec/support/file_helpers.rb new file mode 100644 index 00000000..f7ec679d --- /dev/null +++ b/spec/support/file_helpers.rb @@ -0,0 +1,11 @@ +require "datadog/ci" + +module FileHelpers + # this helper returns the absolute path of a file when given + # path relative to the current __dir__ + def absolute_path(path) + callstack_top = caller_locations(1, 1)[0] + caller_dir = File.dirname(callstack_top.absolute_path) + File.join(caller_dir, path) + end +end From c092d67684e2a1c411d96dd173e368d897f50c08 Mon Sep 17 00:00:00 2001 From: Andrey Date: Tue, 18 Jun 2024 17:19:28 +0200 Subject: [PATCH 02/11] add CI::Transport::Adapters::Net to move network layer code to this library --- lib/datadog/ci/transport/adapters/net.rb | 118 +++++++ lib/datadog/ci/transport/api/agentless.rb | 2 +- lib/datadog/ci/transport/http.rb | 61 +--- sig/datadog/ci/transport/adapters/net.rbs | 63 ++++ sig/datadog/ci/transport/http.rbs | 26 +- .../datadog/ci/transport/adapters/net_spec.rb | 296 ++++++++++++++++++ spec/datadog/ci/transport/http_spec.rb | 83 ++--- 7 files changed, 520 insertions(+), 129 deletions(-) create mode 100644 lib/datadog/ci/transport/adapters/net.rb create mode 100644 sig/datadog/ci/transport/adapters/net.rbs create mode 100644 spec/datadog/ci/transport/adapters/net_spec.rb diff --git a/lib/datadog/ci/transport/adapters/net.rb b/lib/datadog/ci/transport/adapters/net.rb new file mode 100644 index 00000000..8dc0671c --- /dev/null +++ b/lib/datadog/ci/transport/adapters/net.rb @@ -0,0 +1,118 @@ +# frozen_string_literal: true + +require_relative "../../ext/transport" + +module Datadog + module CI + module Transport + module Adapters + # Adapter for Net::HTTP + class Net + attr_reader \ + :hostname, + :port, + :timeout, + :ssl + + def initialize(hostname:, port:, ssl:, timeout_seconds:) + @hostname = hostname + @port = port + @timeout = timeout_seconds + @ssl = ssl + end + + def open(&block) + req = ::Net::HTTP.new(hostname, port) + + req.use_ssl = ssl + req.open_timeout = req.read_timeout = timeout + + req.start(&block) + end + + def call(path:, payload:, headers:, verb:) + if respond_to?(verb) + send(verb, path: path, payload: payload, headers: headers) + else + raise "Unknown HTTP method [#{verb}]" + end + end + + def post(path:, payload:, headers:) + post = ::Net::HTTP::Post.new(path, headers) + post.body = payload + + # Connect and send the request + http_response = open do |http| + http.request(post) + end + + # Build and return response + Response.new(http_response) + end + + class Response + attr_reader :http_response + + def initialize(http_response) + @http_response = http_response + end + + def payload + return @decompressed_payload if defined?(@decompressed_payload) + + if gzipped?(http_response.body) + Datadog.logger.debug("Decompressing gzipped response payload") + @decompressed_payload = Gzip.decompress(http_response.body) + else + http_response.body + end + end + + def header(name) + http_response[name] + end + + def code + http_response.code.to_i + end + + def ok? + code.between?(200, 299) + end + + def unsupported? + code == 415 + end + + def not_found? + code == 404 + end + + def client_error? + code.between?(400, 499) + end + + def server_error? + code.between?(500, 599) + end + + def gzipped?(body) + return false if body.nil? || body.empty? + + # no-dd-sa + first_bytes = body[0, 2] + return false if first_bytes.nil? || first_bytes.empty? + + first_bytes.b == Datadog::CI::Ext::Transport::GZIP_MAGIC_NUMBER + end + + def inspect + "#{super}, http_response:#{http_response}" + end + end + end + end + end + end +end diff --git a/lib/datadog/ci/transport/api/agentless.rb b/lib/datadog/ci/transport/api/agentless.rb index 49b20e52..49c9cbbe 100644 --- a/lib/datadog/ci/transport/api/agentless.rb +++ b/lib/datadog/ci/transport/api/agentless.rb @@ -60,7 +60,7 @@ def build_http_client(url, compress:) Datadog::CI::Transport::HTTP.new( host: uri.host, - port: uri.port, + port: uri.port || 80, ssl: uri.scheme == "https" || uri.port == 443, compress: compress ) diff --git a/lib/datadog/ci/transport/http.rb b/lib/datadog/ci/transport/http.rb index 6069c9d4..798a1b19 100644 --- a/lib/datadog/ci/transport/http.rb +++ b/lib/datadog/ci/transport/http.rb @@ -1,12 +1,10 @@ # frozen_string_literal: true require "delegate" -require "datadog/core/transport/http/adapters/net" -require "datadog/core/transport/http/env" -require "datadog/core/transport/request" require "socket" require_relative "gzip" +require_relative "adapters/net" require_relative "../ext/transport" module Datadog @@ -24,7 +22,7 @@ class HTTP MAX_RETRIES = 3 INITIAL_BACKOFF = 1 - def initialize(host:, timeout: DEFAULT_TIMEOUT, port: nil, ssl: true, compress: false) + def initialize(host:, port:, timeout: DEFAULT_TIMEOUT, ssl: true, compress: false) @host = host @port = port @timeout = timeout @@ -70,7 +68,7 @@ def request( def perform_http_call(path:, payload:, headers:, verb:, retries: MAX_RETRIES, backoff: INITIAL_BACKOFF) adapter.call( - build_env(path: path, payload: payload, headers: headers, verb: verb) + path: path, payload: payload, headers: headers, verb: verb ) rescue Timeout::Error, Errno::EINVAL, Errno::ECONNRESET, EOFError, SocketError, Net::HTTPBadResponse => e Datadog.logger.debug("Failed to send request with #{e} (#{e.message})") @@ -87,65 +85,18 @@ def perform_http_call(path:, payload:, headers:, verb:, retries: MAX_RETRIES, ba end end - def build_env(path:, payload:, headers:, verb:) - env = Datadog::Core::Transport::HTTP::Env.new( - Datadog::Core::Transport::Request.new - ) - env.body = payload - env.path = path - env.headers = headers - env.verb = verb - env - end - def adapter - settings = AdapterSettings.new(hostname: host, port: port, ssl: ssl, timeout_seconds: timeout) - @adapter ||= Datadog::Core::Transport::HTTP::Adapters::Net.new(settings) + @adapter ||= Datadog::CI::Transport::Adapters::Net.new( + hostname: host, port: port, ssl: ssl, timeout_seconds: timeout + ) end # adds compatibility with Datadog::Tracing transport and # provides ungzipping capabilities class ResponseDecorator < ::SimpleDelegator - def payload - return @decompressed_payload if defined?(@decompressed_payload) - - if gzipped?(__getobj__.payload) - Datadog.logger.debug("Decompressing gzipped response payload") - @decompressed_payload = Gzip.decompress(__getobj__.payload) - else - __getobj__.payload - end - end - def trace_count 0 end - - def gzipped?(payload) - return false if payload.nil? || payload.empty? - - # no-dd-sa - first_bytes = payload[0, 2] - return false if first_bytes.nil? || first_bytes.empty? - - first_bytes.b == Datadog::CI::Ext::Transport::GZIP_MAGIC_NUMBER - end - end - - class AdapterSettings - attr_reader :hostname, :port, :ssl, :timeout_seconds - - def initialize(hostname:, port: nil, ssl: true, timeout_seconds: nil) - @hostname = hostname - @port = port - @ssl = ssl - @timeout_seconds = timeout_seconds - end - - def ==(other) - hostname == other.hostname && port == other.port && ssl == other.ssl && - timeout_seconds == other.timeout_seconds - end end end end diff --git a/sig/datadog/ci/transport/adapters/net.rbs b/sig/datadog/ci/transport/adapters/net.rbs new file mode 100644 index 00000000..65802496 --- /dev/null +++ b/sig/datadog/ci/transport/adapters/net.rbs @@ -0,0 +1,63 @@ +module Datadog + module CI + module Transport + module Adapters + class Net + @hostname: String + + @port: Integer + + @timeout: Float + + @ssl: bool + + attr_reader hostname: String + + attr_reader port: Integer + + attr_reader timeout: Float + + attr_reader ssl: bool + + def initialize: (hostname: String, port: Integer, ssl: bool, timeout_seconds: Integer) -> void + + def open: () { (Net::HTTP http) -> ::Net::HTTPResponse } -> ::Net::HTTPResponse + + def call: (path: String, payload: String, headers: Hash[String, String], verb: String) -> Response + + def post: (path: String, payload: String, headers: Hash[String, String]) -> Response + + class Response + @http_response: ::Net::HTTPResponse + + @decompressed_payload: String + + attr_reader http_response: ::Net::HTTPResponse + + def initialize: (::Net::HTTPResponse http_response) -> void + + def payload: () -> String + + def header: (String name) -> String? + + def code: () -> Integer + + def ok?: () -> bool + + def unsupported?: () -> bool + + def not_found?: () -> bool + + def client_error?: () -> bool + + def server_error?: () -> bool + + def gzipped?: (String body) -> bool + + def inspect: () -> ::String + end + end + end + end + end +end diff --git a/sig/datadog/ci/transport/http.rbs b/sig/datadog/ci/transport/http.rbs index d8c79b1a..573093b0 100644 --- a/sig/datadog/ci/transport/http.rbs +++ b/sig/datadog/ci/transport/http.rbs @@ -10,10 +10,10 @@ module Datadog module CI module Transport class HTTP - @adapter: Datadog::Core::Transport::HTTP::Adapters::Net + @adapter: Datadog::CI::Transport::Adapters::Net attr_reader host: String - attr_reader port: Integer? + attr_reader port: Integer attr_reader ssl: bool attr_reader timeout: Integer attr_reader compress: bool @@ -22,31 +22,15 @@ module Datadog MAX_RETRIES: 3 INITIAL_BACKOFF: 1 - def initialize: (host: String, ?port: Integer?, ?ssl: bool, ?timeout: Integer, ?compress: bool) -> void + def initialize: (host: String, port: Integer, ?ssl: bool, ?timeout: Integer, ?compress: bool) -> void def request: (?verb: String, payload: String, headers: Hash[String, String], path: String, ?retries: Integer, ?backoff: Integer, ?accept_compressed_response: bool) -> ResponseDecorator private - def adapter: () -> Datadog::Core::Transport::HTTP::Adapters::Net + def adapter: () -> Datadog::CI::Transport::Adapters::Net - def build_env: (payload: String, headers: Hash[String, String], path: String, verb: String) -> Datadog::Core::Transport::HTTP::Env - - def perform_http_call: (payload: String, headers: Hash[String, String], path: String, verb: String, ?retries: Integer, ?backoff: Integer) -> Datadog::Core::Transport::Response - - class AdapterSettings - attr_reader hostname: String - attr_reader port: Integer? - attr_reader ssl: bool - attr_reader timeout_seconds: Integer - - @hostname: String - @port: Integer? - @ssl: bool - @timeout_seconds: Integer - - def initialize: (hostname: String, ?port: Integer?, ?ssl: bool, ?timeout_seconds: Integer) -> void - end + def perform_http_call: (payload: String, headers: Hash[String, String], path: String, verb: String, ?retries: Integer, ?backoff: Integer) -> Datadog::CI::Transport::Adapters::Net::Response class ResponseDecorator < ::SimpleDelegator include Datadog::Core::Transport::Response diff --git a/spec/datadog/ci/transport/adapters/net_spec.rb b/spec/datadog/ci/transport/adapters/net_spec.rb new file mode 100644 index 00000000..e23878ba --- /dev/null +++ b/spec/datadog/ci/transport/adapters/net_spec.rb @@ -0,0 +1,296 @@ +require_relative "../../../../../lib/datadog/ci/transport/adapters/net" +require_relative "../../../../../lib/datadog/ci/transport/gzip" + +RSpec.describe Datadog::CI::Transport::Adapters::Net do + subject(:adapter) do + described_class.new(hostname: hostname, port: port, ssl: ssl, timeout_seconds: timeout) + end + + let(:hostname) { "hostname" } + let(:port) { 9999 } + let(:timeout) { 15 } + let(:ssl) { false } + + shared_context "HTTP connection stub" do + let(:http_connection) { instance_double(::Net::HTTP) } + + before do + allow(::Net::HTTP).to receive(:new) + .with( + adapter.hostname, + adapter.port + ).and_return(http_connection) + + allow(http_connection).to receive(:open_timeout=).with(adapter.timeout) + allow(http_connection).to receive(:read_timeout=).with(adapter.timeout) + allow(http_connection).to receive(:use_ssl=).with(adapter.ssl) + + allow(http_connection).to receive(:start).and_yield(http_connection) + end + end + + describe "#initialize" do + context "given a :timeout option" do + let(:timeout) { double("timeout") } + + it { is_expected.to have_attributes(timeout: timeout) } + end + + context "given a :ssl option" do + context "with true" do + let(:ssl) { true } + + it { is_expected.to have_attributes(ssl: true) } + end + end + end + + describe "#open" do + include_context "HTTP connection stub" + + it "opens and yields a Net::HTTP connection" do + expect { |b| adapter.open(&b) }.to yield_with_args(http_connection) + end + end + + describe "#call" do + let(:path) { "/foo" } + let(:body) { "{}" } + let(:headers) { {} } + + subject(:call) { adapter.call(verb: verb, path: path, payload: body, headers: headers) } + + context "given a verb" do + context ":post" do + include_context "HTTP connection stub" + + let(:verb) { :post } + let(:http_response) { double("http_response") } + + context "and an empty form body" do + let(:form) { {} } + let(:post) { instance_double(Net::HTTP::Post) } + + it "makes a POST and produces a response" do + expect(Net::HTTP::Post) + .to receive(:new) + .with(path, headers) + .and_return(post) + + expect(post) + .to receive(:body=) + .with(body) + + expect(http_connection) + .to receive(:request) + .with(post) + .and_return(http_response) + + is_expected.to be_a_kind_of(described_class::Response) + expect(call.http_response).to be(http_response) + end + end + end + + context ":get" do + let(:verb) { :get } + + it { expect { call }.to raise_error("Unknown HTTP method [get]") } + end + end + end + + describe "#post" do + include_context "HTTP connection stub" + + let(:path) { "/foo" } + let(:body) { "{}" } + let(:headers) { {} } + + subject(:post) { adapter.post(path: path, payload: body, headers: headers) } + + let(:http_response) { double("http_response") } + + before { expect(http_connection).to receive(:request).and_return(http_response) } + + it "produces a response" do + is_expected.to be_a_kind_of(described_class::Response) + expect(post.http_response).to be(http_response) + end + end +end + +RSpec.describe Datadog::CI::Transport::Adapters::Net::Response do + subject(:response) { described_class.new(http_response) } + + let(:http_response) { instance_double(::Net::HTTPResponse) } + + describe "#initialize" do + it { is_expected.to have_attributes(http_response: http_response) } + end + + describe "#payload" do + subject(:payload) { response.payload } + + let(:http_response) { instance_double(::Net::HTTPResponse, body: "body") } + + it { is_expected.to be(http_response.body) } + + context "when payload is gzipped" do + let(:expected_payload) { "sample_payload" } + let(:http_response) do + instance_double(::Net::HTTPResponse, body: Datadog::CI::Transport::Gzip.compress(expected_payload)) + end + + it { is_expected.to eq(expected_payload) } + end + end + + describe "#code" do + subject(:code) { response.code } + + let(:http_response) { instance_double(::Net::HTTPResponse, code: "200") } + + it { is_expected.to eq(200) } + end + + describe "#ok?" do + subject(:ok?) { response.ok? } + + let(:http_response) { instance_double(::Net::HTTPResponse, code: code) } + + context "when code is 199" do + let(:code) { 199 } + + it { is_expected.to be false } + end + + context "when code is 200" do + let(:code) { 200 } + + it { is_expected.to be true } + end + + context "when code is 299" do + let(:code) { 299 } + + it { is_expected.to be true } + end + + context "when code is 300" do + let(:code) { 300 } + + it { is_expected.to be false } + end + end + + describe "#unsupported?" do + subject(:unsupported?) { response.unsupported? } + + let(:http_response) { instance_double(::Net::HTTPResponse, code: code) } + + context "when code is 400" do + let(:code) { 400 } + + it { is_expected.to be false } + end + + context "when code is 415" do + let(:code) { 415 } + + it { is_expected.to be true } + end + end + + describe "#not_found?" do + subject(:not_found?) { response.not_found? } + + let(:http_response) { instance_double(::Net::HTTPResponse, code: code) } + + context "when code is 400" do + let(:code) { 400 } + + it { is_expected.to be false } + end + + context "when code is 404" do + let(:code) { 404 } + + it { is_expected.to be true } + end + end + + describe "#client_error?" do + subject(:client_error?) { response.client_error? } + + let(:http_response) { instance_double(::Net::HTTPResponse, code: code) } + + context "when code is 399" do + let(:code) { 399 } + + it { is_expected.to be false } + end + + context "when code is 400" do + let(:code) { 400 } + + it { is_expected.to be true } + end + + context "when code is 499" do + let(:code) { 499 } + + it { is_expected.to be true } + end + + context "when code is 500" do + let(:code) { 500 } + + it { is_expected.to be false } + end + end + + describe "#server_error?" do + subject(:server_error?) { response.server_error? } + + let(:http_response) { instance_double(::Net::HTTPResponse, code: code) } + + context "when code is 499" do + let(:code) { 499 } + + it { is_expected.to be false } + end + + context "when code is 500" do + let(:code) { 500 } + + it { is_expected.to be true } + end + + context "when code is 599" do + let(:code) { 599 } + + it { is_expected.to be true } + end + + context "when code is 600" do + let(:code) { 600 } + + it { is_expected.to be false } + end + end + + describe "#header" do + subject(:header) { response.header(name) } + + let(:name) { "name" } + let(:value) { "value" } + let(:http_response) { instance_double(::Net::HTTPResponse) } + + before do + expect(http_response).to receive(:[]).with(name).and_return(value) + end + + it { is_expected.to eq(value) } + end +end diff --git a/spec/datadog/ci/transport/http_spec.rb b/spec/datadog/ci/transport/http_spec.rb index ad2afc5e..3c87f2f9 100644 --- a/spec/datadog/ci/transport/http_spec.rb +++ b/spec/datadog/ci/transport/http_spec.rb @@ -1,7 +1,7 @@ require_relative "../../../../lib/datadog/ci/transport/http" RSpec.describe Datadog::CI::Transport::HTTP do - subject(:transport) { described_class.new(host: host, **options) } + subject(:transport) { described_class.new(host: host, port: port, **options) } let(:host) { "datadog-host" } let(:port) { 8132 } @@ -10,17 +10,16 @@ let(:options) { {} } shared_context "HTTP adapter stub" do - let(:adapter) { instance_double(::Datadog::Core::Transport::HTTP::Adapters::Net) } + let(:adapter) { instance_double(::Datadog::CI::Transport::Adapters::Net) } before do - settings = Datadog::CI::Transport::HTTP::AdapterSettings.new( - hostname: transport.host, - port: transport.port, - timeout_seconds: transport.timeout, - ssl: transport.ssl - ) - allow(::Datadog::Core::Transport::HTTP::Adapters::Net).to receive(:new) - .with(settings).and_return(adapter) + allow(::Datadog::CI::Transport::Adapters::Net).to receive(:new) + .with( + hostname: transport.host, + port: transport.port, + timeout_seconds: transport.timeout, + ssl: transport.ssl + ).and_return(adapter) end end @@ -31,7 +30,7 @@ it do is_expected.to have_attributes( host: host, - port: nil, + port: port, timeout: Datadog::CI::Transport::HTTP::DEFAULT_TIMEOUT, ssl: true ) @@ -98,19 +97,18 @@ subject(:response) { transport.request(path: path, payload: payload, headers: headers, **request_options) } context "when request is successful" do - let(:expected_env) do - env = Datadog::Core::Transport::HTTP::Env.new( - Datadog::Core::Transport::Request.new - ) - env.body = payload - env.path = path - env.headers = expected_headers - env.verb = "post" - env - end + let(:expected_payload) { payload } + let(:expected_path) { path } + let(:expected_headers) { headers } + let(:expected_verb) { "post" } before do - expect(adapter).to receive(:call).with(expected_env).and_return(http_response) + expect(adapter).to receive(:call).with( + payload: expected_payload, + path: expected_path, + headers: expected_headers, + verb: expected_verb + ).and_return(http_response) end it "produces a response" do @@ -124,25 +122,7 @@ let(:expected_headers) { {"Content-Type" => "application/json", "Accept-Encoding" => "gzip"} } let(:request_options) { {accept_compressed_response: true} } - it "adds Accept-Encoding header" do - is_expected.to be_a_kind_of(described_class::ResponseDecorator) - - expect(response.code).to eq(200) - expect(response.payload).to eq("sample payload") - end - - context "when response is gzipped" do - let(:response_payload) do - Datadog::CI::Transport::Gzip.compress("sample payload") - end - - it "decompressed response payload" do - is_expected.to be_a_kind_of(described_class::ResponseDecorator) - - expect(response.code).to eq(200) - expect(response.payload).to eq("sample payload") - end - end + it { is_expected.to be_a_kind_of(described_class::ResponseDecorator) } end end @@ -152,19 +132,18 @@ let(:options) { {compress: true} } let(:post_request) { double(:post_request) } - let(:env) do - env = Datadog::Core::Transport::HTTP::Env.new( - Datadog::Core::Transport::Request.new - ) - env.body = Datadog::CI::Transport::Gzip.compress(payload) - env.path = path - env.headers = headers - env.verb = "post" - env - end + let(:expected_payload) { Datadog::CI::Transport::Gzip.compress(payload) } + let(:expected_path) { path } + let(:expected_headers) { headers } + let(:expected_verb) { "post" } before do - expect(adapter).to receive(:call).with(env).and_return(http_response) + expect(adapter).to receive(:call).with( + payload: expected_payload, + path: expected_path, + headers: expected_headers, + verb: expected_verb + ).and_return(http_response) end it "produces a response" do From 25ab038812e559d95171457112a9a1a18926264b Mon Sep 17 00:00:00 2001 From: Andrey Date: Tue, 18 Jun 2024 17:21:03 +0200 Subject: [PATCH 03/11] timeout is Integer --- sig/datadog/ci/transport/adapters/net.rbs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sig/datadog/ci/transport/adapters/net.rbs b/sig/datadog/ci/transport/adapters/net.rbs index 65802496..575ded8d 100644 --- a/sig/datadog/ci/transport/adapters/net.rbs +++ b/sig/datadog/ci/transport/adapters/net.rbs @@ -7,7 +7,7 @@ module Datadog @port: Integer - @timeout: Float + @timeout: Integer @ssl: bool @@ -15,7 +15,7 @@ module Datadog attr_reader port: Integer - attr_reader timeout: Float + attr_reader timeout: Integer attr_reader ssl: bool From ebc76e9819b79963e141592cad703980b3e7d599 Mon Sep 17 00:00:00 2001 From: Andrey Date: Wed, 19 Jun 2024 10:49:03 +0200 Subject: [PATCH 04/11] auto correct standardrb offenses --- lib/datadog/ci/transport/api/agentless.rb | 2 +- lib/datadog/ci/transport/api/evp_proxy.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/datadog/ci/transport/api/agentless.rb b/lib/datadog/ci/transport/api/agentless.rb index 49c9cbbe..a48bea5b 100644 --- a/lib/datadog/ci/transport/api/agentless.rb +++ b/lib/datadog/ci/transport/api/agentless.rb @@ -37,7 +37,7 @@ def api_request(path:, payload:, headers: {}, verb: "post") end def citestcov_request(path:, payload:, headers: {}, verb: "post") - super(path: path, payload: payload, headers: headers, verb: verb) + super perform_request(@citestcov_http, path: path, payload: @citestcov_payload, headers: headers, verb: verb) end diff --git a/lib/datadog/ci/transport/api/evp_proxy.rb b/lib/datadog/ci/transport/api/evp_proxy.rb index ca7639e4..4c6f428b 100644 --- a/lib/datadog/ci/transport/api/evp_proxy.rb +++ b/lib/datadog/ci/transport/api/evp_proxy.rb @@ -39,7 +39,7 @@ def api_request(path:, payload:, headers: {}, verb: "post") end def citestcov_request(path:, payload:, headers: {}, verb: "post") - super(path: path, payload: payload, headers: headers, verb: verb) + super headers[Ext::Transport::HEADER_EVP_SUBDOMAIN] = Ext::Transport::TEST_COVERAGE_INTAKE_HOST_PREFIX From 4be44da6f42b8b159a0edb76b80e6bedd0075acd Mon Sep 17 00:00:00 2001 From: Andrey Date: Wed, 19 Jun 2024 11:05:53 +0200 Subject: [PATCH 05/11] update steep and rbs versions --- Gemfile | 4 ++-- lib/datadog/ci/configuration/components.rb | 2 +- lib/datadog/ci/contrib/rspec/example.rb | 2 +- lib/datadog/ci/contrib/rspec/patcher.rb | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Gemfile b/Gemfile index 15a92983..3717c4c4 100644 --- a/Gemfile +++ b/Gemfile @@ -31,8 +31,8 @@ gem "simplecov-cobertura", "~> 2.1.0" # type checking group :check do if RUBY_VERSION >= "3.0.0" && RUBY_PLATFORM != "java" - gem "rbs", "~> 3.2.0", require: false - gem "steep", "~> 1.6.0", require: false + gem "rbs", "~> 3.5.0", require: false + gem "steep", "~> 1.7.0", require: false end end diff --git a/lib/datadog/ci/configuration/components.rb b/lib/datadog/ci/configuration/components.rb index 4bc5579a..14f787fa 100644 --- a/lib/datadog/ci/configuration/components.rb +++ b/lib/datadog/ci/configuration/components.rb @@ -205,7 +205,7 @@ def check_dd_site(settings) end def timecop? - Gem.loaded_specs.key?("timecop") || defined?(Timecop) + Gem.loaded_specs.key?("timecop") || !!defined?(Timecop) end end end diff --git a/lib/datadog/ci/contrib/rspec/example.rb b/lib/datadog/ci/contrib/rspec/example.rb index 01285280..6b30a112 100644 --- a/lib/datadog/ci/contrib/rspec/example.rb +++ b/lib/datadog/ci/contrib/rspec/example.rb @@ -100,7 +100,7 @@ def datadog_configuration end def ci_queue? - defined?(::RSpec::Queue::ExampleExtension) && + !!defined?(::RSpec::Queue::ExampleExtension) && self.class.ancestors.include?(::RSpec::Queue::ExampleExtension) end end diff --git a/lib/datadog/ci/contrib/rspec/patcher.rb b/lib/datadog/ci/contrib/rspec/patcher.rb index 8fec2cb1..65799a4b 100644 --- a/lib/datadog/ci/contrib/rspec/patcher.rb +++ b/lib/datadog/ci/contrib/rspec/patcher.rb @@ -42,15 +42,15 @@ def patch end def ci_queue? - defined?(::RSpec::Queue::Runner) + !!defined?(::RSpec::Queue::Runner) end def knapsack_pro? knapsack_version = Gem.loaded_specs["knapsack_pro"]&.version # additional instrumentation is needed for KnapsackPro version 7 and later - defined?(::KnapsackPro) && - knapsack_version && knapsack_version >= Gem::Version.new("7") + !!defined?(::KnapsackPro) && + !knapsack_version.nil? && knapsack_version >= Gem::Version.new("7") end end end From 592ead244644f5db923e26ba7c715e128645627f Mon Sep 17 00:00:00 2001 From: Andrey Date: Wed, 19 Jun 2024 11:59:35 +0200 Subject: [PATCH 06/11] check http response header content-encoding before ungzipping payload --- lib/datadog/ci/transport/adapters/net.rb | 22 ++++++++++++------- sig/datadog/ci/transport/adapters/net.rbs | 4 +++- .../datadog/ci/transport/adapters/net_spec.rb | 6 +++++ 3 files changed, 23 insertions(+), 9 deletions(-) diff --git a/lib/datadog/ci/transport/adapters/net.rb b/lib/datadog/ci/transport/adapters/net.rb index 8dc0671c..ea699282 100644 --- a/lib/datadog/ci/transport/adapters/net.rb +++ b/lib/datadog/ci/transport/adapters/net.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true +require "datadog/core/transport/response" + require_relative "../../ext/transport" module Datadog @@ -52,6 +54,8 @@ def post(path:, payload:, headers:) end class Response + include Datadog::Core::Transport::Response + attr_reader :http_response def initialize(http_response) @@ -60,13 +64,11 @@ def initialize(http_response) def payload return @decompressed_payload if defined?(@decompressed_payload) + return http_response.body unless gzipped_content? + return http_response.body unless gzipped_body?(http_response.body) - if gzipped?(http_response.body) - Datadog.logger.debug("Decompressing gzipped response payload") - @decompressed_payload = Gzip.decompress(http_response.body) - else - http_response.body - end + Datadog.logger.debug("Decompressing gzipped response payload") + @decompressed_payload = Gzip.decompress(http_response.body) end def header(name) @@ -97,14 +99,18 @@ def server_error? code.between?(500, 599) end - def gzipped?(body) + def gzipped_content? + header(Ext::Transport::HEADER_CONTENT_ENCODING) == Ext::Transport::CONTENT_ENCODING_GZIP + end + + def gzipped_body?(body) return false if body.nil? || body.empty? # no-dd-sa first_bytes = body[0, 2] return false if first_bytes.nil? || first_bytes.empty? - first_bytes.b == Datadog::CI::Ext::Transport::GZIP_MAGIC_NUMBER + first_bytes.b == Ext::Transport::GZIP_MAGIC_NUMBER end def inspect diff --git a/sig/datadog/ci/transport/adapters/net.rbs b/sig/datadog/ci/transport/adapters/net.rbs index 575ded8d..608425b2 100644 --- a/sig/datadog/ci/transport/adapters/net.rbs +++ b/sig/datadog/ci/transport/adapters/net.rbs @@ -52,7 +52,9 @@ module Datadog def server_error?: () -> bool - def gzipped?: (String body) -> bool + def gzipped_body?: (String body) -> bool + + def gzipped_content?: () -> bool def inspect: () -> ::String end diff --git a/spec/datadog/ci/transport/adapters/net_spec.rb b/spec/datadog/ci/transport/adapters/net_spec.rb index e23878ba..9aee954e 100644 --- a/spec/datadog/ci/transport/adapters/net_spec.rb +++ b/spec/datadog/ci/transport/adapters/net_spec.rb @@ -131,13 +131,19 @@ describe "#payload" do subject(:payload) { response.payload } + let(:encoding) { "plain/text" } let(:http_response) { instance_double(::Net::HTTPResponse, body: "body") } + before do + expect(http_response).to receive(:[]).with("Content-Encoding").and_return(encoding) + end + it { is_expected.to be(http_response.body) } context "when payload is gzipped" do let(:expected_payload) { "sample_payload" } + let(:encoding) { "gzip" } let(:http_response) do instance_double(::Net::HTTPResponse, body: Datadog::CI::Transport::Gzip.compress(expected_payload)) end From 84230bec1c665daef7c2bb4b7e795eb0fec46ee1 Mon Sep 17 00:00:00 2001 From: Andrey Date: Wed, 19 Jun 2024 12:26:07 +0200 Subject: [PATCH 07/11] skip tracing for internal DD requests --- lib/datadog/ci/transport/adapters/net.rb | 6 +++ .../datadog/ci/transport/adapters/net_spec.rb | 4 +- .../ddtrace/0/datadog/core/transport/ext.rbs | 45 +++++++++++++++++++ 3 files changed, 53 insertions(+), 2 deletions(-) create mode 100644 vendor/rbs/ddtrace/0/datadog/core/transport/ext.rbs diff --git a/lib/datadog/ci/transport/adapters/net.rb b/lib/datadog/ci/transport/adapters/net.rb index ea699282..8d6ec4fc 100644 --- a/lib/datadog/ci/transport/adapters/net.rb +++ b/lib/datadog/ci/transport/adapters/net.rb @@ -1,7 +1,9 @@ # frozen_string_literal: true require "datadog/core/transport/response" +require "datadog/core/transport/ext" +require_relative "../gzip" require_relative "../../ext/transport" module Datadog @@ -33,6 +35,10 @@ def open(&block) end def call(path:, payload:, headers:, verb:) + headers ||= {} + # skip tracing for internal DD requests + headers[Core::Transport::Ext::HTTP::HEADER_DD_INTERNAL_UNTRACED_REQUEST] = "1" + if respond_to?(verb) send(verb, path: path, payload: payload, headers: headers) else diff --git a/spec/datadog/ci/transport/adapters/net_spec.rb b/spec/datadog/ci/transport/adapters/net_spec.rb index 9aee954e..4b1126ba 100644 --- a/spec/datadog/ci/transport/adapters/net_spec.rb +++ b/spec/datadog/ci/transport/adapters/net_spec.rb @@ -1,5 +1,4 @@ require_relative "../../../../../lib/datadog/ci/transport/adapters/net" -require_relative "../../../../../lib/datadog/ci/transport/gzip" RSpec.describe Datadog::CI::Transport::Adapters::Net do subject(:adapter) do @@ -57,6 +56,7 @@ let(:path) { "/foo" } let(:body) { "{}" } let(:headers) { {} } + let(:expected_headers) { {"DD-Internal-Untraced-Request" => "1"} } subject(:call) { adapter.call(verb: verb, path: path, payload: body, headers: headers) } @@ -74,7 +74,7 @@ it "makes a POST and produces a response" do expect(Net::HTTP::Post) .to receive(:new) - .with(path, headers) + .with(path, expected_headers) .and_return(post) expect(post) diff --git a/vendor/rbs/ddtrace/0/datadog/core/transport/ext.rbs b/vendor/rbs/ddtrace/0/datadog/core/transport/ext.rbs new file mode 100644 index 00000000..335e293b --- /dev/null +++ b/vendor/rbs/ddtrace/0/datadog/core/transport/ext.rbs @@ -0,0 +1,45 @@ +module Datadog + module Core + module Transport + module Ext + module HTTP + ADAPTER: :net_http + + DEFAULT_HOST: "127.0.0.1" + + DEFAULT_PORT: 8126 + + HEADER_CONTAINER_ID: ::String + + HEADER_DD_API_KEY: ::String + + HEADER_CLIENT_COMPUTED_TOP_LEVEL: ::String + + HEADER_META_LANG: ::String + + HEADER_META_LANG_INTERPRETER_VENDOR: ::String + + HEADER_META_LANG_VERSION: ::String + + HEADER_META_LANG_INTERPRETER: ::String + + HEADER_META_TRACER_VERSION: ::String + + HEADER_DD_INTERNAL_UNTRACED_REQUEST: ::String + end + + module Test + ADAPTER: :test + end + + module UnixSocket + ADAPTER: :unix + + DEFAULT_PATH: "/var/run/datadog/apm.socket" + + DEFAULT_TIMEOUT_SECONDS: 1 + end + end + end + end +end From c803e4b09bd1eb2ea3a7e5f266082717f96e12e1 Mon Sep 17 00:00:00 2001 From: Andrey Date: Wed, 19 Jun 2024 13:58:50 +0200 Subject: [PATCH 08/11] use OriginalNetHTTP when WebMock replaced Net::HTTP constant with a mock --- Gemfile | 13 +++-- Steepfile | 1 + gemfiles/jruby_9.4_activesupport_4.gemfile | 5 +- .../jruby_9.4_activesupport_4.gemfile.lock | 12 +++++ gemfiles/jruby_9.4_activesupport_5.gemfile | 5 +- .../jruby_9.4_activesupport_5.gemfile.lock | 12 +++++ gemfiles/jruby_9.4_activesupport_6.gemfile | 5 +- .../jruby_9.4_activesupport_6.gemfile.lock | 12 +++++ gemfiles/jruby_9.4_activesupport_7.gemfile | 5 +- .../jruby_9.4_activesupport_7.gemfile.lock | 12 +++++ .../jruby_9.4_ci_queue_0_minitest_5.gemfile | 5 +- ...uby_9.4_ci_queue_0_minitest_5.gemfile.lock | 13 +++++ gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile | 5 +- .../jruby_9.4_ci_queue_0_rspec_3.gemfile.lock | 13 +++++ gemfiles/jruby_9.4_cucumber_3.gemfile | 5 +- gemfiles/jruby_9.4_cucumber_3.gemfile.lock | 13 +++++ gemfiles/jruby_9.4_cucumber_4.gemfile | 5 +- gemfiles/jruby_9.4_cucumber_4.gemfile.lock | 13 +++++ gemfiles/jruby_9.4_cucumber_5.gemfile | 5 +- gemfiles/jruby_9.4_cucumber_5.gemfile.lock | 13 +++++ gemfiles/jruby_9.4_cucumber_6.gemfile | 5 +- gemfiles/jruby_9.4_cucumber_6.gemfile.lock | 13 +++++ gemfiles/jruby_9.4_cucumber_7.gemfile | 5 +- gemfiles/jruby_9.4_cucumber_7.gemfile.lock | 13 +++++ gemfiles/jruby_9.4_cucumber_8.gemfile | 5 +- gemfiles/jruby_9.4_cucumber_8.gemfile.lock | 13 +++++ gemfiles/jruby_9.4_cucumber_9.gemfile | 5 +- gemfiles/jruby_9.4_cucumber_9.gemfile.lock | 12 +++++ .../jruby_9.4_knapsack_pro_7_rspec_3.gemfile | 5 +- ...by_9.4_knapsack_pro_7_rspec_3.gemfile.lock | 13 +++++ gemfiles/jruby_9.4_minitest_5.gemfile | 5 +- gemfiles/jruby_9.4_minitest_5.gemfile.lock | 13 +++++ ...oulda_context_2_shoulda_matchers_6.gemfile | 5 +- ..._context_2_shoulda_matchers_6.gemfile.lock | 12 +++++ gemfiles/jruby_9.4_rspec_3.gemfile | 5 +- gemfiles/jruby_9.4_rspec_3.gemfile.lock | 13 +++++ .../jruby_9.4_selenium_4_capybara_3.gemfile | 5 +- ...uby_9.4_selenium_4_capybara_3.gemfile.lock | 9 ++++ gemfiles/jruby_9.4_timecop_0.gemfile | 5 +- gemfiles/jruby_9.4_timecop_0.gemfile.lock | 13 +++++ gemfiles/ruby_2.7_activesupport_4.gemfile | 5 +- .../ruby_2.7_activesupport_4.gemfile.lock | 13 +++++ gemfiles/ruby_2.7_activesupport_5.gemfile | 5 +- .../ruby_2.7_activesupport_5.gemfile.lock | 13 +++++ gemfiles/ruby_2.7_activesupport_6.gemfile | 5 +- .../ruby_2.7_activesupport_6.gemfile.lock | 13 +++++ gemfiles/ruby_2.7_activesupport_7.gemfile | 5 +- .../ruby_2.7_activesupport_7.gemfile.lock | 12 +++++ .../ruby_2.7_ci_queue_0_minitest_5.gemfile | 5 +- ...uby_2.7_ci_queue_0_minitest_5.gemfile.lock | 13 +++++ gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile | 5 +- .../ruby_2.7_ci_queue_0_rspec_3.gemfile.lock | 13 +++++ gemfiles/ruby_2.7_cucumber_3.gemfile | 5 +- gemfiles/ruby_2.7_cucumber_3.gemfile.lock | 13 +++++ gemfiles/ruby_2.7_cucumber_4.gemfile | 5 +- gemfiles/ruby_2.7_cucumber_4.gemfile.lock | 13 +++++ gemfiles/ruby_2.7_cucumber_5.gemfile | 5 +- gemfiles/ruby_2.7_cucumber_5.gemfile.lock | 13 +++++ gemfiles/ruby_2.7_cucumber_6.gemfile | 5 +- gemfiles/ruby_2.7_cucumber_6.gemfile.lock | 13 +++++ gemfiles/ruby_2.7_cucumber_7.gemfile | 5 +- gemfiles/ruby_2.7_cucumber_7.gemfile.lock | 13 +++++ gemfiles/ruby_2.7_cucumber_8.gemfile | 5 +- gemfiles/ruby_2.7_cucumber_8.gemfile.lock | 13 +++++ gemfiles/ruby_2.7_cucumber_9.gemfile | 5 +- gemfiles/ruby_2.7_cucumber_9.gemfile.lock | 12 +++++ .../ruby_2.7_knapsack_pro_7_rspec_3.gemfile | 5 +- ...by_2.7_knapsack_pro_7_rspec_3.gemfile.lock | 13 +++++ gemfiles/ruby_2.7_minitest_5.gemfile | 5 +- gemfiles/ruby_2.7_minitest_5.gemfile.lock | 13 +++++ gemfiles/ruby_2.7_rspec_3.gemfile | 5 +- gemfiles/ruby_2.7_rspec_3.gemfile.lock | 13 +++++ gemfiles/ruby_2.7_timecop_0.gemfile | 5 +- gemfiles/ruby_2.7_timecop_0.gemfile.lock | 13 +++++ gemfiles/ruby_3.0_activesupport_4.gemfile | 5 +- .../ruby_3.0_activesupport_4.gemfile.lock | 13 +++++ gemfiles/ruby_3.0_activesupport_5.gemfile | 5 +- .../ruby_3.0_activesupport_5.gemfile.lock | 13 +++++ gemfiles/ruby_3.0_activesupport_6.gemfile | 5 +- .../ruby_3.0_activesupport_6.gemfile.lock | 13 +++++ gemfiles/ruby_3.0_activesupport_7.gemfile | 5 +- .../ruby_3.0_activesupport_7.gemfile.lock | 12 +++++ .../ruby_3.0_ci_queue_0_minitest_5.gemfile | 5 +- ...uby_3.0_ci_queue_0_minitest_5.gemfile.lock | 13 +++++ gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile | 5 +- .../ruby_3.0_ci_queue_0_rspec_3.gemfile.lock | 13 +++++ gemfiles/ruby_3.0_cucumber_3.gemfile | 5 +- gemfiles/ruby_3.0_cucumber_3.gemfile.lock | 13 +++++ gemfiles/ruby_3.0_cucumber_4.gemfile | 5 +- gemfiles/ruby_3.0_cucumber_4.gemfile.lock | 13 +++++ gemfiles/ruby_3.0_cucumber_5.gemfile | 5 +- gemfiles/ruby_3.0_cucumber_5.gemfile.lock | 13 +++++ gemfiles/ruby_3.0_cucumber_6.gemfile | 5 +- gemfiles/ruby_3.0_cucumber_6.gemfile.lock | 13 +++++ gemfiles/ruby_3.0_cucumber_7.gemfile | 5 +- gemfiles/ruby_3.0_cucumber_7.gemfile.lock | 13 +++++ gemfiles/ruby_3.0_cucumber_8.gemfile | 5 +- gemfiles/ruby_3.0_cucumber_8.gemfile.lock | 13 +++++ gemfiles/ruby_3.0_cucumber_9.gemfile | 5 +- gemfiles/ruby_3.0_cucumber_9.gemfile.lock | 12 +++++ .../ruby_3.0_knapsack_pro_7_rspec_3.gemfile | 5 +- ...by_3.0_knapsack_pro_7_rspec_3.gemfile.lock | 13 +++++ gemfiles/ruby_3.0_minitest_5.gemfile | 5 +- gemfiles/ruby_3.0_minitest_5.gemfile.lock | 13 +++++ gemfiles/ruby_3.0_rspec_3.gemfile | 5 +- gemfiles/ruby_3.0_rspec_3.gemfile.lock | 13 +++++ .../ruby_3.0_selenium_4_capybara_3.gemfile | 5 +- ...uby_3.0_selenium_4_capybara_3.gemfile.lock | 9 ++++ gemfiles/ruby_3.0_timecop_0.gemfile | 5 +- gemfiles/ruby_3.0_timecop_0.gemfile.lock | 13 +++++ gemfiles/ruby_3.1_activesupport_4.gemfile | 5 +- .../ruby_3.1_activesupport_4.gemfile.lock | 13 +++++ gemfiles/ruby_3.1_activesupport_5.gemfile | 5 +- .../ruby_3.1_activesupport_5.gemfile.lock | 13 +++++ gemfiles/ruby_3.1_activesupport_6.gemfile | 5 +- .../ruby_3.1_activesupport_6.gemfile.lock | 13 +++++ gemfiles/ruby_3.1_activesupport_7.gemfile | 5 +- .../ruby_3.1_activesupport_7.gemfile.lock | 12 +++++ .../ruby_3.1_ci_queue_0_minitest_5.gemfile | 5 +- ...uby_3.1_ci_queue_0_minitest_5.gemfile.lock | 13 +++++ gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile | 5 +- .../ruby_3.1_ci_queue_0_rspec_3.gemfile.lock | 13 +++++ gemfiles/ruby_3.1_cucumber_3.gemfile | 5 +- gemfiles/ruby_3.1_cucumber_3.gemfile.lock | 13 +++++ gemfiles/ruby_3.1_cucumber_4.gemfile | 5 +- gemfiles/ruby_3.1_cucumber_4.gemfile.lock | 13 +++++ gemfiles/ruby_3.1_cucumber_5.gemfile | 5 +- gemfiles/ruby_3.1_cucumber_5.gemfile.lock | 13 +++++ gemfiles/ruby_3.1_cucumber_6.gemfile | 5 +- gemfiles/ruby_3.1_cucumber_6.gemfile.lock | 13 +++++ gemfiles/ruby_3.1_cucumber_7.gemfile | 5 +- gemfiles/ruby_3.1_cucumber_7.gemfile.lock | 13 +++++ gemfiles/ruby_3.1_cucumber_8.gemfile | 5 +- gemfiles/ruby_3.1_cucumber_8.gemfile.lock | 13 +++++ gemfiles/ruby_3.1_cucumber_9.gemfile | 5 +- gemfiles/ruby_3.1_cucumber_9.gemfile.lock | 12 +++++ .../ruby_3.1_knapsack_pro_7_rspec_3.gemfile | 5 +- ...by_3.1_knapsack_pro_7_rspec_3.gemfile.lock | 13 +++++ gemfiles/ruby_3.1_minitest_5.gemfile | 5 +- gemfiles/ruby_3.1_minitest_5.gemfile.lock | 13 +++++ ...oulda_context_2_shoulda_matchers_6.gemfile | 5 +- ..._context_2_shoulda_matchers_6.gemfile.lock | 12 +++++ gemfiles/ruby_3.1_rspec_3.gemfile | 5 +- gemfiles/ruby_3.1_rspec_3.gemfile.lock | 13 +++++ .../ruby_3.1_selenium_4_capybara_3.gemfile | 5 +- ...uby_3.1_selenium_4_capybara_3.gemfile.lock | 9 ++++ gemfiles/ruby_3.1_timecop_0.gemfile | 5 +- gemfiles/ruby_3.1_timecop_0.gemfile.lock | 13 +++++ gemfiles/ruby_3.2_activesupport_4.gemfile | 5 +- .../ruby_3.2_activesupport_4.gemfile.lock | 13 +++++ gemfiles/ruby_3.2_activesupport_5.gemfile | 5 +- .../ruby_3.2_activesupport_5.gemfile.lock | 13 +++++ gemfiles/ruby_3.2_activesupport_6.gemfile | 5 +- .../ruby_3.2_activesupport_6.gemfile.lock | 13 +++++ gemfiles/ruby_3.2_activesupport_7.gemfile | 5 +- .../ruby_3.2_activesupport_7.gemfile.lock | 12 +++++ .../ruby_3.2_ci_queue_0_minitest_5.gemfile | 5 +- ...uby_3.2_ci_queue_0_minitest_5.gemfile.lock | 13 +++++ gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile | 5 +- .../ruby_3.2_ci_queue_0_rspec_3.gemfile.lock | 13 +++++ gemfiles/ruby_3.2_cucumber_3.gemfile | 5 +- gemfiles/ruby_3.2_cucumber_3.gemfile.lock | 13 +++++ gemfiles/ruby_3.2_cucumber_4.gemfile | 5 +- gemfiles/ruby_3.2_cucumber_4.gemfile.lock | 13 +++++ gemfiles/ruby_3.2_cucumber_5.gemfile | 5 +- gemfiles/ruby_3.2_cucumber_5.gemfile.lock | 13 +++++ gemfiles/ruby_3.2_cucumber_6.gemfile | 5 +- gemfiles/ruby_3.2_cucumber_6.gemfile.lock | 13 +++++ gemfiles/ruby_3.2_cucumber_7.gemfile | 5 +- gemfiles/ruby_3.2_cucumber_7.gemfile.lock | 13 +++++ gemfiles/ruby_3.2_cucumber_8.gemfile | 5 +- gemfiles/ruby_3.2_cucumber_8.gemfile.lock | 13 +++++ gemfiles/ruby_3.2_cucumber_9.gemfile | 5 +- gemfiles/ruby_3.2_cucumber_9.gemfile.lock | 12 +++++ .../ruby_3.2_knapsack_pro_7_rspec_3.gemfile | 5 +- ...by_3.2_knapsack_pro_7_rspec_3.gemfile.lock | 13 +++++ gemfiles/ruby_3.2_minitest_5.gemfile | 5 +- gemfiles/ruby_3.2_minitest_5.gemfile.lock | 13 +++++ ...oulda_context_2_shoulda_matchers_6.gemfile | 5 +- ..._context_2_shoulda_matchers_6.gemfile.lock | 12 +++++ gemfiles/ruby_3.2_rspec_3.gemfile | 5 +- gemfiles/ruby_3.2_rspec_3.gemfile.lock | 13 +++++ .../ruby_3.2_selenium_4_capybara_3.gemfile | 5 +- ...uby_3.2_selenium_4_capybara_3.gemfile.lock | 9 ++++ gemfiles/ruby_3.2_timecop_0.gemfile | 5 +- gemfiles/ruby_3.2_timecop_0.gemfile.lock | 13 +++++ gemfiles/ruby_3.3_activesupport_4.gemfile | 5 +- .../ruby_3.3_activesupport_4.gemfile.lock | 13 +++++ gemfiles/ruby_3.3_activesupport_5.gemfile | 5 +- .../ruby_3.3_activesupport_5.gemfile.lock | 13 +++++ gemfiles/ruby_3.3_activesupport_6.gemfile | 5 +- .../ruby_3.3_activesupport_6.gemfile.lock | 13 +++++ gemfiles/ruby_3.3_activesupport_7.gemfile | 5 +- .../ruby_3.3_activesupport_7.gemfile.lock | 12 +++++ .../ruby_3.3_ci_queue_0_minitest_5.gemfile | 5 +- ...uby_3.3_ci_queue_0_minitest_5.gemfile.lock | 13 +++++ gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile | 5 +- .../ruby_3.3_ci_queue_0_rspec_3.gemfile.lock | 13 +++++ gemfiles/ruby_3.3_cucumber_3.gemfile | 5 +- gemfiles/ruby_3.3_cucumber_3.gemfile.lock | 13 +++++ gemfiles/ruby_3.3_cucumber_4.gemfile | 5 +- gemfiles/ruby_3.3_cucumber_4.gemfile.lock | 13 +++++ gemfiles/ruby_3.3_cucumber_5.gemfile | 5 +- gemfiles/ruby_3.3_cucumber_5.gemfile.lock | 13 +++++ gemfiles/ruby_3.3_cucumber_6.gemfile | 5 +- gemfiles/ruby_3.3_cucumber_6.gemfile.lock | 13 +++++ gemfiles/ruby_3.3_cucumber_7.gemfile | 5 +- gemfiles/ruby_3.3_cucumber_7.gemfile.lock | 13 +++++ gemfiles/ruby_3.3_cucumber_8.gemfile | 5 +- gemfiles/ruby_3.3_cucumber_8.gemfile.lock | 13 +++++ gemfiles/ruby_3.3_cucumber_9.gemfile | 5 +- gemfiles/ruby_3.3_cucumber_9.gemfile.lock | 12 +++++ .../ruby_3.3_knapsack_pro_7_rspec_3.gemfile | 5 +- ...by_3.3_knapsack_pro_7_rspec_3.gemfile.lock | 13 +++++ gemfiles/ruby_3.3_minitest_5.gemfile | 5 +- gemfiles/ruby_3.3_minitest_5.gemfile.lock | 13 +++++ ...oulda_context_2_shoulda_matchers_6.gemfile | 5 +- ..._context_2_shoulda_matchers_6.gemfile.lock | 12 +++++ gemfiles/ruby_3.3_rspec_3.gemfile | 5 +- gemfiles/ruby_3.3_rspec_3.gemfile.lock | 13 +++++ .../ruby_3.3_selenium_4_capybara_3.gemfile | 5 +- ...uby_3.3_selenium_4_capybara_3.gemfile.lock | 9 ++++ gemfiles/ruby_3.3_timecop_0.gemfile | 5 +- gemfiles/ruby_3.3_timecop_0.gemfile.lock | 13 +++++ lib/datadog/ci/transport/adapters/net.rb | 10 +++- lib/datadog/ci/transport/http.rb | 3 +- sig/datadog/ci/transport/adapters/net.rbs | 4 ++ .../datadog/ci/transport/adapters/net_spec.rb | 49 +++++++++++-------- vendor/rbs/webmock/0/webmock.rbs | 9 ++++ 229 files changed, 1799 insertions(+), 249 deletions(-) create mode 100644 vendor/rbs/webmock/0/webmock.rbs diff --git a/Gemfile b/Gemfile index 3717c4c4..e4f80a19 100644 --- a/Gemfile +++ b/Gemfile @@ -5,26 +5,31 @@ source "https://rubygems.org" # Specify your gem's dependencies in datadog-ci.gemspec gemspec +# dev experience gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" -# To compile native extensions +# native extensions gem "rake-compiler" +# testing gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" +gem "webmock" +# platform helpers +gem "os" -gem "standard", "~> 1.31" - +# docs and release gem "yard" gem "redcarpet" if RUBY_PLATFORM != "java" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" +# coverage gem "simplecov" gem "simplecov-cobertura", "~> 2.1.0" diff --git a/Steepfile b/Steepfile index 6f4fa2ab..70b44273 100644 --- a/Steepfile +++ b/Steepfile @@ -30,4 +30,5 @@ target :lib do library "selenium-webdriver" library "capybara" library "timecop" + library "webmock" end diff --git a/gemfiles/jruby_9.4_activesupport_4.gemfile b/gemfiles/jruby_9.4_activesupport_4.gemfile index 4745df16..9d547d0b 100644 --- a/gemfiles/jruby_9.4_activesupport_4.gemfile +++ b/gemfiles/jruby_9.4_activesupport_4.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_activesupport_4.gemfile.lock b/gemfiles/jruby_9.4_activesupport_4.gemfile.lock index 32c7907b..ec3a4a92 100644 --- a/gemfiles/jruby_9.4_activesupport_4.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport_4.gemfile.lock @@ -13,6 +13,8 @@ GEM minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -22,6 +24,9 @@ GEM climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -31,6 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3-java) + hashdiff (1.1.0) i18n (0.9.5) concurrent-ruby (~> 1.0) json (2.7.2-java) @@ -52,6 +58,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -123,6 +130,10 @@ GEM tzinfo (1.2.11) thread_safe (~> 0.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -146,6 +157,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_activesupport_5.gemfile b/gemfiles/jruby_9.4_activesupport_5.gemfile index 7ce49139..9630b65f 100644 --- a/gemfiles/jruby_9.4_activesupport_5.gemfile +++ b/gemfiles/jruby_9.4_activesupport_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_activesupport_5.gemfile.lock b/gemfiles/jruby_9.4_activesupport_5.gemfile.lock index 651b5639..4aa80af4 100644 --- a/gemfiles/jruby_9.4_activesupport_5.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport_5.gemfile.lock @@ -13,6 +13,8 @@ GEM i18n (>= 0.7, < 2) minitest (~> 5.1) tzinfo (~> 1.1) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -22,6 +24,9 @@ GEM climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -31,6 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3-java) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2-java) @@ -52,6 +58,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -123,6 +130,10 @@ GEM tzinfo (1.2.11) thread_safe (~> 0.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -146,6 +157,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_activesupport_6.gemfile b/gemfiles/jruby_9.4_activesupport_6.gemfile index ebea2200..eac337c8 100644 --- a/gemfiles/jruby_9.4_activesupport_6.gemfile +++ b/gemfiles/jruby_9.4_activesupport_6.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_activesupport_6.gemfile.lock b/gemfiles/jruby_9.4_activesupport_6.gemfile.lock index 54030cc9..b8db1e4a 100644 --- a/gemfiles/jruby_9.4_activesupport_6.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport_6.gemfile.lock @@ -14,6 +14,8 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) zeitwerk (~> 2.3) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -23,6 +25,9 @@ GEM climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -32,6 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3-java) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2-java) @@ -53,6 +59,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -123,6 +130,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) zeitwerk (2.6.14) @@ -147,6 +158,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_activesupport_7.gemfile b/gemfiles/jruby_9.4_activesupport_7.gemfile index ea0bf647..c34df769 100644 --- a/gemfiles/jruby_9.4_activesupport_7.gemfile +++ b/gemfiles/jruby_9.4_activesupport_7.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_activesupport_7.gemfile.lock b/gemfiles/jruby_9.4_activesupport_7.gemfile.lock index ff5308c1..bda1fc0b 100644 --- a/gemfiles/jruby_9.4_activesupport_7.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport_7.gemfile.lock @@ -18,6 +18,8 @@ GEM minitest (>= 5.1) mutex_m tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -29,6 +31,9 @@ GEM coderay (1.1.3) concurrent-ruby (1.2.3) connection_pool (2.4.1) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -39,6 +44,7 @@ GEM docile (1.4.0) drb (2.2.1) ffi (1.16.3-java) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2-java) @@ -61,6 +67,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -131,6 +138,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -154,6 +165,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile b/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile index 9029efa0..f71f7fed 100644 --- a/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile +++ b/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile.lock index 45497b27..02b1f69f 100644 --- a/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile.lock @@ -8,16 +8,22 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) ansi (1.5.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8-java) builder (3.2.4) ci-queue (0.53.0) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -27,6 +33,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3-java) + hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -51,6 +58,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -119,6 +127,10 @@ GEM strscan (3.1.0-java) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -143,6 +155,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile b/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile index dd5bfaa6..994db608 100644 --- a/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile +++ b/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile.lock index b9968384..c4cb547e 100644 --- a/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8-java) ci-queue (0.53.0) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -25,6 +31,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3-java) + hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -43,6 +50,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -111,6 +119,10 @@ GEM strscan (3.1.0-java) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -133,6 +145,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_cucumber_3.gemfile b/gemfiles/jruby_9.4_cucumber_3.gemfile index d9744c01..a945e37a 100644 --- a/gemfiles/jruby_9.4_cucumber_3.gemfile +++ b/gemfiles/jruby_9.4_cucumber_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_cucumber_3.gemfile.lock b/gemfiles/jruby_9.4_cucumber_3.gemfile.lock index f29cebd3..291f92ca 100644 --- a/gemfiles/jruby_9.4_cucumber_3.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_3.gemfile.lock @@ -8,15 +8,21 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) backports (3.25.0) + bigdecimal (3.1.8-java) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (3.2.0) builder (>= 2.1.2) cucumber-core (~> 3.2.0) @@ -43,6 +49,7 @@ GEM docile (1.4.0) ffi (1.16.3-java) gherkin (5.1.0) + hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -63,6 +70,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -131,6 +139,10 @@ GEM strscan (3.1.0-java) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -153,6 +165,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_cucumber_4.gemfile b/gemfiles/jruby_9.4_cucumber_4.gemfile index ca5c3e0c..b2513bca 100644 --- a/gemfiles/jruby_9.4_cucumber_4.gemfile +++ b/gemfiles/jruby_9.4_cucumber_4.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_cucumber_4.gemfile.lock b/gemfiles/jruby_9.4_cucumber_4.gemfile.lock index b0ee797d..0a451ca2 100644 --- a/gemfiles/jruby_9.4_cucumber_4.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_4.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8-java) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (4.1.0) builder (~> 3.2, >= 3.2.3) cucumber-core (~> 7.1, >= 7.1.0) @@ -62,6 +68,7 @@ GEM diff-lcs (1.3) docile (1.4.0) ffi (1.16.3-java) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2-java) @@ -90,6 +97,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -163,6 +171,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -186,6 +198,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_cucumber_5.gemfile b/gemfiles/jruby_9.4_cucumber_5.gemfile index 644d19db..410144b3 100644 --- a/gemfiles/jruby_9.4_cucumber_5.gemfile +++ b/gemfiles/jruby_9.4_cucumber_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_cucumber_5.gemfile.lock b/gemfiles/jruby_9.4_cucumber_5.gemfile.lock index b7af242b..b2bb3b4b 100644 --- a/gemfiles/jruby_9.4_cucumber_5.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_5.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8-java) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (5.3.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 8.0, >= 8.0.1) @@ -62,6 +68,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3-java) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2-java) @@ -90,6 +97,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -163,6 +171,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -186,6 +198,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_cucumber_6.gemfile b/gemfiles/jruby_9.4_cucumber_6.gemfile index b0cbc71f..d4e9e0c1 100644 --- a/gemfiles/jruby_9.4_cucumber_6.gemfile +++ b/gemfiles/jruby_9.4_cucumber_6.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_cucumber_6.gemfile.lock b/gemfiles/jruby_9.4_cucumber_6.gemfile.lock index 4fcbfa7a..ef48a344 100644 --- a/gemfiles/jruby_9.4_cucumber_6.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_6.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8-java) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (6.1.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 9.0, >= 9.0.1) @@ -63,6 +69,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3-java) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2-java) @@ -94,6 +101,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -167,6 +175,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -190,6 +202,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_cucumber_7.gemfile b/gemfiles/jruby_9.4_cucumber_7.gemfile index 0d6510dd..31fd56c9 100644 --- a/gemfiles/jruby_9.4_cucumber_7.gemfile +++ b/gemfiles/jruby_9.4_cucumber_7.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_cucumber_7.gemfile.lock b/gemfiles/jruby_9.4_cucumber_7.gemfile.lock index df7024af..1f5dba1b 100644 --- a/gemfiles/jruby_9.4_cucumber_7.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_7.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8-java) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (7.1.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 10.1, >= 10.1.0) @@ -55,6 +61,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3-java) + hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -77,6 +84,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -147,6 +155,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -169,6 +181,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_cucumber_8.gemfile b/gemfiles/jruby_9.4_cucumber_8.gemfile index 36462d1f..77f1771c 100644 --- a/gemfiles/jruby_9.4_cucumber_8.gemfile +++ b/gemfiles/jruby_9.4_cucumber_8.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_cucumber_8.gemfile.lock b/gemfiles/jruby_9.4_cucumber_8.gemfile.lock index 39c7bfe8..a0d66e2f 100644 --- a/gemfiles/jruby_9.4_cucumber_8.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_8.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8-java) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (8.0.0) builder (~> 3.2, >= 3.2.4) cucumber-ci-environment (~> 9.0, >= 9.0.4) @@ -49,6 +55,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3-java) + hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -71,6 +78,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -141,6 +149,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -163,6 +175,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_cucumber_9.gemfile b/gemfiles/jruby_9.4_cucumber_9.gemfile index ff0538da..70d6cc05 100644 --- a/gemfiles/jruby_9.4_cucumber_9.gemfile +++ b/gemfiles/jruby_9.4_cucumber_9.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_cucumber_9.gemfile.lock b/gemfiles/jruby_9.4_cucumber_9.gemfile.lock index a240e9fc..9c66efce 100644 --- a/gemfiles/jruby_9.4_cucumber_9.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_9.gemfile.lock @@ -8,6 +8,8 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -17,6 +19,9 @@ GEM builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (9.2.0) builder (~> 3.2) cucumber-ci-environment (> 9, < 11) @@ -51,6 +56,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3-java) + hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -71,6 +77,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -141,6 +148,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -164,6 +175,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile b/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile index aa42b7ca..3c7f0570 100644 --- a/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile +++ b/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile.lock index 9121f649..622eaf7a 100644 --- a/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8-java) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3-java) + hashdiff (1.1.0) json (2.7.2-java) knapsack_pro (7.3.0) rake @@ -44,6 +51,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -112,6 +120,10 @@ GEM strscan (3.1.0-java) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -134,6 +146,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_minitest_5.gemfile b/gemfiles/jruby_9.4_minitest_5.gemfile index a9e07ea2..2dda6e7b 100644 --- a/gemfiles/jruby_9.4_minitest_5.gemfile +++ b/gemfiles/jruby_9.4_minitest_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_minitest_5.gemfile.lock b/gemfiles/jruby_9.4_minitest_5.gemfile.lock index 6a39e63a..9f115916 100644 --- a/gemfiles/jruby_9.4_minitest_5.gemfile.lock +++ b/gemfiles/jruby_9.4_minitest_5.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8-java) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3-java) + hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -43,6 +50,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -111,6 +119,10 @@ GEM strscan (3.1.0-java) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -133,6 +145,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile index f7d05b44..afd942c9 100644 --- a/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile +++ b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock index 636108da..516edcf5 100644 --- a/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock +++ b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -18,6 +18,8 @@ GEM minitest (>= 5.1) mutex_m tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -29,6 +31,9 @@ GEM coderay (1.1.3) concurrent-ruby (1.2.3) connection_pool (2.4.1) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -39,6 +44,7 @@ GEM docile (1.4.0) drb (2.2.1) ffi (1.16.3-java) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2-java) @@ -61,6 +67,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -134,6 +141,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -159,6 +170,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_rspec_3.gemfile b/gemfiles/jruby_9.4_rspec_3.gemfile index 300bb0ef..f0adc196 100644 --- a/gemfiles/jruby_9.4_rspec_3.gemfile +++ b/gemfiles/jruby_9.4_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_rspec_3.gemfile.lock b/gemfiles/jruby_9.4_rspec_3.gemfile.lock index 1391daac..1d3f1185 100644 --- a/gemfiles/jruby_9.4_rspec_3.gemfile.lock +++ b/gemfiles/jruby_9.4_rspec_3.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8-java) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3-java) + hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -42,6 +49,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -110,6 +118,10 @@ GEM strscan (3.1.0-java) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -131,6 +143,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile b/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile index 4490a44e..f85f88c5 100644 --- a/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile +++ b/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile.lock b/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile.lock index c2c234ea..6c889448 100644 --- a/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile.lock +++ b/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile.lock @@ -29,6 +29,9 @@ GEM xpath (~> 3.2) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (9.2.0) builder (~> 3.2) cucumber-ci-environment (> 9, < 11) @@ -63,6 +66,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3-java) + hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -166,6 +170,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) websocket (1.2.10) xpath (3.2.0) @@ -193,6 +201,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/jruby_9.4_timecop_0.gemfile b/gemfiles/jruby_9.4_timecop_0.gemfile index ac165f7c..4b0d49fe 100644 --- a/gemfiles/jruby_9.4_timecop_0.gemfile +++ b/gemfiles/jruby_9.4_timecop_0.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "webrick" gem "pimpmychangelog", ">= 0.1.2" diff --git a/gemfiles/jruby_9.4_timecop_0.gemfile.lock b/gemfiles/jruby_9.4_timecop_0.gemfile.lock index 181d4597..9aff4870 100644 --- a/gemfiles/jruby_9.4_timecop_0.gemfile.lock +++ b/gemfiles/jruby_9.4_timecop_0.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8-java) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3-java) + hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -43,6 +50,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) + public_suffix (5.1.1) racc (1.8.0-java) rainbow (3.1.1) rake (13.2.1) @@ -112,6 +120,10 @@ GEM thor (1.3.1) timecop (0.9.8) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -135,6 +147,7 @@ DEPENDENCIES simplecov-cobertura (~> 2.1.0) standard (~> 1.31) timecop (~> 0) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_activesupport_4.gemfile b/gemfiles/ruby_2.7_activesupport_4.gemfile index c7b5e6dc..d5390edd 100644 --- a/gemfiles/ruby_2.7_activesupport_4.gemfile +++ b/gemfiles/ruby_2.7_activesupport_4.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_activesupport_4.gemfile.lock b/gemfiles/ruby_2.7_activesupport_4.gemfile.lock index a9cf258b..70a9c256 100644 --- a/gemfiles/ruby_2.7_activesupport_4.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport_4.gemfile.lock @@ -13,14 +13,20 @@ GEM minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -30,6 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (0.9.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -50,6 +57,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -120,6 +128,10 @@ GEM tzinfo (1.2.11) thread_safe (~> 0.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -143,6 +155,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_activesupport_5.gemfile b/gemfiles/ruby_2.7_activesupport_5.gemfile index a53ae421..19b2c36e 100644 --- a/gemfiles/ruby_2.7_activesupport_5.gemfile +++ b/gemfiles/ruby_2.7_activesupport_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_activesupport_5.gemfile.lock b/gemfiles/ruby_2.7_activesupport_5.gemfile.lock index 30a1947c..e0034e2e 100644 --- a/gemfiles/ruby_2.7_activesupport_5.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport_5.gemfile.lock @@ -13,14 +13,20 @@ GEM i18n (>= 0.7, < 2) minitest (~> 5.1) tzinfo (~> 1.1) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -30,6 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -50,6 +57,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -120,6 +128,10 @@ GEM tzinfo (1.2.11) thread_safe (~> 0.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -143,6 +155,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_activesupport_6.gemfile b/gemfiles/ruby_2.7_activesupport_6.gemfile index 72c7d929..08b90b65 100644 --- a/gemfiles/ruby_2.7_activesupport_6.gemfile +++ b/gemfiles/ruby_2.7_activesupport_6.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_activesupport_6.gemfile.lock b/gemfiles/ruby_2.7_activesupport_6.gemfile.lock index 5e7146fb..ac314b87 100644 --- a/gemfiles/ruby_2.7_activesupport_6.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport_6.gemfile.lock @@ -14,14 +14,20 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) zeitwerk (~> 2.3) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -31,6 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -51,6 +58,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -120,6 +128,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) zeitwerk (2.6.14) @@ -144,6 +156,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_activesupport_7.gemfile b/gemfiles/ruby_2.7_activesupport_7.gemfile index f3a9783e..b5e69dde 100644 --- a/gemfiles/ruby_2.7_activesupport_7.gemfile +++ b/gemfiles/ruby_2.7_activesupport_7.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_activesupport_7.gemfile.lock b/gemfiles/ruby_2.7_activesupport_7.gemfile.lock index d3485f95..69167791 100644 --- a/gemfiles/ruby_2.7_activesupport_7.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport_7.gemfile.lock @@ -18,6 +18,8 @@ GEM minitest (>= 5.1) mutex_m tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -29,6 +31,9 @@ GEM coderay (1.1.3) concurrent-ruby (1.2.3) connection_pool (2.4.1) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -39,6 +44,7 @@ GEM docile (1.4.0) drb (2.2.1) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -60,6 +66,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -129,6 +136,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -152,6 +163,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile b/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile index 7f71bd67..861333e8 100644 --- a/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile +++ b/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile.lock index 40466cc3..ddf127a2 100644 --- a/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile.lock @@ -8,16 +8,22 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) ansi (1.5.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) ci-queue (0.53.0) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -27,6 +33,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -50,6 +57,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -117,6 +125,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -142,6 +154,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile b/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile index c38c6a29..56e6dfbe 100644 --- a/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile +++ b/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile.lock index f8e318ae..f688ee56 100644 --- a/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) ci-queue (0.53.0) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -25,6 +31,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -42,6 +49,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -109,6 +117,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -132,6 +144,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_cucumber_3.gemfile b/gemfiles/ruby_2.7_cucumber_3.gemfile index 6837a1c9..849ed57a 100644 --- a/gemfiles/ruby_2.7_cucumber_3.gemfile +++ b/gemfiles/ruby_2.7_cucumber_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_cucumber_3.gemfile.lock b/gemfiles/ruby_2.7_cucumber_3.gemfile.lock index ee3bb92f..9e5bde91 100644 --- a/gemfiles/ruby_2.7_cucumber_3.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_3.gemfile.lock @@ -8,15 +8,21 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) backports (3.25.0) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (3.2.0) builder (>= 2.1.2) cucumber-core (~> 3.2.0) @@ -43,6 +49,7 @@ GEM docile (1.4.0) ffi (1.16.3) gherkin (5.1.0) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -62,6 +69,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -129,6 +137,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -152,6 +164,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_cucumber_4.gemfile b/gemfiles/ruby_2.7_cucumber_4.gemfile index 3bfe42fd..81d7688f 100644 --- a/gemfiles/ruby_2.7_cucumber_4.gemfile +++ b/gemfiles/ruby_2.7_cucumber_4.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_cucumber_4.gemfile.lock b/gemfiles/ruby_2.7_cucumber_4.gemfile.lock index b6ed29ba..4722ceb1 100644 --- a/gemfiles/ruby_2.7_cucumber_4.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_4.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (4.1.0) builder (~> 3.2, >= 3.2.3) cucumber-core (~> 7.1, >= 7.1.0) @@ -62,6 +68,7 @@ GEM diff-lcs (1.3) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -89,6 +96,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -161,6 +169,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -185,6 +197,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_cucumber_5.gemfile b/gemfiles/ruby_2.7_cucumber_5.gemfile index 880cac7a..ca727ad5 100644 --- a/gemfiles/ruby_2.7_cucumber_5.gemfile +++ b/gemfiles/ruby_2.7_cucumber_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_cucumber_5.gemfile.lock b/gemfiles/ruby_2.7_cucumber_5.gemfile.lock index dc898626..8f20287b 100644 --- a/gemfiles/ruby_2.7_cucumber_5.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_5.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (5.3.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 8.0, >= 8.0.1) @@ -62,6 +68,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -89,6 +96,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -161,6 +169,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -185,6 +197,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_cucumber_6.gemfile b/gemfiles/ruby_2.7_cucumber_6.gemfile index 6ff08208..6f606a66 100644 --- a/gemfiles/ruby_2.7_cucumber_6.gemfile +++ b/gemfiles/ruby_2.7_cucumber_6.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_cucumber_6.gemfile.lock b/gemfiles/ruby_2.7_cucumber_6.gemfile.lock index 1f6566f4..d3f3acf0 100644 --- a/gemfiles/ruby_2.7_cucumber_6.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_6.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (6.1.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 9.0, >= 9.0.1) @@ -63,6 +69,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -93,6 +100,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -165,6 +173,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -189,6 +201,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_cucumber_7.gemfile b/gemfiles/ruby_2.7_cucumber_7.gemfile index c0a0a7e1..d5a074b1 100644 --- a/gemfiles/ruby_2.7_cucumber_7.gemfile +++ b/gemfiles/ruby_2.7_cucumber_7.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_cucumber_7.gemfile.lock b/gemfiles/ruby_2.7_cucumber_7.gemfile.lock index 46c19d3c..29c7c8e3 100644 --- a/gemfiles/ruby_2.7_cucumber_7.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_7.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (7.1.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 10.1, >= 10.1.0) @@ -55,6 +61,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -76,6 +83,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -145,6 +153,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -168,6 +180,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_cucumber_8.gemfile b/gemfiles/ruby_2.7_cucumber_8.gemfile index 62cfab9c..16fcbcf9 100644 --- a/gemfiles/ruby_2.7_cucumber_8.gemfile +++ b/gemfiles/ruby_2.7_cucumber_8.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_cucumber_8.gemfile.lock b/gemfiles/ruby_2.7_cucumber_8.gemfile.lock index 3b5b1d21..acfb97a8 100644 --- a/gemfiles/ruby_2.7_cucumber_8.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_8.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (8.0.0) builder (~> 3.2, >= 3.2.4) cucumber-ci-environment (~> 9.0, >= 9.0.4) @@ -49,6 +55,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -70,6 +77,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -139,6 +147,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -162,6 +174,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_cucumber_9.gemfile b/gemfiles/ruby_2.7_cucumber_9.gemfile index 89b7b1ed..c66998c8 100644 --- a/gemfiles/ruby_2.7_cucumber_9.gemfile +++ b/gemfiles/ruby_2.7_cucumber_9.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_cucumber_9.gemfile.lock b/gemfiles/ruby_2.7_cucumber_9.gemfile.lock index d0a16292..bc1b0333 100644 --- a/gemfiles/ruby_2.7_cucumber_9.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_9.gemfile.lock @@ -8,6 +8,8 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -17,6 +19,9 @@ GEM builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (9.2.0) builder (~> 3.2) cucumber-ci-environment (> 9, < 11) @@ -51,6 +56,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -70,6 +76,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -139,6 +146,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -162,6 +173,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile b/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile index c6c71be2..7874f38d 100644 --- a/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile +++ b/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile.lock index 8e9513e3..28c1eadf 100644 --- a/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) knapsack_pro (7.3.0) rake @@ -43,6 +50,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -110,6 +118,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -133,6 +145,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_minitest_5.gemfile b/gemfiles/ruby_2.7_minitest_5.gemfile index 53336cdd..0fca7f18 100644 --- a/gemfiles/ruby_2.7_minitest_5.gemfile +++ b/gemfiles/ruby_2.7_minitest_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_minitest_5.gemfile.lock b/gemfiles/ruby_2.7_minitest_5.gemfile.lock index e0206186..de2e21a8 100644 --- a/gemfiles/ruby_2.7_minitest_5.gemfile.lock +++ b/gemfiles/ruby_2.7_minitest_5.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -42,6 +49,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -109,6 +117,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -132,6 +144,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_rspec_3.gemfile b/gemfiles/ruby_2.7_rspec_3.gemfile index 3c063913..39cac410 100644 --- a/gemfiles/ruby_2.7_rspec_3.gemfile +++ b/gemfiles/ruby_2.7_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_rspec_3.gemfile.lock b/gemfiles/ruby_2.7_rspec_3.gemfile.lock index 9c68f20a..345286c9 100644 --- a/gemfiles/ruby_2.7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_2.7_rspec_3.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -41,6 +48,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -108,6 +116,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -130,6 +142,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_2.7_timecop_0.gemfile b/gemfiles/ruby_2.7_timecop_0.gemfile index edb677de..bb30673d 100644 --- a/gemfiles/ruby_2.7_timecop_0.gemfile +++ b/gemfiles/ruby_2.7_timecop_0.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_2.7_timecop_0.gemfile.lock b/gemfiles/ruby_2.7_timecop_0.gemfile.lock index 20067d79..1faa626d 100644 --- a/gemfiles/ruby_2.7_timecop_0.gemfile.lock +++ b/gemfiles/ruby_2.7_timecop_0.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -42,6 +49,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -110,6 +118,10 @@ GEM thor (1.3.1) timecop (0.9.8) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -134,6 +146,7 @@ DEPENDENCIES simplecov-cobertura (~> 2.1.0) standard (~> 1.31) timecop (~> 0) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_activesupport_4.gemfile b/gemfiles/ruby_3.0_activesupport_4.gemfile index c7b5e6dc..d5390edd 100644 --- a/gemfiles/ruby_3.0_activesupport_4.gemfile +++ b/gemfiles/ruby_3.0_activesupport_4.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_activesupport_4.gemfile.lock b/gemfiles/ruby_3.0_activesupport_4.gemfile.lock index a9cf258b..70a9c256 100644 --- a/gemfiles/ruby_3.0_activesupport_4.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport_4.gemfile.lock @@ -13,14 +13,20 @@ GEM minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -30,6 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (0.9.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -50,6 +57,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -120,6 +128,10 @@ GEM tzinfo (1.2.11) thread_safe (~> 0.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -143,6 +155,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_activesupport_5.gemfile b/gemfiles/ruby_3.0_activesupport_5.gemfile index a53ae421..19b2c36e 100644 --- a/gemfiles/ruby_3.0_activesupport_5.gemfile +++ b/gemfiles/ruby_3.0_activesupport_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_activesupport_5.gemfile.lock b/gemfiles/ruby_3.0_activesupport_5.gemfile.lock index 30a1947c..e0034e2e 100644 --- a/gemfiles/ruby_3.0_activesupport_5.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport_5.gemfile.lock @@ -13,14 +13,20 @@ GEM i18n (>= 0.7, < 2) minitest (~> 5.1) tzinfo (~> 1.1) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -30,6 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -50,6 +57,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -120,6 +128,10 @@ GEM tzinfo (1.2.11) thread_safe (~> 0.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -143,6 +155,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_activesupport_6.gemfile b/gemfiles/ruby_3.0_activesupport_6.gemfile index 72c7d929..08b90b65 100644 --- a/gemfiles/ruby_3.0_activesupport_6.gemfile +++ b/gemfiles/ruby_3.0_activesupport_6.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_activesupport_6.gemfile.lock b/gemfiles/ruby_3.0_activesupport_6.gemfile.lock index 5e7146fb..ac314b87 100644 --- a/gemfiles/ruby_3.0_activesupport_6.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport_6.gemfile.lock @@ -14,14 +14,20 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) zeitwerk (~> 2.3) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -31,6 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -51,6 +58,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -120,6 +128,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) zeitwerk (2.6.14) @@ -144,6 +156,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_activesupport_7.gemfile b/gemfiles/ruby_3.0_activesupport_7.gemfile index f3a9783e..b5e69dde 100644 --- a/gemfiles/ruby_3.0_activesupport_7.gemfile +++ b/gemfiles/ruby_3.0_activesupport_7.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_activesupport_7.gemfile.lock b/gemfiles/ruby_3.0_activesupport_7.gemfile.lock index d3485f95..69167791 100644 --- a/gemfiles/ruby_3.0_activesupport_7.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport_7.gemfile.lock @@ -18,6 +18,8 @@ GEM minitest (>= 5.1) mutex_m tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -29,6 +31,9 @@ GEM coderay (1.1.3) concurrent-ruby (1.2.3) connection_pool (2.4.1) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -39,6 +44,7 @@ GEM docile (1.4.0) drb (2.2.1) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -60,6 +66,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -129,6 +136,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -152,6 +163,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile b/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile index 7f71bd67..861333e8 100644 --- a/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile +++ b/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile.lock index 40466cc3..ddf127a2 100644 --- a/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile.lock @@ -8,16 +8,22 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) ansi (1.5.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) ci-queue (0.53.0) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -27,6 +33,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -50,6 +57,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -117,6 +125,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -142,6 +154,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile b/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile index c38c6a29..56e6dfbe 100644 --- a/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile +++ b/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile.lock index f8e318ae..f688ee56 100644 --- a/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) ci-queue (0.53.0) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -25,6 +31,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -42,6 +49,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -109,6 +117,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -132,6 +144,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_cucumber_3.gemfile b/gemfiles/ruby_3.0_cucumber_3.gemfile index 6837a1c9..849ed57a 100644 --- a/gemfiles/ruby_3.0_cucumber_3.gemfile +++ b/gemfiles/ruby_3.0_cucumber_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_cucumber_3.gemfile.lock b/gemfiles/ruby_3.0_cucumber_3.gemfile.lock index ee3bb92f..9e5bde91 100644 --- a/gemfiles/ruby_3.0_cucumber_3.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_3.gemfile.lock @@ -8,15 +8,21 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) backports (3.25.0) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (3.2.0) builder (>= 2.1.2) cucumber-core (~> 3.2.0) @@ -43,6 +49,7 @@ GEM docile (1.4.0) ffi (1.16.3) gherkin (5.1.0) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -62,6 +69,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -129,6 +137,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -152,6 +164,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_cucumber_4.gemfile b/gemfiles/ruby_3.0_cucumber_4.gemfile index 3bfe42fd..81d7688f 100644 --- a/gemfiles/ruby_3.0_cucumber_4.gemfile +++ b/gemfiles/ruby_3.0_cucumber_4.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_cucumber_4.gemfile.lock b/gemfiles/ruby_3.0_cucumber_4.gemfile.lock index b6ed29ba..4722ceb1 100644 --- a/gemfiles/ruby_3.0_cucumber_4.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_4.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (4.1.0) builder (~> 3.2, >= 3.2.3) cucumber-core (~> 7.1, >= 7.1.0) @@ -62,6 +68,7 @@ GEM diff-lcs (1.3) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -89,6 +96,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -161,6 +169,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -185,6 +197,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_cucumber_5.gemfile b/gemfiles/ruby_3.0_cucumber_5.gemfile index 880cac7a..ca727ad5 100644 --- a/gemfiles/ruby_3.0_cucumber_5.gemfile +++ b/gemfiles/ruby_3.0_cucumber_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_cucumber_5.gemfile.lock b/gemfiles/ruby_3.0_cucumber_5.gemfile.lock index dc898626..8f20287b 100644 --- a/gemfiles/ruby_3.0_cucumber_5.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_5.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (5.3.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 8.0, >= 8.0.1) @@ -62,6 +68,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -89,6 +96,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -161,6 +169,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -185,6 +197,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_cucumber_6.gemfile b/gemfiles/ruby_3.0_cucumber_6.gemfile index 6ff08208..6f606a66 100644 --- a/gemfiles/ruby_3.0_cucumber_6.gemfile +++ b/gemfiles/ruby_3.0_cucumber_6.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_cucumber_6.gemfile.lock b/gemfiles/ruby_3.0_cucumber_6.gemfile.lock index 1f6566f4..d3f3acf0 100644 --- a/gemfiles/ruby_3.0_cucumber_6.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_6.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (6.1.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 9.0, >= 9.0.1) @@ -63,6 +69,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -93,6 +100,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -165,6 +173,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -189,6 +201,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_cucumber_7.gemfile b/gemfiles/ruby_3.0_cucumber_7.gemfile index c0a0a7e1..d5a074b1 100644 --- a/gemfiles/ruby_3.0_cucumber_7.gemfile +++ b/gemfiles/ruby_3.0_cucumber_7.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_cucumber_7.gemfile.lock b/gemfiles/ruby_3.0_cucumber_7.gemfile.lock index 46c19d3c..29c7c8e3 100644 --- a/gemfiles/ruby_3.0_cucumber_7.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_7.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (7.1.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 10.1, >= 10.1.0) @@ -55,6 +61,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -76,6 +83,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -145,6 +153,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -168,6 +180,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_cucumber_8.gemfile b/gemfiles/ruby_3.0_cucumber_8.gemfile index 62cfab9c..16fcbcf9 100644 --- a/gemfiles/ruby_3.0_cucumber_8.gemfile +++ b/gemfiles/ruby_3.0_cucumber_8.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_cucumber_8.gemfile.lock b/gemfiles/ruby_3.0_cucumber_8.gemfile.lock index 3b5b1d21..acfb97a8 100644 --- a/gemfiles/ruby_3.0_cucumber_8.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_8.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (8.0.0) builder (~> 3.2, >= 3.2.4) cucumber-ci-environment (~> 9.0, >= 9.0.4) @@ -49,6 +55,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -70,6 +77,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -139,6 +147,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -162,6 +174,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_cucumber_9.gemfile b/gemfiles/ruby_3.0_cucumber_9.gemfile index 89b7b1ed..c66998c8 100644 --- a/gemfiles/ruby_3.0_cucumber_9.gemfile +++ b/gemfiles/ruby_3.0_cucumber_9.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_cucumber_9.gemfile.lock b/gemfiles/ruby_3.0_cucumber_9.gemfile.lock index d0a16292..bc1b0333 100644 --- a/gemfiles/ruby_3.0_cucumber_9.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_9.gemfile.lock @@ -8,6 +8,8 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -17,6 +19,9 @@ GEM builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (9.2.0) builder (~> 3.2) cucumber-ci-environment (> 9, < 11) @@ -51,6 +56,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -70,6 +76,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -139,6 +146,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -162,6 +173,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile b/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile index c6c71be2..7874f38d 100644 --- a/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile +++ b/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile.lock index 8e9513e3..28c1eadf 100644 --- a/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) knapsack_pro (7.3.0) rake @@ -43,6 +50,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -110,6 +118,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -133,6 +145,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_minitest_5.gemfile b/gemfiles/ruby_3.0_minitest_5.gemfile index 53336cdd..0fca7f18 100644 --- a/gemfiles/ruby_3.0_minitest_5.gemfile +++ b/gemfiles/ruby_3.0_minitest_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_minitest_5.gemfile.lock b/gemfiles/ruby_3.0_minitest_5.gemfile.lock index e0206186..de2e21a8 100644 --- a/gemfiles/ruby_3.0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.0_minitest_5.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -42,6 +49,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -109,6 +117,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -132,6 +144,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_rspec_3.gemfile b/gemfiles/ruby_3.0_rspec_3.gemfile index 3c063913..39cac410 100644 --- a/gemfiles/ruby_3.0_rspec_3.gemfile +++ b/gemfiles/ruby_3.0_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_rspec_3.gemfile.lock b/gemfiles/ruby_3.0_rspec_3.gemfile.lock index 9c68f20a..345286c9 100644 --- a/gemfiles/ruby_3.0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.0_rspec_3.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -41,6 +48,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -108,6 +116,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -130,6 +142,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile b/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile index 6a144f35..721816a4 100644 --- a/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile +++ b/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile.lock b/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile.lock index 02e484ec..623bd329 100644 --- a/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile.lock +++ b/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile.lock @@ -29,6 +29,9 @@ GEM xpath (~> 3.2) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (9.2.0) builder (~> 3.2) cucumber-ci-environment (> 9, < 11) @@ -63,6 +66,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -164,6 +168,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) websocket (1.2.10) xpath (3.2.0) @@ -192,6 +200,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.0_timecop_0.gemfile b/gemfiles/ruby_3.0_timecop_0.gemfile index edb677de..bb30673d 100644 --- a/gemfiles/ruby_3.0_timecop_0.gemfile +++ b/gemfiles/ruby_3.0_timecop_0.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.0_timecop_0.gemfile.lock b/gemfiles/ruby_3.0_timecop_0.gemfile.lock index 20067d79..1faa626d 100644 --- a/gemfiles/ruby_3.0_timecop_0.gemfile.lock +++ b/gemfiles/ruby_3.0_timecop_0.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -42,6 +49,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -110,6 +118,10 @@ GEM thor (1.3.1) timecop (0.9.8) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -134,6 +146,7 @@ DEPENDENCIES simplecov-cobertura (~> 2.1.0) standard (~> 1.31) timecop (~> 0) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_activesupport_4.gemfile b/gemfiles/ruby_3.1_activesupport_4.gemfile index c7b5e6dc..d5390edd 100644 --- a/gemfiles/ruby_3.1_activesupport_4.gemfile +++ b/gemfiles/ruby_3.1_activesupport_4.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_activesupport_4.gemfile.lock b/gemfiles/ruby_3.1_activesupport_4.gemfile.lock index a9cf258b..70a9c256 100644 --- a/gemfiles/ruby_3.1_activesupport_4.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport_4.gemfile.lock @@ -13,14 +13,20 @@ GEM minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -30,6 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (0.9.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -50,6 +57,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -120,6 +128,10 @@ GEM tzinfo (1.2.11) thread_safe (~> 0.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -143,6 +155,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_activesupport_5.gemfile b/gemfiles/ruby_3.1_activesupport_5.gemfile index a53ae421..19b2c36e 100644 --- a/gemfiles/ruby_3.1_activesupport_5.gemfile +++ b/gemfiles/ruby_3.1_activesupport_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_activesupport_5.gemfile.lock b/gemfiles/ruby_3.1_activesupport_5.gemfile.lock index 30a1947c..e0034e2e 100644 --- a/gemfiles/ruby_3.1_activesupport_5.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport_5.gemfile.lock @@ -13,14 +13,20 @@ GEM i18n (>= 0.7, < 2) minitest (~> 5.1) tzinfo (~> 1.1) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -30,6 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -50,6 +57,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -120,6 +128,10 @@ GEM tzinfo (1.2.11) thread_safe (~> 0.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -143,6 +155,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_activesupport_6.gemfile b/gemfiles/ruby_3.1_activesupport_6.gemfile index 72c7d929..08b90b65 100644 --- a/gemfiles/ruby_3.1_activesupport_6.gemfile +++ b/gemfiles/ruby_3.1_activesupport_6.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_activesupport_6.gemfile.lock b/gemfiles/ruby_3.1_activesupport_6.gemfile.lock index 5e7146fb..ac314b87 100644 --- a/gemfiles/ruby_3.1_activesupport_6.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport_6.gemfile.lock @@ -14,14 +14,20 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) zeitwerk (~> 2.3) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -31,6 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -51,6 +58,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -120,6 +128,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) zeitwerk (2.6.14) @@ -144,6 +156,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_activesupport_7.gemfile b/gemfiles/ruby_3.1_activesupport_7.gemfile index f3a9783e..b5e69dde 100644 --- a/gemfiles/ruby_3.1_activesupport_7.gemfile +++ b/gemfiles/ruby_3.1_activesupport_7.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_activesupport_7.gemfile.lock b/gemfiles/ruby_3.1_activesupport_7.gemfile.lock index d3485f95..69167791 100644 --- a/gemfiles/ruby_3.1_activesupport_7.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport_7.gemfile.lock @@ -18,6 +18,8 @@ GEM minitest (>= 5.1) mutex_m tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -29,6 +31,9 @@ GEM coderay (1.1.3) concurrent-ruby (1.2.3) connection_pool (2.4.1) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -39,6 +44,7 @@ GEM docile (1.4.0) drb (2.2.1) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -60,6 +66,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -129,6 +136,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -152,6 +163,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile b/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile index 7f71bd67..861333e8 100644 --- a/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile +++ b/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile.lock index 40466cc3..ddf127a2 100644 --- a/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile.lock @@ -8,16 +8,22 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) ansi (1.5.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) ci-queue (0.53.0) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -27,6 +33,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -50,6 +57,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -117,6 +125,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -142,6 +154,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile b/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile index c38c6a29..56e6dfbe 100644 --- a/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile +++ b/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile.lock index f8e318ae..f688ee56 100644 --- a/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) ci-queue (0.53.0) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -25,6 +31,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -42,6 +49,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -109,6 +117,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -132,6 +144,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_cucumber_3.gemfile b/gemfiles/ruby_3.1_cucumber_3.gemfile index 6837a1c9..849ed57a 100644 --- a/gemfiles/ruby_3.1_cucumber_3.gemfile +++ b/gemfiles/ruby_3.1_cucumber_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_cucumber_3.gemfile.lock b/gemfiles/ruby_3.1_cucumber_3.gemfile.lock index ee3bb92f..9e5bde91 100644 --- a/gemfiles/ruby_3.1_cucumber_3.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_3.gemfile.lock @@ -8,15 +8,21 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) backports (3.25.0) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (3.2.0) builder (>= 2.1.2) cucumber-core (~> 3.2.0) @@ -43,6 +49,7 @@ GEM docile (1.4.0) ffi (1.16.3) gherkin (5.1.0) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -62,6 +69,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -129,6 +137,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -152,6 +164,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_cucumber_4.gemfile b/gemfiles/ruby_3.1_cucumber_4.gemfile index 3bfe42fd..81d7688f 100644 --- a/gemfiles/ruby_3.1_cucumber_4.gemfile +++ b/gemfiles/ruby_3.1_cucumber_4.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_cucumber_4.gemfile.lock b/gemfiles/ruby_3.1_cucumber_4.gemfile.lock index b6ed29ba..4722ceb1 100644 --- a/gemfiles/ruby_3.1_cucumber_4.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_4.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (4.1.0) builder (~> 3.2, >= 3.2.3) cucumber-core (~> 7.1, >= 7.1.0) @@ -62,6 +68,7 @@ GEM diff-lcs (1.3) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -89,6 +96,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -161,6 +169,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -185,6 +197,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_cucumber_5.gemfile b/gemfiles/ruby_3.1_cucumber_5.gemfile index 880cac7a..ca727ad5 100644 --- a/gemfiles/ruby_3.1_cucumber_5.gemfile +++ b/gemfiles/ruby_3.1_cucumber_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_cucumber_5.gemfile.lock b/gemfiles/ruby_3.1_cucumber_5.gemfile.lock index dc898626..8f20287b 100644 --- a/gemfiles/ruby_3.1_cucumber_5.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_5.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (5.3.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 8.0, >= 8.0.1) @@ -62,6 +68,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -89,6 +96,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -161,6 +169,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -185,6 +197,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_cucumber_6.gemfile b/gemfiles/ruby_3.1_cucumber_6.gemfile index 6ff08208..6f606a66 100644 --- a/gemfiles/ruby_3.1_cucumber_6.gemfile +++ b/gemfiles/ruby_3.1_cucumber_6.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_cucumber_6.gemfile.lock b/gemfiles/ruby_3.1_cucumber_6.gemfile.lock index 1f6566f4..d3f3acf0 100644 --- a/gemfiles/ruby_3.1_cucumber_6.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_6.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (6.1.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 9.0, >= 9.0.1) @@ -63,6 +69,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -93,6 +100,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -165,6 +173,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -189,6 +201,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_cucumber_7.gemfile b/gemfiles/ruby_3.1_cucumber_7.gemfile index c0a0a7e1..d5a074b1 100644 --- a/gemfiles/ruby_3.1_cucumber_7.gemfile +++ b/gemfiles/ruby_3.1_cucumber_7.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_cucumber_7.gemfile.lock b/gemfiles/ruby_3.1_cucumber_7.gemfile.lock index 46c19d3c..29c7c8e3 100644 --- a/gemfiles/ruby_3.1_cucumber_7.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_7.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (7.1.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 10.1, >= 10.1.0) @@ -55,6 +61,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -76,6 +83,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -145,6 +153,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -168,6 +180,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_cucumber_8.gemfile b/gemfiles/ruby_3.1_cucumber_8.gemfile index 62cfab9c..16fcbcf9 100644 --- a/gemfiles/ruby_3.1_cucumber_8.gemfile +++ b/gemfiles/ruby_3.1_cucumber_8.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_cucumber_8.gemfile.lock b/gemfiles/ruby_3.1_cucumber_8.gemfile.lock index 3b5b1d21..acfb97a8 100644 --- a/gemfiles/ruby_3.1_cucumber_8.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_8.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (8.0.0) builder (~> 3.2, >= 3.2.4) cucumber-ci-environment (~> 9.0, >= 9.0.4) @@ -49,6 +55,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -70,6 +77,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -139,6 +147,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -162,6 +174,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_cucumber_9.gemfile b/gemfiles/ruby_3.1_cucumber_9.gemfile index 89b7b1ed..c66998c8 100644 --- a/gemfiles/ruby_3.1_cucumber_9.gemfile +++ b/gemfiles/ruby_3.1_cucumber_9.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_cucumber_9.gemfile.lock b/gemfiles/ruby_3.1_cucumber_9.gemfile.lock index d0a16292..bc1b0333 100644 --- a/gemfiles/ruby_3.1_cucumber_9.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_9.gemfile.lock @@ -8,6 +8,8 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -17,6 +19,9 @@ GEM builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (9.2.0) builder (~> 3.2) cucumber-ci-environment (> 9, < 11) @@ -51,6 +56,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -70,6 +76,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -139,6 +146,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -162,6 +173,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile b/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile index c6c71be2..7874f38d 100644 --- a/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile +++ b/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile.lock index 8e9513e3..28c1eadf 100644 --- a/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) knapsack_pro (7.3.0) rake @@ -43,6 +50,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -110,6 +118,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -133,6 +145,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_minitest_5.gemfile b/gemfiles/ruby_3.1_minitest_5.gemfile index 53336cdd..0fca7f18 100644 --- a/gemfiles/ruby_3.1_minitest_5.gemfile +++ b/gemfiles/ruby_3.1_minitest_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_minitest_5.gemfile.lock b/gemfiles/ruby_3.1_minitest_5.gemfile.lock index e0206186..de2e21a8 100644 --- a/gemfiles/ruby_3.1_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.1_minitest_5.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -42,6 +49,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -109,6 +117,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -132,6 +144,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile index 0c453009..a13663f9 100644 --- a/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile +++ b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock index ca797c29..a7abed5d 100644 --- a/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock +++ b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -18,6 +18,8 @@ GEM minitest (>= 5.1) mutex_m tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -29,6 +31,9 @@ GEM coderay (1.1.3) concurrent-ruby (1.2.3) connection_pool (2.4.1) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -39,6 +44,7 @@ GEM docile (1.4.0) drb (2.2.1) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -60,6 +66,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -132,6 +139,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -157,6 +168,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_rspec_3.gemfile b/gemfiles/ruby_3.1_rspec_3.gemfile index 3c063913..39cac410 100644 --- a/gemfiles/ruby_3.1_rspec_3.gemfile +++ b/gemfiles/ruby_3.1_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_rspec_3.gemfile.lock b/gemfiles/ruby_3.1_rspec_3.gemfile.lock index 9c68f20a..345286c9 100644 --- a/gemfiles/ruby_3.1_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.1_rspec_3.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -41,6 +48,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -108,6 +116,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -130,6 +142,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile b/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile index 6a144f35..721816a4 100644 --- a/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile +++ b/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile.lock b/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile.lock index 02e484ec..623bd329 100644 --- a/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile.lock +++ b/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile.lock @@ -29,6 +29,9 @@ GEM xpath (~> 3.2) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (9.2.0) builder (~> 3.2) cucumber-ci-environment (> 9, < 11) @@ -63,6 +66,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -164,6 +168,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) websocket (1.2.10) xpath (3.2.0) @@ -192,6 +200,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.1_timecop_0.gemfile b/gemfiles/ruby_3.1_timecop_0.gemfile index edb677de..bb30673d 100644 --- a/gemfiles/ruby_3.1_timecop_0.gemfile +++ b/gemfiles/ruby_3.1_timecop_0.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.1_timecop_0.gemfile.lock b/gemfiles/ruby_3.1_timecop_0.gemfile.lock index 20067d79..1faa626d 100644 --- a/gemfiles/ruby_3.1_timecop_0.gemfile.lock +++ b/gemfiles/ruby_3.1_timecop_0.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -42,6 +49,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -110,6 +118,10 @@ GEM thor (1.3.1) timecop (0.9.8) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -134,6 +146,7 @@ DEPENDENCIES simplecov-cobertura (~> 2.1.0) standard (~> 1.31) timecop (~> 0) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_activesupport_4.gemfile b/gemfiles/ruby_3.2_activesupport_4.gemfile index c7b5e6dc..d5390edd 100644 --- a/gemfiles/ruby_3.2_activesupport_4.gemfile +++ b/gemfiles/ruby_3.2_activesupport_4.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_activesupport_4.gemfile.lock b/gemfiles/ruby_3.2_activesupport_4.gemfile.lock index a9cf258b..70a9c256 100644 --- a/gemfiles/ruby_3.2_activesupport_4.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport_4.gemfile.lock @@ -13,14 +13,20 @@ GEM minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -30,6 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (0.9.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -50,6 +57,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -120,6 +128,10 @@ GEM tzinfo (1.2.11) thread_safe (~> 0.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -143,6 +155,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_activesupport_5.gemfile b/gemfiles/ruby_3.2_activesupport_5.gemfile index a53ae421..19b2c36e 100644 --- a/gemfiles/ruby_3.2_activesupport_5.gemfile +++ b/gemfiles/ruby_3.2_activesupport_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_activesupport_5.gemfile.lock b/gemfiles/ruby_3.2_activesupport_5.gemfile.lock index 30a1947c..e0034e2e 100644 --- a/gemfiles/ruby_3.2_activesupport_5.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport_5.gemfile.lock @@ -13,14 +13,20 @@ GEM i18n (>= 0.7, < 2) minitest (~> 5.1) tzinfo (~> 1.1) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -30,6 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -50,6 +57,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -120,6 +128,10 @@ GEM tzinfo (1.2.11) thread_safe (~> 0.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -143,6 +155,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_activesupport_6.gemfile b/gemfiles/ruby_3.2_activesupport_6.gemfile index 72c7d929..08b90b65 100644 --- a/gemfiles/ruby_3.2_activesupport_6.gemfile +++ b/gemfiles/ruby_3.2_activesupport_6.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_activesupport_6.gemfile.lock b/gemfiles/ruby_3.2_activesupport_6.gemfile.lock index 5e7146fb..ac314b87 100644 --- a/gemfiles/ruby_3.2_activesupport_6.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport_6.gemfile.lock @@ -14,14 +14,20 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) zeitwerk (~> 2.3) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -31,6 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -51,6 +58,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -120,6 +128,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) zeitwerk (2.6.14) @@ -144,6 +156,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_activesupport_7.gemfile b/gemfiles/ruby_3.2_activesupport_7.gemfile index f3a9783e..b5e69dde 100644 --- a/gemfiles/ruby_3.2_activesupport_7.gemfile +++ b/gemfiles/ruby_3.2_activesupport_7.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_activesupport_7.gemfile.lock b/gemfiles/ruby_3.2_activesupport_7.gemfile.lock index d3485f95..69167791 100644 --- a/gemfiles/ruby_3.2_activesupport_7.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport_7.gemfile.lock @@ -18,6 +18,8 @@ GEM minitest (>= 5.1) mutex_m tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -29,6 +31,9 @@ GEM coderay (1.1.3) concurrent-ruby (1.2.3) connection_pool (2.4.1) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -39,6 +44,7 @@ GEM docile (1.4.0) drb (2.2.1) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -60,6 +66,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -129,6 +136,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -152,6 +163,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile b/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile index 7f71bd67..861333e8 100644 --- a/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile +++ b/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile.lock index 40466cc3..ddf127a2 100644 --- a/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile.lock @@ -8,16 +8,22 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) ansi (1.5.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) ci-queue (0.53.0) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -27,6 +33,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -50,6 +57,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -117,6 +125,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -142,6 +154,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile b/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile index c38c6a29..56e6dfbe 100644 --- a/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile +++ b/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile.lock index f8e318ae..f688ee56 100644 --- a/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) ci-queue (0.53.0) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -25,6 +31,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -42,6 +49,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -109,6 +117,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -132,6 +144,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_cucumber_3.gemfile b/gemfiles/ruby_3.2_cucumber_3.gemfile index 6837a1c9..849ed57a 100644 --- a/gemfiles/ruby_3.2_cucumber_3.gemfile +++ b/gemfiles/ruby_3.2_cucumber_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_cucumber_3.gemfile.lock b/gemfiles/ruby_3.2_cucumber_3.gemfile.lock index ee3bb92f..9e5bde91 100644 --- a/gemfiles/ruby_3.2_cucumber_3.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_3.gemfile.lock @@ -8,15 +8,21 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) backports (3.25.0) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (3.2.0) builder (>= 2.1.2) cucumber-core (~> 3.2.0) @@ -43,6 +49,7 @@ GEM docile (1.4.0) ffi (1.16.3) gherkin (5.1.0) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -62,6 +69,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -129,6 +137,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -152,6 +164,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_cucumber_4.gemfile b/gemfiles/ruby_3.2_cucumber_4.gemfile index 3bfe42fd..81d7688f 100644 --- a/gemfiles/ruby_3.2_cucumber_4.gemfile +++ b/gemfiles/ruby_3.2_cucumber_4.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_cucumber_4.gemfile.lock b/gemfiles/ruby_3.2_cucumber_4.gemfile.lock index b6ed29ba..4722ceb1 100644 --- a/gemfiles/ruby_3.2_cucumber_4.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_4.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (4.1.0) builder (~> 3.2, >= 3.2.3) cucumber-core (~> 7.1, >= 7.1.0) @@ -62,6 +68,7 @@ GEM diff-lcs (1.3) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -89,6 +96,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -161,6 +169,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -185,6 +197,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_cucumber_5.gemfile b/gemfiles/ruby_3.2_cucumber_5.gemfile index 880cac7a..ca727ad5 100644 --- a/gemfiles/ruby_3.2_cucumber_5.gemfile +++ b/gemfiles/ruby_3.2_cucumber_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_cucumber_5.gemfile.lock b/gemfiles/ruby_3.2_cucumber_5.gemfile.lock index dc898626..8f20287b 100644 --- a/gemfiles/ruby_3.2_cucumber_5.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_5.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (5.3.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 8.0, >= 8.0.1) @@ -62,6 +68,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -89,6 +96,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -161,6 +169,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -185,6 +197,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_cucumber_6.gemfile b/gemfiles/ruby_3.2_cucumber_6.gemfile index 6ff08208..6f606a66 100644 --- a/gemfiles/ruby_3.2_cucumber_6.gemfile +++ b/gemfiles/ruby_3.2_cucumber_6.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_cucumber_6.gemfile.lock b/gemfiles/ruby_3.2_cucumber_6.gemfile.lock index 1f6566f4..d3f3acf0 100644 --- a/gemfiles/ruby_3.2_cucumber_6.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_6.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (6.1.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 9.0, >= 9.0.1) @@ -63,6 +69,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -93,6 +100,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -165,6 +173,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -189,6 +201,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_cucumber_7.gemfile b/gemfiles/ruby_3.2_cucumber_7.gemfile index c0a0a7e1..d5a074b1 100644 --- a/gemfiles/ruby_3.2_cucumber_7.gemfile +++ b/gemfiles/ruby_3.2_cucumber_7.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_cucumber_7.gemfile.lock b/gemfiles/ruby_3.2_cucumber_7.gemfile.lock index 46c19d3c..29c7c8e3 100644 --- a/gemfiles/ruby_3.2_cucumber_7.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_7.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (7.1.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 10.1, >= 10.1.0) @@ -55,6 +61,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -76,6 +83,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -145,6 +153,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -168,6 +180,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_cucumber_8.gemfile b/gemfiles/ruby_3.2_cucumber_8.gemfile index 62cfab9c..16fcbcf9 100644 --- a/gemfiles/ruby_3.2_cucumber_8.gemfile +++ b/gemfiles/ruby_3.2_cucumber_8.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_cucumber_8.gemfile.lock b/gemfiles/ruby_3.2_cucumber_8.gemfile.lock index 3b5b1d21..acfb97a8 100644 --- a/gemfiles/ruby_3.2_cucumber_8.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_8.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (8.0.0) builder (~> 3.2, >= 3.2.4) cucumber-ci-environment (~> 9.0, >= 9.0.4) @@ -49,6 +55,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -70,6 +77,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -139,6 +147,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -162,6 +174,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_cucumber_9.gemfile b/gemfiles/ruby_3.2_cucumber_9.gemfile index 89b7b1ed..c66998c8 100644 --- a/gemfiles/ruby_3.2_cucumber_9.gemfile +++ b/gemfiles/ruby_3.2_cucumber_9.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_cucumber_9.gemfile.lock b/gemfiles/ruby_3.2_cucumber_9.gemfile.lock index d0a16292..bc1b0333 100644 --- a/gemfiles/ruby_3.2_cucumber_9.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_9.gemfile.lock @@ -8,6 +8,8 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -17,6 +19,9 @@ GEM builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (9.2.0) builder (~> 3.2) cucumber-ci-environment (> 9, < 11) @@ -51,6 +56,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -70,6 +76,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -139,6 +146,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -162,6 +173,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile b/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile index c6c71be2..7874f38d 100644 --- a/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile +++ b/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile.lock index 8e9513e3..28c1eadf 100644 --- a/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) knapsack_pro (7.3.0) rake @@ -43,6 +50,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -110,6 +118,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -133,6 +145,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_minitest_5.gemfile b/gemfiles/ruby_3.2_minitest_5.gemfile index 53336cdd..0fca7f18 100644 --- a/gemfiles/ruby_3.2_minitest_5.gemfile +++ b/gemfiles/ruby_3.2_minitest_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_minitest_5.gemfile.lock b/gemfiles/ruby_3.2_minitest_5.gemfile.lock index e0206186..de2e21a8 100644 --- a/gemfiles/ruby_3.2_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.2_minitest_5.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -42,6 +49,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -109,6 +117,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -132,6 +144,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile index 0c453009..a13663f9 100644 --- a/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile +++ b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock index ca797c29..a7abed5d 100644 --- a/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock +++ b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -18,6 +18,8 @@ GEM minitest (>= 5.1) mutex_m tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -29,6 +31,9 @@ GEM coderay (1.1.3) concurrent-ruby (1.2.3) connection_pool (2.4.1) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -39,6 +44,7 @@ GEM docile (1.4.0) drb (2.2.1) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -60,6 +66,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -132,6 +139,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -157,6 +168,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_rspec_3.gemfile b/gemfiles/ruby_3.2_rspec_3.gemfile index 3c063913..39cac410 100644 --- a/gemfiles/ruby_3.2_rspec_3.gemfile +++ b/gemfiles/ruby_3.2_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_rspec_3.gemfile.lock b/gemfiles/ruby_3.2_rspec_3.gemfile.lock index 9c68f20a..345286c9 100644 --- a/gemfiles/ruby_3.2_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.2_rspec_3.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -41,6 +48,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -108,6 +116,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -130,6 +142,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile b/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile index 6a144f35..721816a4 100644 --- a/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile +++ b/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile.lock b/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile.lock index 02e484ec..623bd329 100644 --- a/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile.lock +++ b/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile.lock @@ -29,6 +29,9 @@ GEM xpath (~> 3.2) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (9.2.0) builder (~> 3.2) cucumber-ci-environment (> 9, < 11) @@ -63,6 +66,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -164,6 +168,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) websocket (1.2.10) xpath (3.2.0) @@ -192,6 +200,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.2_timecop_0.gemfile b/gemfiles/ruby_3.2_timecop_0.gemfile index edb677de..bb30673d 100644 --- a/gemfiles/ruby_3.2_timecop_0.gemfile +++ b/gemfiles/ruby_3.2_timecop_0.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.2_timecop_0.gemfile.lock b/gemfiles/ruby_3.2_timecop_0.gemfile.lock index 20067d79..1faa626d 100644 --- a/gemfiles/ruby_3.2_timecop_0.gemfile.lock +++ b/gemfiles/ruby_3.2_timecop_0.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -42,6 +49,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -110,6 +118,10 @@ GEM thor (1.3.1) timecop (0.9.8) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -134,6 +146,7 @@ DEPENDENCIES simplecov-cobertura (~> 2.1.0) standard (~> 1.31) timecop (~> 0) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_activesupport_4.gemfile b/gemfiles/ruby_3.3_activesupport_4.gemfile index c7b5e6dc..d5390edd 100644 --- a/gemfiles/ruby_3.3_activesupport_4.gemfile +++ b/gemfiles/ruby_3.3_activesupport_4.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_activesupport_4.gemfile.lock b/gemfiles/ruby_3.3_activesupport_4.gemfile.lock index 67b396ab..6b82a46f 100644 --- a/gemfiles/ruby_3.3_activesupport_4.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport_4.gemfile.lock @@ -13,14 +13,20 @@ GEM minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -30,6 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (0.9.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -53,6 +60,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -123,6 +131,10 @@ GEM tzinfo (1.2.11) thread_safe (~> 0.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -147,6 +159,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_activesupport_5.gemfile b/gemfiles/ruby_3.3_activesupport_5.gemfile index a53ae421..19b2c36e 100644 --- a/gemfiles/ruby_3.3_activesupport_5.gemfile +++ b/gemfiles/ruby_3.3_activesupport_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_activesupport_5.gemfile.lock b/gemfiles/ruby_3.3_activesupport_5.gemfile.lock index 3e56759b..e0801957 100644 --- a/gemfiles/ruby_3.3_activesupport_5.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport_5.gemfile.lock @@ -13,14 +13,20 @@ GEM i18n (>= 0.7, < 2) minitest (~> 5.1) tzinfo (~> 1.1) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -30,6 +36,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -53,6 +60,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -123,6 +131,10 @@ GEM tzinfo (1.2.11) thread_safe (~> 0.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -147,6 +159,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_activesupport_6.gemfile b/gemfiles/ruby_3.3_activesupport_6.gemfile index 72c7d929..08b90b65 100644 --- a/gemfiles/ruby_3.3_activesupport_6.gemfile +++ b/gemfiles/ruby_3.3_activesupport_6.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_activesupport_6.gemfile.lock b/gemfiles/ruby_3.3_activesupport_6.gemfile.lock index 6d89ab5b..3c64bbc2 100644 --- a/gemfiles/ruby_3.3_activesupport_6.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport_6.gemfile.lock @@ -14,14 +14,20 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) zeitwerk (~> 2.3) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -31,6 +37,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -54,6 +61,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -123,6 +131,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) zeitwerk (2.6.14) @@ -148,6 +160,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_activesupport_7.gemfile b/gemfiles/ruby_3.3_activesupport_7.gemfile index f3a9783e..b5e69dde 100644 --- a/gemfiles/ruby_3.3_activesupport_7.gemfile +++ b/gemfiles/ruby_3.3_activesupport_7.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_activesupport_7.gemfile.lock b/gemfiles/ruby_3.3_activesupport_7.gemfile.lock index 47dfcf45..3542c9ed 100644 --- a/gemfiles/ruby_3.3_activesupport_7.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport_7.gemfile.lock @@ -18,6 +18,8 @@ GEM minitest (>= 5.1) mutex_m tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -29,6 +31,9 @@ GEM coderay (1.1.3) concurrent-ruby (1.2.3) connection_pool (2.4.1) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -39,6 +44,7 @@ GEM docile (1.4.0) drb (2.2.1) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -63,6 +69,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -132,6 +139,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -156,6 +167,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile b/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile index 7f71bd67..861333e8 100644 --- a/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile +++ b/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile.lock index 7a05d7f6..0affb1e3 100644 --- a/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile.lock @@ -8,16 +8,22 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) ansi (1.5.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) ci-queue (0.53.0) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -27,6 +33,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -53,6 +60,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -120,6 +128,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -146,6 +158,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile b/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile index c38c6a29..56e6dfbe 100644 --- a/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile +++ b/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile.lock index 466633f9..74bf0ba6 100644 --- a/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) ci-queue (0.53.0) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -25,6 +31,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -45,6 +52,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -112,6 +120,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -136,6 +148,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_cucumber_3.gemfile b/gemfiles/ruby_3.3_cucumber_3.gemfile index 6837a1c9..849ed57a 100644 --- a/gemfiles/ruby_3.3_cucumber_3.gemfile +++ b/gemfiles/ruby_3.3_cucumber_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_cucumber_3.gemfile.lock b/gemfiles/ruby_3.3_cucumber_3.gemfile.lock index 7af1db99..63baa44a 100644 --- a/gemfiles/ruby_3.3_cucumber_3.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_3.gemfile.lock @@ -8,15 +8,21 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) backports (3.25.0) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (3.2.0) builder (>= 2.1.2) cucumber-core (~> 3.2.0) @@ -43,6 +49,7 @@ GEM docile (1.4.0) ffi (1.16.3) gherkin (5.1.0) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -65,6 +72,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -132,6 +140,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -156,6 +168,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_cucumber_4.gemfile b/gemfiles/ruby_3.3_cucumber_4.gemfile index 3bfe42fd..81d7688f 100644 --- a/gemfiles/ruby_3.3_cucumber_4.gemfile +++ b/gemfiles/ruby_3.3_cucumber_4.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_cucumber_4.gemfile.lock b/gemfiles/ruby_3.3_cucumber_4.gemfile.lock index 242827c6..470e020e 100644 --- a/gemfiles/ruby_3.3_cucumber_4.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_4.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (4.0.0) builder (~> 3.2, >= 3.2.3) cucumber-core (~> 7.0, >= 7.0.0) @@ -58,6 +64,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -88,6 +95,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -160,6 +168,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -185,6 +197,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_cucumber_5.gemfile b/gemfiles/ruby_3.3_cucumber_5.gemfile index 880cac7a..ca727ad5 100644 --- a/gemfiles/ruby_3.3_cucumber_5.gemfile +++ b/gemfiles/ruby_3.3_cucumber_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_cucumber_5.gemfile.lock b/gemfiles/ruby_3.3_cucumber_5.gemfile.lock index e98a5036..759e0249 100644 --- a/gemfiles/ruby_3.3_cucumber_5.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_5.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (5.3.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 8.0, >= 8.0.1) @@ -62,6 +68,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -92,6 +99,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -164,6 +172,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -189,6 +201,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_cucumber_6.gemfile b/gemfiles/ruby_3.3_cucumber_6.gemfile index 6ff08208..6f606a66 100644 --- a/gemfiles/ruby_3.3_cucumber_6.gemfile +++ b/gemfiles/ruby_3.3_cucumber_6.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_cucumber_6.gemfile.lock b/gemfiles/ruby_3.3_cucumber_6.gemfile.lock index b9a4d807..6b8f7038 100644 --- a/gemfiles/ruby_3.3_cucumber_6.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_6.gemfile.lock @@ -13,15 +13,21 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.3) + crack (1.0.0) + bigdecimal + rexml cucumber (6.1.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 9.0, >= 9.0.1) @@ -63,6 +69,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -96,6 +103,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -168,6 +176,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -193,6 +205,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_cucumber_7.gemfile b/gemfiles/ruby_3.3_cucumber_7.gemfile index c0a0a7e1..d5a074b1 100644 --- a/gemfiles/ruby_3.3_cucumber_7.gemfile +++ b/gemfiles/ruby_3.3_cucumber_7.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_cucumber_7.gemfile.lock b/gemfiles/ruby_3.3_cucumber_7.gemfile.lock index db4d5f87..d11eb26b 100644 --- a/gemfiles/ruby_3.3_cucumber_7.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_7.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (7.1.0) builder (~> 3.2, >= 3.2.4) cucumber-core (~> 10.1, >= 10.1.0) @@ -55,6 +61,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -79,6 +86,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -148,6 +156,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -172,6 +184,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_cucumber_8.gemfile b/gemfiles/ruby_3.3_cucumber_8.gemfile index 62cfab9c..16fcbcf9 100644 --- a/gemfiles/ruby_3.3_cucumber_8.gemfile +++ b/gemfiles/ruby_3.3_cucumber_8.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_cucumber_8.gemfile.lock b/gemfiles/ruby_3.3_cucumber_8.gemfile.lock index 632a1c91..68861134 100644 --- a/gemfiles/ruby_3.3_cucumber_8.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_8.gemfile.lock @@ -8,14 +8,20 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (8.0.0) builder (~> 3.2, >= 3.2.4) cucumber-ci-environment (~> 9.0, >= 9.0.4) @@ -49,6 +55,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -73,6 +80,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -142,6 +150,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -166,6 +178,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_cucumber_9.gemfile b/gemfiles/ruby_3.3_cucumber_9.gemfile index 89b7b1ed..c66998c8 100644 --- a/gemfiles/ruby_3.3_cucumber_9.gemfile +++ b/gemfiles/ruby_3.3_cucumber_9.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_cucumber_9.gemfile.lock b/gemfiles/ruby_3.3_cucumber_9.gemfile.lock index e06b3e44..318a3d7c 100644 --- a/gemfiles/ruby_3.3_cucumber_9.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_9.gemfile.lock @@ -8,6 +8,8 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -17,6 +19,9 @@ GEM builder (3.2.4) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (9.2.0) builder (~> 3.2) cucumber-ci-environment (> 9, < 11) @@ -51,6 +56,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -73,6 +79,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -142,6 +149,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -166,6 +177,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile b/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile index c6c71be2..7874f38d 100644 --- a/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile +++ b/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile.lock index 91f49bd9..60566475 100644 --- a/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) knapsack_pro (7.3.0) rake @@ -46,6 +53,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -113,6 +121,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -137,6 +149,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_minitest_5.gemfile b/gemfiles/ruby_3.3_minitest_5.gemfile index 53336cdd..0fca7f18 100644 --- a/gemfiles/ruby_3.3_minitest_5.gemfile +++ b/gemfiles/ruby_3.3_minitest_5.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_minitest_5.gemfile.lock b/gemfiles/ruby_3.3_minitest_5.gemfile.lock index e05813a1..284f6fd8 100644 --- a/gemfiles/ruby_3.3_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.3_minitest_5.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -45,6 +52,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -112,6 +120,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -136,6 +148,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile index 0c453009..a13663f9 100644 --- a/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile +++ b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock index 32e55df2..ce199ecd 100644 --- a/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock +++ b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -18,6 +18,8 @@ GEM minitest (>= 5.1) mutex_m tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake @@ -29,6 +31,9 @@ GEM coderay (1.1.3) concurrent-ruby (1.2.3) connection_pool (2.4.1) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -39,6 +44,7 @@ GEM docile (1.4.0) drb (2.2.1) ffi (1.16.3) + hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) @@ -63,6 +69,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -135,6 +142,10 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -161,6 +172,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_rspec_3.gemfile b/gemfiles/ruby_3.3_rspec_3.gemfile index 3c063913..39cac410 100644 --- a/gemfiles/ruby_3.3_rspec_3.gemfile +++ b/gemfiles/ruby_3.3_rspec_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec", "~> 3" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_rspec_3.gemfile.lock b/gemfiles/ruby_3.3_rspec_3.gemfile.lock index c16f11dc..d595a97a 100644 --- a/gemfiles/ruby_3.3_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.3_rspec_3.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -44,6 +51,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -111,6 +119,10 @@ GEM strscan (3.1.0) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -134,6 +146,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile b/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile index 6a144f35..721816a4 100644 --- a/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile +++ b/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile.lock b/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile.lock index 26a8efad..f4b78b27 100644 --- a/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile.lock +++ b/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile.lock @@ -29,6 +29,9 @@ GEM xpath (~> 3.2) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml cucumber (9.2.0) builder (~> 3.2) cucumber-ci-environment (> 9, < 11) @@ -63,6 +66,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -169,6 +173,10 @@ GEM ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) websocket (1.2.10) xpath (3.2.0) @@ -198,6 +206,7 @@ DEPENDENCIES simplecov simplecov-cobertura (~> 2.1.0) standard (~> 1.31) + webmock webrick yard diff --git a/gemfiles/ruby_3.3_timecop_0.gemfile b/gemfiles/ruby_3.3_timecop_0.gemfile index edb677de..bb30673d 100644 --- a/gemfiles/ruby_3.3_timecop_0.gemfile +++ b/gemfiles/ruby_3.3_timecop_0.gemfile @@ -4,14 +4,15 @@ source "https://rubygems.org" gem "pry" gem "rake" -gem "os" +gem "standard", "~> 1.31" gem "rake-compiler" gem "rspec" gem "rspec-collection_matchers" gem "rspec_junit_formatter" gem "climate_control" gem "appraisal" -gem "standard", "~> 1.31" +gem "webmock" +gem "os" gem "yard" gem "redcarpet" gem "webrick" diff --git a/gemfiles/ruby_3.3_timecop_0.gemfile.lock b/gemfiles/ruby_3.3_timecop_0.gemfile.lock index 8657085b..52bd4052 100644 --- a/gemfiles/ruby_3.3_timecop_0.gemfile.lock +++ b/gemfiles/ruby_3.3_timecop_0.gemfile.lock @@ -8,13 +8,19 @@ PATH GEM remote: https://rubygems.org/ specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) appraisal (2.5.0) bundler rake thor (>= 0.14.0) ast (2.4.2) + bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) + crack (1.0.0) + bigdecimal + rexml datadog (2.0.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) @@ -24,6 +30,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) ffi (1.16.3) + hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -45,6 +52,7 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) + public_suffix (5.1.1) racc (1.8.0) rainbow (3.1.1) rake (13.2.1) @@ -113,6 +121,10 @@ GEM thor (1.3.1) timecop (0.9.8) unicode-display_width (2.5.0) + webmock (3.23.1) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) @@ -138,6 +150,7 @@ DEPENDENCIES simplecov-cobertura (~> 2.1.0) standard (~> 1.31) timecop (~> 0) + webmock webrick yard diff --git a/lib/datadog/ci/transport/adapters/net.rb b/lib/datadog/ci/transport/adapters/net.rb index 8d6ec4fc..087a5c95 100644 --- a/lib/datadog/ci/transport/adapters/net.rb +++ b/lib/datadog/ci/transport/adapters/net.rb @@ -26,7 +26,7 @@ def initialize(hostname:, port:, ssl:, timeout_seconds:) end def open(&block) - req = ::Net::HTTP.new(hostname, port) + req = net_http_client.new(hostname, port) req.use_ssl = ssl req.open_timeout = req.read_timeout = timeout @@ -123,6 +123,14 @@ def inspect "#{super}, http_response:#{http_response}" end end + + private + + def net_http_client + return ::Net::HTTP unless defined?(WebMock::HttpLibAdapters::NetHttpAdapter::OriginalNetHTTP) + + WebMock::HttpLibAdapters::NetHttpAdapter::OriginalNetHTTP + end end end end diff --git a/lib/datadog/ci/transport/http.rb b/lib/datadog/ci/transport/http.rb index 798a1b19..01969029 100644 --- a/lib/datadog/ci/transport/http.rb +++ b/lib/datadog/ci/transport/http.rb @@ -91,8 +91,7 @@ def adapter ) end - # adds compatibility with Datadog::Tracing transport and - # provides ungzipping capabilities + # adds compatibility with Datadog::Tracing transport class ResponseDecorator < ::SimpleDelegator def trace_count 0 diff --git a/sig/datadog/ci/transport/adapters/net.rbs b/sig/datadog/ci/transport/adapters/net.rbs index 608425b2..de93ed99 100644 --- a/sig/datadog/ci/transport/adapters/net.rbs +++ b/sig/datadog/ci/transport/adapters/net.rbs @@ -58,6 +58,10 @@ module Datadog def inspect: () -> ::String end + + private + + def net_http_client: () -> singleton(::Net::HTTP) end end end diff --git a/spec/datadog/ci/transport/adapters/net_spec.rb b/spec/datadog/ci/transport/adapters/net_spec.rb index 4b1126ba..f935b21d 100644 --- a/spec/datadog/ci/transport/adapters/net_spec.rb +++ b/spec/datadog/ci/transport/adapters/net_spec.rb @@ -1,3 +1,5 @@ +require "webmock" + require_relative "../../../../../lib/datadog/ci/transport/adapters/net" RSpec.describe Datadog::CI::Transport::Adapters::Net do @@ -60,35 +62,31 @@ subject(:call) { adapter.call(verb: verb, path: path, payload: body, headers: headers) } - context "given a verb" do + context "with mocked HTTP and verb" do context ":post" do include_context "HTTP connection stub" let(:verb) { :post } let(:http_response) { double("http_response") } + let(:post) { instance_double(Net::HTTP::Post) } - context "and an empty form body" do - let(:form) { {} } - let(:post) { instance_double(Net::HTTP::Post) } - - it "makes a POST and produces a response" do - expect(Net::HTTP::Post) - .to receive(:new) - .with(path, expected_headers) - .and_return(post) + it "makes a POST and produces a response" do + expect(Net::HTTP::Post) + .to receive(:new) + .with(path, expected_headers) + .and_return(post) - expect(post) - .to receive(:body=) - .with(body) + expect(post) + .to receive(:body=) + .with(body) - expect(http_connection) - .to receive(:request) - .with(post) - .and_return(http_response) + expect(http_connection) + .to receive(:request) + .with(post) + .and_return(http_response) - is_expected.to be_a_kind_of(described_class::Response) - expect(call.http_response).to be(http_response) - end + is_expected.to be_a_kind_of(described_class::Response) + expect(call.http_response).to be(http_response) end end @@ -98,6 +96,17 @@ it { expect { call }.to raise_error("Unknown HTTP method [get]") } end end + + context "with webmock" do + let(:verb) { :post } + + before { WebMock.enable! } + after { WebMock.disable! } + + it "makes a request and fails" do + expect { call }.to raise_error(Socket::ResolutionError) + end + end end describe "#post" do diff --git a/vendor/rbs/webmock/0/webmock.rbs b/vendor/rbs/webmock/0/webmock.rbs new file mode 100644 index 00000000..1216813b --- /dev/null +++ b/vendor/rbs/webmock/0/webmock.rbs @@ -0,0 +1,9 @@ +module WebMock +end + +module WebMock::HttpLibAdapters +end + +module WebMock::HttpLibAdapters::NetHttpAdapter + OriginalNetHTTP: singleton(::Net::HTTP) +end \ No newline at end of file From 6a4d2acc698c75c98129fec8bb0e0f1a044fdd0a Mon Sep 17 00:00:00 2001 From: Andrey Date: Wed, 19 Jun 2024 14:03:25 +0200 Subject: [PATCH 09/11] require socket in adapter tests to use Socket::ResolutionError --- spec/datadog/ci/transport/adapters/net_spec.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/spec/datadog/ci/transport/adapters/net_spec.rb b/spec/datadog/ci/transport/adapters/net_spec.rb index f935b21d..f5832c8d 100644 --- a/spec/datadog/ci/transport/adapters/net_spec.rb +++ b/spec/datadog/ci/transport/adapters/net_spec.rb @@ -1,4 +1,5 @@ require "webmock" +require "socket" require_relative "../../../../../lib/datadog/ci/transport/adapters/net" From b793885f73f8798ea74fce4b178315524dd12a6f Mon Sep 17 00:00:00 2001 From: Andrey Date: Wed, 19 Jun 2024 14:09:40 +0200 Subject: [PATCH 10/11] Socket::ResolutionError is raised since ruby 3.3 --- spec/datadog/ci/transport/adapters/net_spec.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/spec/datadog/ci/transport/adapters/net_spec.rb b/spec/datadog/ci/transport/adapters/net_spec.rb index f5832c8d..af2ef8b8 100644 --- a/spec/datadog/ci/transport/adapters/net_spec.rb +++ b/spec/datadog/ci/transport/adapters/net_spec.rb @@ -100,12 +100,19 @@ context "with webmock" do let(:verb) { :post } + let(:expected_error) do + if defined?(Socket::ResolutionError) + Socket::ResolutionError + else + SocketError + end + end before { WebMock.enable! } after { WebMock.disable! } it "makes a request and fails" do - expect { call }.to raise_error(Socket::ResolutionError) + expect { call }.to raise_error(expected_error) end end end From 56d52e33bff2042712478dc7cef11f90c4cc4391 Mon Sep 17 00:00:00 2001 From: Andrey Date: Wed, 19 Jun 2024 16:36:11 +0200 Subject: [PATCH 11/11] update test dependencies --- .../jruby_9.4_activesupport_4.gemfile.lock | 26 +++++++------- .../jruby_9.4_activesupport_5.gemfile.lock | 26 +++++++------- .../jruby_9.4_activesupport_6.gemfile.lock | 30 ++++++++-------- .../jruby_9.4_activesupport_7.gemfile.lock | 28 +++++++-------- ...uby_9.4_ci_queue_0_minitest_5.gemfile.lock | 28 +++++++-------- .../jruby_9.4_ci_queue_0_rspec_3.gemfile.lock | 24 ++++++------- gemfiles/jruby_9.4_cucumber_3.gemfile.lock | 24 ++++++------- gemfiles/jruby_9.4_cucumber_4.gemfile.lock | 32 ++++++++--------- gemfiles/jruby_9.4_cucumber_5.gemfile.lock | 32 ++++++++--------- gemfiles/jruby_9.4_cucumber_6.gemfile.lock | 34 +++++++++--------- gemfiles/jruby_9.4_cucumber_7.gemfile.lock | 28 +++++++-------- gemfiles/jruby_9.4_cucumber_8.gemfile.lock | 28 +++++++-------- gemfiles/jruby_9.4_cucumber_9.gemfile.lock | 26 +++++++------- ...by_9.4_knapsack_pro_7_rspec_3.gemfile.lock | 24 ++++++------- gemfiles/jruby_9.4_minitest_5.gemfile.lock | 24 ++++++------- ..._context_2_shoulda_matchers_6.gemfile.lock | 28 +++++++-------- gemfiles/jruby_9.4_rspec_3.gemfile.lock | 22 ++++++------ ...uby_9.4_selenium_4_capybara_3.gemfile.lock | 32 ++++++++--------- gemfiles/jruby_9.4_timecop_0.gemfile.lock | 26 +++++++------- .../ruby_2.7_activesupport_4.gemfile.lock | 26 +++++++------- .../ruby_2.7_activesupport_5.gemfile.lock | 26 +++++++------- .../ruby_2.7_activesupport_6.gemfile.lock | 30 ++++++++-------- .../ruby_2.7_activesupport_7.gemfile.lock | 28 +++++++-------- ...uby_2.7_ci_queue_0_minitest_5.gemfile.lock | 28 +++++++-------- .../ruby_2.7_ci_queue_0_rspec_3.gemfile.lock | 24 ++++++------- gemfiles/ruby_2.7_cucumber_3.gemfile.lock | 24 ++++++------- gemfiles/ruby_2.7_cucumber_4.gemfile.lock | 32 ++++++++--------- gemfiles/ruby_2.7_cucumber_5.gemfile.lock | 32 ++++++++--------- gemfiles/ruby_2.7_cucumber_6.gemfile.lock | 34 +++++++++--------- gemfiles/ruby_2.7_cucumber_7.gemfile.lock | 28 +++++++-------- gemfiles/ruby_2.7_cucumber_8.gemfile.lock | 28 +++++++-------- gemfiles/ruby_2.7_cucumber_9.gemfile.lock | 26 +++++++------- ...by_2.7_knapsack_pro_7_rspec_3.gemfile.lock | 24 ++++++------- gemfiles/ruby_2.7_minitest_5.gemfile.lock | 24 ++++++------- gemfiles/ruby_2.7_rspec_3.gemfile.lock | 22 ++++++------ gemfiles/ruby_2.7_timecop_0.gemfile.lock | 26 +++++++------- .../ruby_3.0_activesupport_4.gemfile.lock | 26 +++++++------- .../ruby_3.0_activesupport_5.gemfile.lock | 26 +++++++------- .../ruby_3.0_activesupport_6.gemfile.lock | 30 ++++++++-------- .../ruby_3.0_activesupport_7.gemfile.lock | 28 +++++++-------- ...uby_3.0_ci_queue_0_minitest_5.gemfile.lock | 28 +++++++-------- .../ruby_3.0_ci_queue_0_rspec_3.gemfile.lock | 24 ++++++------- gemfiles/ruby_3.0_cucumber_3.gemfile.lock | 24 ++++++------- gemfiles/ruby_3.0_cucumber_4.gemfile.lock | 32 ++++++++--------- gemfiles/ruby_3.0_cucumber_5.gemfile.lock | 32 ++++++++--------- gemfiles/ruby_3.0_cucumber_6.gemfile.lock | 34 +++++++++--------- gemfiles/ruby_3.0_cucumber_7.gemfile.lock | 28 +++++++-------- gemfiles/ruby_3.0_cucumber_8.gemfile.lock | 28 +++++++-------- gemfiles/ruby_3.0_cucumber_9.gemfile.lock | 26 +++++++------- ...by_3.0_knapsack_pro_7_rspec_3.gemfile.lock | 24 ++++++------- gemfiles/ruby_3.0_minitest_5.gemfile.lock | 24 ++++++------- gemfiles/ruby_3.0_rspec_3.gemfile.lock | 22 ++++++------ ...uby_3.0_selenium_4_capybara_3.gemfile.lock | 32 ++++++++--------- gemfiles/ruby_3.0_timecop_0.gemfile.lock | 26 +++++++------- .../ruby_3.1_activesupport_4.gemfile.lock | 26 +++++++------- .../ruby_3.1_activesupport_5.gemfile.lock | 26 +++++++------- .../ruby_3.1_activesupport_6.gemfile.lock | 30 ++++++++-------- .../ruby_3.1_activesupport_7.gemfile.lock | 28 +++++++-------- ...uby_3.1_ci_queue_0_minitest_5.gemfile.lock | 28 +++++++-------- .../ruby_3.1_ci_queue_0_rspec_3.gemfile.lock | 24 ++++++------- gemfiles/ruby_3.1_cucumber_3.gemfile.lock | 24 ++++++------- gemfiles/ruby_3.1_cucumber_4.gemfile.lock | 32 ++++++++--------- gemfiles/ruby_3.1_cucumber_5.gemfile.lock | 32 ++++++++--------- gemfiles/ruby_3.1_cucumber_6.gemfile.lock | 34 +++++++++--------- gemfiles/ruby_3.1_cucumber_7.gemfile.lock | 28 +++++++-------- gemfiles/ruby_3.1_cucumber_8.gemfile.lock | 28 +++++++-------- gemfiles/ruby_3.1_cucumber_9.gemfile.lock | 26 +++++++------- ...by_3.1_knapsack_pro_7_rspec_3.gemfile.lock | 24 ++++++------- gemfiles/ruby_3.1_minitest_5.gemfile.lock | 24 ++++++------- ..._context_2_shoulda_matchers_6.gemfile.lock | 28 +++++++-------- gemfiles/ruby_3.1_rspec_3.gemfile.lock | 22 ++++++------ ...uby_3.1_selenium_4_capybara_3.gemfile.lock | 32 ++++++++--------- gemfiles/ruby_3.1_timecop_0.gemfile.lock | 26 +++++++------- .../ruby_3.2_activesupport_4.gemfile.lock | 26 +++++++------- .../ruby_3.2_activesupport_5.gemfile.lock | 26 +++++++------- .../ruby_3.2_activesupport_6.gemfile.lock | 30 ++++++++-------- .../ruby_3.2_activesupport_7.gemfile.lock | 28 +++++++-------- ...uby_3.2_ci_queue_0_minitest_5.gemfile.lock | 28 +++++++-------- .../ruby_3.2_ci_queue_0_rspec_3.gemfile.lock | 24 ++++++------- gemfiles/ruby_3.2_cucumber_3.gemfile.lock | 24 ++++++------- gemfiles/ruby_3.2_cucumber_4.gemfile.lock | 32 ++++++++--------- gemfiles/ruby_3.2_cucumber_5.gemfile.lock | 32 ++++++++--------- gemfiles/ruby_3.2_cucumber_6.gemfile.lock | 34 +++++++++--------- gemfiles/ruby_3.2_cucumber_7.gemfile.lock | 28 +++++++-------- gemfiles/ruby_3.2_cucumber_8.gemfile.lock | 28 +++++++-------- gemfiles/ruby_3.2_cucumber_9.gemfile.lock | 26 +++++++------- ...by_3.2_knapsack_pro_7_rspec_3.gemfile.lock | 24 ++++++------- gemfiles/ruby_3.2_minitest_5.gemfile.lock | 24 ++++++------- ..._context_2_shoulda_matchers_6.gemfile.lock | 28 +++++++-------- gemfiles/ruby_3.2_rspec_3.gemfile.lock | 22 ++++++------ ...uby_3.2_selenium_4_capybara_3.gemfile.lock | 32 ++++++++--------- gemfiles/ruby_3.2_timecop_0.gemfile.lock | 26 +++++++------- .../ruby_3.3_activesupport_4.gemfile.lock | 27 +++++++------- .../ruby_3.3_activesupport_5.gemfile.lock | 27 +++++++------- .../ruby_3.3_activesupport_6.gemfile.lock | 31 ++++++++-------- .../ruby_3.3_activesupport_7.gemfile.lock | 29 +++++++-------- ...uby_3.3_ci_queue_0_minitest_5.gemfile.lock | 29 +++++++-------- .../ruby_3.3_ci_queue_0_rspec_3.gemfile.lock | 25 ++++++------- gemfiles/ruby_3.3_cucumber_3.gemfile.lock | 25 ++++++------- gemfiles/ruby_3.3_cucumber_4.gemfile.lock | 33 ++++++++--------- gemfiles/ruby_3.3_cucumber_5.gemfile.lock | 33 ++++++++--------- gemfiles/ruby_3.3_cucumber_6.gemfile.lock | 35 ++++++++++--------- gemfiles/ruby_3.3_cucumber_7.gemfile.lock | 29 +++++++-------- gemfiles/ruby_3.3_cucumber_8.gemfile.lock | 29 +++++++-------- gemfiles/ruby_3.3_cucumber_9.gemfile.lock | 27 +++++++------- ...by_3.3_knapsack_pro_7_rspec_3.gemfile.lock | 25 ++++++------- gemfiles/ruby_3.3_minitest_5.gemfile.lock | 25 ++++++------- ..._context_2_shoulda_matchers_6.gemfile.lock | 29 +++++++-------- gemfiles/ruby_3.3_rspec_3.gemfile.lock | 23 ++++++------ ...uby_3.3_selenium_4_capybara_3.gemfile.lock | 35 ++++++++++--------- gemfiles/ruby_3.3_timecop_0.gemfile.lock | 27 +++++++------- 111 files changed, 1542 insertions(+), 1523 deletions(-) diff --git a/gemfiles/jruby_9.4_activesupport_4.gemfile.lock b/gemfiles/jruby_9.4_activesupport_4.gemfile.lock index ec3a4a92..82ed1af3 100644 --- a/gemfiles/jruby_9.4_activesupport_4.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport_4.gemfile.lock @@ -23,11 +23,11 @@ GEM bigdecimal (3.1.7-java) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -35,7 +35,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) i18n (0.9.5) concurrent-ruby (~> 1.0) @@ -46,11 +46,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -65,8 +65,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -75,7 +75,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -84,7 +84,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -97,7 +97,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -112,10 +112,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/jruby_9.4_activesupport_5.gemfile.lock b/gemfiles/jruby_9.4_activesupport_5.gemfile.lock index 4aa80af4..200f47a7 100644 --- a/gemfiles/jruby_9.4_activesupport_5.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport_5.gemfile.lock @@ -23,11 +23,11 @@ GEM bigdecimal (3.1.7-java) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -35,7 +35,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -46,11 +46,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -65,8 +65,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -75,7 +75,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -84,7 +84,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -97,7 +97,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -112,10 +112,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/jruby_9.4_activesupport_6.gemfile.lock b/gemfiles/jruby_9.4_activesupport_6.gemfile.lock index b8db1e4a..37ae64de 100644 --- a/gemfiles/jruby_9.4_activesupport_6.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport_6.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (6.1.7.7) + activesupport (6.1.7.8) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -24,11 +24,11 @@ GEM bigdecimal (3.1.7-java) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -36,7 +36,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -47,11 +47,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -66,8 +66,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -76,7 +76,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -85,7 +85,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -98,7 +98,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -113,10 +113,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -136,7 +136,7 @@ GEM hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) - zeitwerk (2.6.14) + zeitwerk (2.6.16) PLATFORMS universal-java-11 diff --git a/gemfiles/jruby_9.4_activesupport_7.gemfile.lock b/gemfiles/jruby_9.4_activesupport_7.gemfile.lock index bda1fc0b..bf59b41c 100644 --- a/gemfiles/jruby_9.4_activesupport_7.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport_7.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.3) + activesupport (7.1.3.4) base64 bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) @@ -29,12 +29,12 @@ GEM bigdecimal (3.1.7-java) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) connection_pool (2.4.1) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -43,7 +43,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) drb (2.2.1) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -54,12 +54,12 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2-java) mutex_m (0.2.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -74,8 +74,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -84,7 +84,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -93,7 +93,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -106,7 +106,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -121,10 +121,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile.lock index 02b1f69f..a96c0785 100644 --- a/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile.lock @@ -17,14 +17,14 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8-java) - builder (3.2.4) - ci-queue (0.53.0) + builder (3.3.0) + ci-queue (0.55.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -32,7 +32,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) @@ -41,7 +41,7 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) minitest-reporters (1.6.1) ansi builder @@ -49,8 +49,8 @@ GEM ruby-progressbar msgpack (1.7.2-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -65,8 +65,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -75,7 +75,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -84,7 +84,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -97,7 +97,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -112,10 +112,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile.lock index c4cb547e..8a96ace3 100644 --- a/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile.lock @@ -16,13 +16,13 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8-java) - ci-queue (0.53.0) + ci-queue (0.55.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -30,7 +30,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) @@ -41,8 +41,8 @@ GEM method_source (1.1.0) msgpack (1.7.2-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -57,8 +57,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -67,7 +67,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -76,7 +76,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -89,7 +89,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -104,10 +104,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/jruby_9.4_cucumber_3.gemfile.lock b/gemfiles/jruby_9.4_cucumber_3.gemfile.lock index 291f92ca..5fb6ea26 100644 --- a/gemfiles/jruby_9.4_cucumber_3.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_3.gemfile.lock @@ -17,7 +17,7 @@ GEM ast (2.4.2) backports (3.25.0) bigdecimal (3.1.8-java) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -39,7 +39,7 @@ GEM cucumber-expressions (6.0.1) cucumber-tag_expressions (1.1.1) cucumber-wire (0.0.1) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -47,7 +47,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) gherkin (5.1.0) hashdiff (1.1.0) json (2.7.2-java) @@ -61,8 +61,8 @@ GEM multi_json (1.15.0) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -77,8 +77,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -87,7 +87,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -96,7 +96,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -109,7 +109,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -124,10 +124,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/jruby_9.4_cucumber_4.gemfile.lock b/gemfiles/jruby_9.4_cucumber_4.gemfile.lock index 0a451ca2..60d291a6 100644 --- a/gemfiles/jruby_9.4_cucumber_4.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_4.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8-java) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -59,7 +59,7 @@ GEM cucumber-core (~> 7.1, >= 7.1.0) cucumber-cucumber-expressions (~> 10.1, >= 10.1.0) cucumber-messages (~> 12.2, >= 12.2.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -67,7 +67,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.3) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -79,12 +79,12 @@ GEM lint_roller (1.1.0) method_source (1.1.0) middleware (0.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2-java) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -104,8 +104,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -114,7 +114,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -123,7 +123,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -136,7 +136,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -151,10 +151,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -164,7 +164,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0-java) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6-java) diff --git a/gemfiles/jruby_9.4_cucumber_5.gemfile.lock b/gemfiles/jruby_9.4_cucumber_5.gemfile.lock index b2bb3b4b..f709a22a 100644 --- a/gemfiles/jruby_9.4_cucumber_5.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_5.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8-java) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -59,7 +59,7 @@ GEM cucumber-core (~> 8.0, >= 8.0.1) cucumber-cucumber-expressions (~> 10.3, >= 10.3.0) cucumber-messages (~> 13.0, >= 13.0.1) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -67,7 +67,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -79,12 +79,12 @@ GEM lint_roller (1.1.0) method_source (1.1.0) middleware (0.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2-java) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -104,8 +104,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -114,7 +114,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -123,7 +123,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -136,7 +136,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -151,10 +151,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -164,7 +164,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0-java) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6-java) diff --git a/gemfiles/jruby_9.4_cucumber_6.gemfile.lock b/gemfiles/jruby_9.4_cucumber_6.gemfile.lock index ef48a344..c63fdffb 100644 --- a/gemfiles/jruby_9.4_cucumber_6.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_6.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8-java) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -60,7 +60,7 @@ GEM cucumber-core (~> 9.0, >= 9.0.1) cucumber-cucumber-expressions (~> 12.1, >= 12.1.1) cucumber-messages (~> 15.0, >= 15.0.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -68,7 +68,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -82,13 +82,13 @@ GEM middleware (0.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) - minitest (5.23.0) + mime-types-data (3.2024.0604) + minitest (5.24.0) msgpack (1.7.2-java) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -108,8 +108,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -118,7 +118,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -127,7 +127,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -140,7 +140,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -155,10 +155,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -168,7 +168,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0-java) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6-java) diff --git a/gemfiles/jruby_9.4_cucumber_7.gemfile.lock b/gemfiles/jruby_9.4_cucumber_7.gemfile.lock index 1f5dba1b..6a28dfa2 100644 --- a/gemfiles/jruby_9.4_cucumber_7.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_7.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8-java) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -52,7 +52,7 @@ GEM cucumber-wire (6.2.1) cucumber-core (~> 10.1, >= 10.1.0) cucumber-cucumber-expressions (~> 14.0, >= 14.0.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -60,7 +60,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) @@ -71,12 +71,12 @@ GEM method_source (1.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) + mime-types-data (3.2024.0604) msgpack (1.7.2-java) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -91,8 +91,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -101,7 +101,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -110,7 +110,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -123,7 +123,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -138,10 +138,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -151,7 +151,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0-java) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/jruby_9.4_cucumber_8.gemfile.lock b/gemfiles/jruby_9.4_cucumber_8.gemfile.lock index a0d66e2f..5c09291d 100644 --- a/gemfiles/jruby_9.4_cucumber_8.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_8.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8-java) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -46,7 +46,7 @@ GEM cucumber-messages (~> 18.0, >= 18.0.0) cucumber-messages (18.0.0) cucumber-tag-expressions (4.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -54,7 +54,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) @@ -65,12 +65,12 @@ GEM method_source (1.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) + mime-types-data (3.2024.0604) msgpack (1.7.2-java) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -85,8 +85,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -95,7 +95,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -104,7 +104,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -117,7 +117,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -132,10 +132,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -145,7 +145,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0-java) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/jruby_9.4_cucumber_9.gemfile.lock b/gemfiles/jruby_9.4_cucumber_9.gemfile.lock index 9c66efce..e88ce33c 100644 --- a/gemfiles/jruby_9.4_cucumber_9.gemfile.lock +++ b/gemfiles/jruby_9.4_cucumber_9.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.7-java) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -47,7 +47,7 @@ GEM cucumber-messages (> 19, < 25) cucumber-messages (22.0.0) cucumber-tag-expressions (6.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -55,7 +55,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) @@ -68,8 +68,8 @@ GEM msgpack (1.7.2-java) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -84,8 +84,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -94,7 +94,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -103,7 +103,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -116,7 +116,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -131,10 +131,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -144,7 +144,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0-java) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile.lock index 622eaf7a..d3e22bd0 100644 --- a/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/jruby_9.4_knapsack_pro_7_rspec_3.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,10 +29,10 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) json (2.7.2-java) - knapsack_pro (7.3.0) + knapsack_pro (7.6.0) rake language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -42,8 +42,8 @@ GEM method_source (1.1.0) msgpack (1.7.2-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -58,8 +58,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -68,7 +68,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -77,7 +77,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -90,7 +90,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -105,10 +105,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/jruby_9.4_minitest_5.gemfile.lock b/gemfiles/jruby_9.4_minitest_5.gemfile.lock index 9f115916..ea936154 100644 --- a/gemfiles/jruby_9.4_minitest_5.gemfile.lock +++ b/gemfiles/jruby_9.4_minitest_5.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) @@ -38,11 +38,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -57,8 +57,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -67,7 +67,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -76,7 +76,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -89,7 +89,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -104,10 +104,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock index 516edcf5..ac3310ae 100644 --- a/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock +++ b/gemfiles/jruby_9.4_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.3) + activesupport (7.1.3.4) base64 bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) @@ -29,12 +29,12 @@ GEM bigdecimal (3.1.7-java) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) connection_pool (2.4.1) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -43,7 +43,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) drb (2.2.1) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -54,12 +54,12 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2-java) mutex_m (0.2.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -74,8 +74,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -84,7 +84,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -93,7 +93,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -106,7 +106,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -124,10 +124,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/jruby_9.4_rspec_3.gemfile.lock b/gemfiles/jruby_9.4_rspec_3.gemfile.lock index 1d3f1185..ec2fd364 100644 --- a/gemfiles/jruby_9.4_rspec_3.gemfile.lock +++ b/gemfiles/jruby_9.4_rspec_3.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) @@ -40,8 +40,8 @@ GEM method_source (1.1.0) msgpack (1.7.2-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -56,8 +56,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -66,7 +66,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -75,7 +75,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -88,7 +88,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -103,10 +103,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile.lock b/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile.lock index 6c889448..5f4af6b4 100644 --- a/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile.lock +++ b/gemfiles/jruby_9.4_selenium_4_capybara_3.gemfile.lock @@ -17,7 +17,7 @@ GEM ast (2.4.2) base64 (0.2.0) bigdecimal (3.1.8-java) - builder (3.2.4) + builder (3.3.0) capybara (3.40.0) addressable matrix @@ -57,7 +57,7 @@ GEM cucumber-messages (> 19, < 25) cucumber-messages (22.0.0) cucumber-tag-expressions (6.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -65,7 +65,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) @@ -78,11 +78,11 @@ GEM mini_mime (1.1.5) msgpack (1.7.2-java) multi_test (1.1.0) - nokogiri (1.16.5-java) + nokogiri (1.16.6-java) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -90,9 +90,9 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) - public_suffix (5.0.5) + public_suffix (5.1.1) racc (1.8.0-java) - rack (3.0.11) + rack (3.1.3) rack-test (2.1.0) rack (>= 1.3) rainbow (3.1.1) @@ -100,8 +100,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -110,7 +110,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -119,7 +119,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -132,7 +132,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -153,10 +153,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -166,7 +166,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0-java) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/jruby_9.4_timecop_0.gemfile.lock b/gemfiles/jruby_9.4_timecop_0.gemfile.lock index 9aff4870..fd8e6e98 100644 --- a/gemfiles/jruby_9.4_timecop_0.gemfile.lock +++ b/gemfiles/jruby_9.4_timecop_0.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3-java) + ffi (1.17.0-java) hashdiff (1.1.0) json (2.7.2-java) language_server-protocol (3.17.0.3) @@ -38,11 +38,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.1) + minitest (5.24.0) msgpack (1.7.2-java) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -57,8 +57,8 @@ GEM rake-compiler (1.2.7) rake regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -67,7 +67,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -76,7 +76,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -89,7 +89,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -104,10 +104,10 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -118,7 +118,7 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0-java) thor (1.3.1) - timecop (0.9.8) + timecop (0.9.10) unicode-display_width (2.5.0) webmock (3.23.1) addressable (>= 2.8.0) diff --git a/gemfiles/ruby_2.7_activesupport_4.gemfile.lock b/gemfiles/ruby_2.7_activesupport_4.gemfile.lock index 70a9c256..b3da8bde 100644 --- a/gemfiles/ruby_2.7_activesupport_4.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport_4.gemfile.lock @@ -23,11 +23,11 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -35,7 +35,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (0.9.5) concurrent-ruby (~> 1.0) @@ -46,11 +46,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -65,8 +65,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -75,7 +75,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -84,7 +84,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -97,7 +97,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -110,10 +110,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_2.7_activesupport_5.gemfile.lock b/gemfiles/ruby_2.7_activesupport_5.gemfile.lock index e0034e2e..6bc9e460 100644 --- a/gemfiles/ruby_2.7_activesupport_5.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport_5.gemfile.lock @@ -23,11 +23,11 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -35,7 +35,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -46,11 +46,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -65,8 +65,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -75,7 +75,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -84,7 +84,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -97,7 +97,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -110,10 +110,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_2.7_activesupport_6.gemfile.lock b/gemfiles/ruby_2.7_activesupport_6.gemfile.lock index ac314b87..3c2733b7 100644 --- a/gemfiles/ruby_2.7_activesupport_6.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport_6.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (6.1.7.7) + activesupport (6.1.7.8) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -24,11 +24,11 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -36,7 +36,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -47,11 +47,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -66,8 +66,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -76,7 +76,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -85,7 +85,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -98,7 +98,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -111,10 +111,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -134,7 +134,7 @@ GEM hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) - zeitwerk (2.6.14) + zeitwerk (2.6.16) PLATFORMS aarch64-linux diff --git a/gemfiles/ruby_2.7_activesupport_7.gemfile.lock b/gemfiles/ruby_2.7_activesupport_7.gemfile.lock index 69167791..a1d61884 100644 --- a/gemfiles/ruby_2.7_activesupport_7.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport_7.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.3) + activesupport (7.1.3.4) base64 bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) @@ -29,12 +29,12 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) connection_pool (2.4.1) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -43,7 +43,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) drb (2.2.1) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -54,12 +54,12 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) mutex_m (0.2.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -74,8 +74,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -84,7 +84,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -93,7 +93,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -106,7 +106,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -119,10 +119,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile.lock index ddf127a2..6ddacf1f 100644 --- a/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_2.7_ci_queue_0_minitest_5.gemfile.lock @@ -17,14 +17,14 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) - ci-queue (0.53.0) + builder (3.3.0) + ci-queue (0.55.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -32,7 +32,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -41,7 +41,7 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) minitest-reporters (1.6.1) ansi builder @@ -49,8 +49,8 @@ GEM ruby-progressbar msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -65,8 +65,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -75,7 +75,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -84,7 +84,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -97,7 +97,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -110,10 +110,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile.lock index f688ee56..d7d7a06f 100644 --- a/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_2.7_ci_queue_0_rspec_3.gemfile.lock @@ -16,13 +16,13 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - ci-queue (0.53.0) + ci-queue (0.55.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -30,7 +30,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -41,8 +41,8 @@ GEM method_source (1.1.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -57,8 +57,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -67,7 +67,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -76,7 +76,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -89,7 +89,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -102,10 +102,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_2.7_cucumber_3.gemfile.lock b/gemfiles/ruby_2.7_cucumber_3.gemfile.lock index 9e5bde91..3edb105b 100644 --- a/gemfiles/ruby_2.7_cucumber_3.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_3.gemfile.lock @@ -17,7 +17,7 @@ GEM ast (2.4.2) backports (3.25.0) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -39,7 +39,7 @@ GEM cucumber-expressions (6.0.1) cucumber-tag_expressions (1.1.1) cucumber-wire (0.0.1) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -47,7 +47,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) gherkin (5.1.0) hashdiff (1.1.0) json (2.7.2) @@ -61,8 +61,8 @@ GEM multi_json (1.15.0) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -77,8 +77,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -87,7 +87,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -96,7 +96,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -109,7 +109,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -122,10 +122,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_2.7_cucumber_4.gemfile.lock b/gemfiles/ruby_2.7_cucumber_4.gemfile.lock index 4722ceb1..df69f86f 100644 --- a/gemfiles/ruby_2.7_cucumber_4.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_4.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -59,7 +59,7 @@ GEM cucumber-core (~> 7.1, >= 7.1.0) cucumber-cucumber-expressions (~> 10.1, >= 10.1.0) cucumber-messages (~> 12.2, >= 12.2.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -67,7 +67,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.3) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -79,12 +79,12 @@ GEM lint_roller (1.1.0) method_source (1.1.0) middleware (0.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -104,8 +104,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -114,7 +114,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -123,7 +123,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -136,7 +136,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -149,10 +149,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -162,7 +162,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) diff --git a/gemfiles/ruby_2.7_cucumber_5.gemfile.lock b/gemfiles/ruby_2.7_cucumber_5.gemfile.lock index 8f20287b..f205fe3a 100644 --- a/gemfiles/ruby_2.7_cucumber_5.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_5.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -59,7 +59,7 @@ GEM cucumber-core (~> 8.0, >= 8.0.1) cucumber-cucumber-expressions (~> 10.3, >= 10.3.0) cucumber-messages (~> 13.0, >= 13.0.1) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -67,7 +67,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -79,12 +79,12 @@ GEM lint_roller (1.1.0) method_source (1.1.0) middleware (0.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -104,8 +104,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -114,7 +114,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -123,7 +123,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -136,7 +136,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -149,10 +149,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -162,7 +162,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) diff --git a/gemfiles/ruby_2.7_cucumber_6.gemfile.lock b/gemfiles/ruby_2.7_cucumber_6.gemfile.lock index d3f3acf0..46f061ff 100644 --- a/gemfiles/ruby_2.7_cucumber_6.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_6.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -60,7 +60,7 @@ GEM cucumber-core (~> 9.0, >= 9.0.1) cucumber-cucumber-expressions (~> 12.1, >= 12.1.1) cucumber-messages (~> 15.0, >= 15.0.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -68,7 +68,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -82,13 +82,13 @@ GEM middleware (0.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) - minitest (5.23.0) + mime-types-data (3.2024.0604) + minitest (5.24.0) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -108,8 +108,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -118,7 +118,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -127,7 +127,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -140,7 +140,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -153,10 +153,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -166,7 +166,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) diff --git a/gemfiles/ruby_2.7_cucumber_7.gemfile.lock b/gemfiles/ruby_2.7_cucumber_7.gemfile.lock index 29c7c8e3..e5c29120 100644 --- a/gemfiles/ruby_2.7_cucumber_7.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_7.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -52,7 +52,7 @@ GEM cucumber-wire (6.2.1) cucumber-core (~> 10.1, >= 10.1.0) cucumber-cucumber-expressions (~> 14.0, >= 14.0.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -60,7 +60,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -71,12 +71,12 @@ GEM method_source (1.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) + mime-types-data (3.2024.0604) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -91,8 +91,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -101,7 +101,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -110,7 +110,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -123,7 +123,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -136,10 +136,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -149,7 +149,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_2.7_cucumber_8.gemfile.lock b/gemfiles/ruby_2.7_cucumber_8.gemfile.lock index acfb97a8..53203c7f 100644 --- a/gemfiles/ruby_2.7_cucumber_8.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_8.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -46,7 +46,7 @@ GEM cucumber-messages (~> 18.0, >= 18.0.0) cucumber-messages (18.0.0) cucumber-tag-expressions (4.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -54,7 +54,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -65,12 +65,12 @@ GEM method_source (1.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) + mime-types-data (3.2024.0604) msgpack (1.7.2) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -85,8 +85,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -95,7 +95,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -104,7 +104,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -117,7 +117,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -130,10 +130,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -143,7 +143,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_2.7_cucumber_9.gemfile.lock b/gemfiles/ruby_2.7_cucumber_9.gemfile.lock index bc1b0333..4c22788a 100644 --- a/gemfiles/ruby_2.7_cucumber_9.gemfile.lock +++ b/gemfiles/ruby_2.7_cucumber_9.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -47,7 +47,7 @@ GEM cucumber-messages (> 19, < 25) cucumber-messages (22.0.0) cucumber-tag-expressions (6.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -55,7 +55,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -68,8 +68,8 @@ GEM msgpack (1.7.2) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -84,8 +84,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -94,7 +94,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -103,7 +103,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -116,7 +116,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -129,10 +129,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -142,7 +142,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile.lock index 28c1eadf..389cc5c3 100644 --- a/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_2.7_knapsack_pro_7_rspec_3.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,10 +29,10 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) - knapsack_pro (7.3.0) + knapsack_pro (7.6.0) rake language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -42,8 +42,8 @@ GEM method_source (1.1.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -58,8 +58,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -68,7 +68,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -77,7 +77,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -90,7 +90,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -103,10 +103,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_2.7_minitest_5.gemfile.lock b/gemfiles/ruby_2.7_minitest_5.gemfile.lock index de2e21a8..896cc3f7 100644 --- a/gemfiles/ruby_2.7_minitest_5.gemfile.lock +++ b/gemfiles/ruby_2.7_minitest_5.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -38,11 +38,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -57,8 +57,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -67,7 +67,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -76,7 +76,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -89,7 +89,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -102,10 +102,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_2.7_rspec_3.gemfile.lock b/gemfiles/ruby_2.7_rspec_3.gemfile.lock index 345286c9..d4049ddc 100644 --- a/gemfiles/ruby_2.7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_2.7_rspec_3.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -40,8 +40,8 @@ GEM method_source (1.1.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -56,8 +56,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -66,7 +66,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -75,7 +75,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -88,7 +88,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -101,10 +101,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_2.7_timecop_0.gemfile.lock b/gemfiles/ruby_2.7_timecop_0.gemfile.lock index 1faa626d..1e73bf60 100644 --- a/gemfiles/ruby_2.7_timecop_0.gemfile.lock +++ b/gemfiles/ruby_2.7_timecop_0.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -38,11 +38,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.1) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -57,8 +57,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -67,7 +67,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -76,7 +76,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -89,7 +89,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -102,10 +102,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -116,7 +116,7 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) + timecop (0.9.10) unicode-display_width (2.5.0) webmock (3.23.1) addressable (>= 2.8.0) diff --git a/gemfiles/ruby_3.0_activesupport_4.gemfile.lock b/gemfiles/ruby_3.0_activesupport_4.gemfile.lock index 70a9c256..b3da8bde 100644 --- a/gemfiles/ruby_3.0_activesupport_4.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport_4.gemfile.lock @@ -23,11 +23,11 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -35,7 +35,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (0.9.5) concurrent-ruby (~> 1.0) @@ -46,11 +46,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -65,8 +65,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -75,7 +75,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -84,7 +84,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -97,7 +97,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -110,10 +110,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.0_activesupport_5.gemfile.lock b/gemfiles/ruby_3.0_activesupport_5.gemfile.lock index e0034e2e..6bc9e460 100644 --- a/gemfiles/ruby_3.0_activesupport_5.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport_5.gemfile.lock @@ -23,11 +23,11 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -35,7 +35,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -46,11 +46,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -65,8 +65,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -75,7 +75,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -84,7 +84,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -97,7 +97,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -110,10 +110,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.0_activesupport_6.gemfile.lock b/gemfiles/ruby_3.0_activesupport_6.gemfile.lock index ac314b87..3c2733b7 100644 --- a/gemfiles/ruby_3.0_activesupport_6.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport_6.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (6.1.7.7) + activesupport (6.1.7.8) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -24,11 +24,11 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -36,7 +36,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -47,11 +47,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -66,8 +66,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -76,7 +76,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -85,7 +85,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -98,7 +98,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -111,10 +111,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -134,7 +134,7 @@ GEM hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) - zeitwerk (2.6.14) + zeitwerk (2.6.16) PLATFORMS aarch64-linux diff --git a/gemfiles/ruby_3.0_activesupport_7.gemfile.lock b/gemfiles/ruby_3.0_activesupport_7.gemfile.lock index 69167791..a1d61884 100644 --- a/gemfiles/ruby_3.0_activesupport_7.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport_7.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.3) + activesupport (7.1.3.4) base64 bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) @@ -29,12 +29,12 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) connection_pool (2.4.1) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -43,7 +43,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) drb (2.2.1) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -54,12 +54,12 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) mutex_m (0.2.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -74,8 +74,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -84,7 +84,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -93,7 +93,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -106,7 +106,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -119,10 +119,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile.lock index ddf127a2..6ddacf1f 100644 --- a/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.0_ci_queue_0_minitest_5.gemfile.lock @@ -17,14 +17,14 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) - ci-queue (0.53.0) + builder (3.3.0) + ci-queue (0.55.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -32,7 +32,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -41,7 +41,7 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) minitest-reporters (1.6.1) ansi builder @@ -49,8 +49,8 @@ GEM ruby-progressbar msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -65,8 +65,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -75,7 +75,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -84,7 +84,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -97,7 +97,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -110,10 +110,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile.lock index f688ee56..d7d7a06f 100644 --- a/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.0_ci_queue_0_rspec_3.gemfile.lock @@ -16,13 +16,13 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - ci-queue (0.53.0) + ci-queue (0.55.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -30,7 +30,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -41,8 +41,8 @@ GEM method_source (1.1.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -57,8 +57,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -67,7 +67,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -76,7 +76,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -89,7 +89,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -102,10 +102,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.0_cucumber_3.gemfile.lock b/gemfiles/ruby_3.0_cucumber_3.gemfile.lock index 9e5bde91..3edb105b 100644 --- a/gemfiles/ruby_3.0_cucumber_3.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_3.gemfile.lock @@ -17,7 +17,7 @@ GEM ast (2.4.2) backports (3.25.0) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -39,7 +39,7 @@ GEM cucumber-expressions (6.0.1) cucumber-tag_expressions (1.1.1) cucumber-wire (0.0.1) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -47,7 +47,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) gherkin (5.1.0) hashdiff (1.1.0) json (2.7.2) @@ -61,8 +61,8 @@ GEM multi_json (1.15.0) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -77,8 +77,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -87,7 +87,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -96,7 +96,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -109,7 +109,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -122,10 +122,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.0_cucumber_4.gemfile.lock b/gemfiles/ruby_3.0_cucumber_4.gemfile.lock index 4722ceb1..df69f86f 100644 --- a/gemfiles/ruby_3.0_cucumber_4.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_4.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -59,7 +59,7 @@ GEM cucumber-core (~> 7.1, >= 7.1.0) cucumber-cucumber-expressions (~> 10.1, >= 10.1.0) cucumber-messages (~> 12.2, >= 12.2.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -67,7 +67,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.3) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -79,12 +79,12 @@ GEM lint_roller (1.1.0) method_source (1.1.0) middleware (0.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -104,8 +104,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -114,7 +114,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -123,7 +123,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -136,7 +136,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -149,10 +149,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -162,7 +162,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) diff --git a/gemfiles/ruby_3.0_cucumber_5.gemfile.lock b/gemfiles/ruby_3.0_cucumber_5.gemfile.lock index 8f20287b..f205fe3a 100644 --- a/gemfiles/ruby_3.0_cucumber_5.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_5.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -59,7 +59,7 @@ GEM cucumber-core (~> 8.0, >= 8.0.1) cucumber-cucumber-expressions (~> 10.3, >= 10.3.0) cucumber-messages (~> 13.0, >= 13.0.1) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -67,7 +67,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -79,12 +79,12 @@ GEM lint_roller (1.1.0) method_source (1.1.0) middleware (0.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -104,8 +104,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -114,7 +114,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -123,7 +123,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -136,7 +136,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -149,10 +149,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -162,7 +162,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) diff --git a/gemfiles/ruby_3.0_cucumber_6.gemfile.lock b/gemfiles/ruby_3.0_cucumber_6.gemfile.lock index d3f3acf0..46f061ff 100644 --- a/gemfiles/ruby_3.0_cucumber_6.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_6.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -60,7 +60,7 @@ GEM cucumber-core (~> 9.0, >= 9.0.1) cucumber-cucumber-expressions (~> 12.1, >= 12.1.1) cucumber-messages (~> 15.0, >= 15.0.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -68,7 +68,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -82,13 +82,13 @@ GEM middleware (0.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) - minitest (5.23.0) + mime-types-data (3.2024.0604) + minitest (5.24.0) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -108,8 +108,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -118,7 +118,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -127,7 +127,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -140,7 +140,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -153,10 +153,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -166,7 +166,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) diff --git a/gemfiles/ruby_3.0_cucumber_7.gemfile.lock b/gemfiles/ruby_3.0_cucumber_7.gemfile.lock index 29c7c8e3..e5c29120 100644 --- a/gemfiles/ruby_3.0_cucumber_7.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_7.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -52,7 +52,7 @@ GEM cucumber-wire (6.2.1) cucumber-core (~> 10.1, >= 10.1.0) cucumber-cucumber-expressions (~> 14.0, >= 14.0.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -60,7 +60,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -71,12 +71,12 @@ GEM method_source (1.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) + mime-types-data (3.2024.0604) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -91,8 +91,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -101,7 +101,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -110,7 +110,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -123,7 +123,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -136,10 +136,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -149,7 +149,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_3.0_cucumber_8.gemfile.lock b/gemfiles/ruby_3.0_cucumber_8.gemfile.lock index acfb97a8..53203c7f 100644 --- a/gemfiles/ruby_3.0_cucumber_8.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_8.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -46,7 +46,7 @@ GEM cucumber-messages (~> 18.0, >= 18.0.0) cucumber-messages (18.0.0) cucumber-tag-expressions (4.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -54,7 +54,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -65,12 +65,12 @@ GEM method_source (1.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) + mime-types-data (3.2024.0604) msgpack (1.7.2) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -85,8 +85,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -95,7 +95,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -104,7 +104,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -117,7 +117,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -130,10 +130,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -143,7 +143,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_3.0_cucumber_9.gemfile.lock b/gemfiles/ruby_3.0_cucumber_9.gemfile.lock index bc1b0333..4c22788a 100644 --- a/gemfiles/ruby_3.0_cucumber_9.gemfile.lock +++ b/gemfiles/ruby_3.0_cucumber_9.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -47,7 +47,7 @@ GEM cucumber-messages (> 19, < 25) cucumber-messages (22.0.0) cucumber-tag-expressions (6.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -55,7 +55,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -68,8 +68,8 @@ GEM msgpack (1.7.2) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -84,8 +84,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -94,7 +94,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -103,7 +103,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -116,7 +116,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -129,10 +129,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -142,7 +142,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile.lock index 28c1eadf..389cc5c3 100644 --- a/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.0_knapsack_pro_7_rspec_3.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,10 +29,10 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) - knapsack_pro (7.3.0) + knapsack_pro (7.6.0) rake language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -42,8 +42,8 @@ GEM method_source (1.1.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -58,8 +58,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -68,7 +68,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -77,7 +77,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -90,7 +90,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -103,10 +103,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.0_minitest_5.gemfile.lock b/gemfiles/ruby_3.0_minitest_5.gemfile.lock index de2e21a8..896cc3f7 100644 --- a/gemfiles/ruby_3.0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.0_minitest_5.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -38,11 +38,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -57,8 +57,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -67,7 +67,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -76,7 +76,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -89,7 +89,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -102,10 +102,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.0_rspec_3.gemfile.lock b/gemfiles/ruby_3.0_rspec_3.gemfile.lock index 345286c9..d4049ddc 100644 --- a/gemfiles/ruby_3.0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.0_rspec_3.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -40,8 +40,8 @@ GEM method_source (1.1.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -56,8 +56,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -66,7 +66,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -75,7 +75,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -88,7 +88,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -101,10 +101,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile.lock b/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile.lock index 623bd329..38f245f8 100644 --- a/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile.lock +++ b/gemfiles/ruby_3.0_selenium_4_capybara_3.gemfile.lock @@ -17,7 +17,7 @@ GEM ast (2.4.2) base64 (0.2.0) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) capybara (3.40.0) addressable matrix @@ -57,7 +57,7 @@ GEM cucumber-messages (> 19, < 25) cucumber-messages (22.0.0) cucumber-tag-expressions (6.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -65,7 +65,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -78,20 +78,20 @@ GEM mini_mime (1.1.5) msgpack (1.7.2) multi_test (1.1.0) - nokogiri (1.16.5-aarch64-linux) + nokogiri (1.16.6-aarch64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) - public_suffix (5.0.5) + public_suffix (5.1.1) racc (1.8.0) - rack (3.0.11) + rack (3.1.3) rack-test (2.1.0) rack (>= 1.3) rainbow (3.1.1) @@ -100,8 +100,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -110,7 +110,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -119,7 +119,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -132,7 +132,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -151,10 +151,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -164,7 +164,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_3.0_timecop_0.gemfile.lock b/gemfiles/ruby_3.0_timecop_0.gemfile.lock index 1faa626d..1e73bf60 100644 --- a/gemfiles/ruby_3.0_timecop_0.gemfile.lock +++ b/gemfiles/ruby_3.0_timecop_0.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -38,11 +38,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.1) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -57,8 +57,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -67,7 +67,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -76,7 +76,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -89,7 +89,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -102,10 +102,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -116,7 +116,7 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) + timecop (0.9.10) unicode-display_width (2.5.0) webmock (3.23.1) addressable (>= 2.8.0) diff --git a/gemfiles/ruby_3.1_activesupport_4.gemfile.lock b/gemfiles/ruby_3.1_activesupport_4.gemfile.lock index 70a9c256..b3da8bde 100644 --- a/gemfiles/ruby_3.1_activesupport_4.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport_4.gemfile.lock @@ -23,11 +23,11 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -35,7 +35,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (0.9.5) concurrent-ruby (~> 1.0) @@ -46,11 +46,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -65,8 +65,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -75,7 +75,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -84,7 +84,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -97,7 +97,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -110,10 +110,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.1_activesupport_5.gemfile.lock b/gemfiles/ruby_3.1_activesupport_5.gemfile.lock index e0034e2e..6bc9e460 100644 --- a/gemfiles/ruby_3.1_activesupport_5.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport_5.gemfile.lock @@ -23,11 +23,11 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -35,7 +35,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -46,11 +46,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -65,8 +65,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -75,7 +75,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -84,7 +84,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -97,7 +97,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -110,10 +110,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.1_activesupport_6.gemfile.lock b/gemfiles/ruby_3.1_activesupport_6.gemfile.lock index ac314b87..3c2733b7 100644 --- a/gemfiles/ruby_3.1_activesupport_6.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport_6.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (6.1.7.7) + activesupport (6.1.7.8) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -24,11 +24,11 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -36,7 +36,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -47,11 +47,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -66,8 +66,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -76,7 +76,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -85,7 +85,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -98,7 +98,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -111,10 +111,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -134,7 +134,7 @@ GEM hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) - zeitwerk (2.6.14) + zeitwerk (2.6.16) PLATFORMS aarch64-linux diff --git a/gemfiles/ruby_3.1_activesupport_7.gemfile.lock b/gemfiles/ruby_3.1_activesupport_7.gemfile.lock index 69167791..a1d61884 100644 --- a/gemfiles/ruby_3.1_activesupport_7.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport_7.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.3) + activesupport (7.1.3.4) base64 bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) @@ -29,12 +29,12 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) connection_pool (2.4.1) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -43,7 +43,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) drb (2.2.1) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -54,12 +54,12 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) mutex_m (0.2.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -74,8 +74,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -84,7 +84,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -93,7 +93,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -106,7 +106,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -119,10 +119,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile.lock index ddf127a2..6ddacf1f 100644 --- a/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.1_ci_queue_0_minitest_5.gemfile.lock @@ -17,14 +17,14 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) - ci-queue (0.53.0) + builder (3.3.0) + ci-queue (0.55.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -32,7 +32,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -41,7 +41,7 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) minitest-reporters (1.6.1) ansi builder @@ -49,8 +49,8 @@ GEM ruby-progressbar msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -65,8 +65,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -75,7 +75,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -84,7 +84,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -97,7 +97,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -110,10 +110,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile.lock index f688ee56..d7d7a06f 100644 --- a/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.1_ci_queue_0_rspec_3.gemfile.lock @@ -16,13 +16,13 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - ci-queue (0.53.0) + ci-queue (0.55.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -30,7 +30,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -41,8 +41,8 @@ GEM method_source (1.1.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -57,8 +57,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -67,7 +67,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -76,7 +76,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -89,7 +89,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -102,10 +102,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.1_cucumber_3.gemfile.lock b/gemfiles/ruby_3.1_cucumber_3.gemfile.lock index 9e5bde91..3edb105b 100644 --- a/gemfiles/ruby_3.1_cucumber_3.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_3.gemfile.lock @@ -17,7 +17,7 @@ GEM ast (2.4.2) backports (3.25.0) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -39,7 +39,7 @@ GEM cucumber-expressions (6.0.1) cucumber-tag_expressions (1.1.1) cucumber-wire (0.0.1) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -47,7 +47,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) gherkin (5.1.0) hashdiff (1.1.0) json (2.7.2) @@ -61,8 +61,8 @@ GEM multi_json (1.15.0) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -77,8 +77,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -87,7 +87,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -96,7 +96,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -109,7 +109,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -122,10 +122,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.1_cucumber_4.gemfile.lock b/gemfiles/ruby_3.1_cucumber_4.gemfile.lock index 4722ceb1..df69f86f 100644 --- a/gemfiles/ruby_3.1_cucumber_4.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_4.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -59,7 +59,7 @@ GEM cucumber-core (~> 7.1, >= 7.1.0) cucumber-cucumber-expressions (~> 10.1, >= 10.1.0) cucumber-messages (~> 12.2, >= 12.2.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -67,7 +67,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.3) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -79,12 +79,12 @@ GEM lint_roller (1.1.0) method_source (1.1.0) middleware (0.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -104,8 +104,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -114,7 +114,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -123,7 +123,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -136,7 +136,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -149,10 +149,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -162,7 +162,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) diff --git a/gemfiles/ruby_3.1_cucumber_5.gemfile.lock b/gemfiles/ruby_3.1_cucumber_5.gemfile.lock index 8f20287b..f205fe3a 100644 --- a/gemfiles/ruby_3.1_cucumber_5.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_5.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -59,7 +59,7 @@ GEM cucumber-core (~> 8.0, >= 8.0.1) cucumber-cucumber-expressions (~> 10.3, >= 10.3.0) cucumber-messages (~> 13.0, >= 13.0.1) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -67,7 +67,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -79,12 +79,12 @@ GEM lint_roller (1.1.0) method_source (1.1.0) middleware (0.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -104,8 +104,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -114,7 +114,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -123,7 +123,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -136,7 +136,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -149,10 +149,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -162,7 +162,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) diff --git a/gemfiles/ruby_3.1_cucumber_6.gemfile.lock b/gemfiles/ruby_3.1_cucumber_6.gemfile.lock index d3f3acf0..46f061ff 100644 --- a/gemfiles/ruby_3.1_cucumber_6.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_6.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -60,7 +60,7 @@ GEM cucumber-core (~> 9.0, >= 9.0.1) cucumber-cucumber-expressions (~> 12.1, >= 12.1.1) cucumber-messages (~> 15.0, >= 15.0.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -68,7 +68,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -82,13 +82,13 @@ GEM middleware (0.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) - minitest (5.23.0) + mime-types-data (3.2024.0604) + minitest (5.24.0) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -108,8 +108,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -118,7 +118,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -127,7 +127,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -140,7 +140,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -153,10 +153,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -166,7 +166,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) diff --git a/gemfiles/ruby_3.1_cucumber_7.gemfile.lock b/gemfiles/ruby_3.1_cucumber_7.gemfile.lock index 29c7c8e3..e5c29120 100644 --- a/gemfiles/ruby_3.1_cucumber_7.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_7.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -52,7 +52,7 @@ GEM cucumber-wire (6.2.1) cucumber-core (~> 10.1, >= 10.1.0) cucumber-cucumber-expressions (~> 14.0, >= 14.0.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -60,7 +60,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -71,12 +71,12 @@ GEM method_source (1.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) + mime-types-data (3.2024.0604) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -91,8 +91,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -101,7 +101,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -110,7 +110,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -123,7 +123,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -136,10 +136,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -149,7 +149,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_3.1_cucumber_8.gemfile.lock b/gemfiles/ruby_3.1_cucumber_8.gemfile.lock index acfb97a8..53203c7f 100644 --- a/gemfiles/ruby_3.1_cucumber_8.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_8.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -46,7 +46,7 @@ GEM cucumber-messages (~> 18.0, >= 18.0.0) cucumber-messages (18.0.0) cucumber-tag-expressions (4.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -54,7 +54,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -65,12 +65,12 @@ GEM method_source (1.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) + mime-types-data (3.2024.0604) msgpack (1.7.2) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -85,8 +85,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -95,7 +95,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -104,7 +104,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -117,7 +117,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -130,10 +130,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -143,7 +143,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_3.1_cucumber_9.gemfile.lock b/gemfiles/ruby_3.1_cucumber_9.gemfile.lock index bc1b0333..4c22788a 100644 --- a/gemfiles/ruby_3.1_cucumber_9.gemfile.lock +++ b/gemfiles/ruby_3.1_cucumber_9.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -47,7 +47,7 @@ GEM cucumber-messages (> 19, < 25) cucumber-messages (22.0.0) cucumber-tag-expressions (6.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -55,7 +55,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -68,8 +68,8 @@ GEM msgpack (1.7.2) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -84,8 +84,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -94,7 +94,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -103,7 +103,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -116,7 +116,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -129,10 +129,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -142,7 +142,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile.lock index 28c1eadf..389cc5c3 100644 --- a/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.1_knapsack_pro_7_rspec_3.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,10 +29,10 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) - knapsack_pro (7.3.0) + knapsack_pro (7.6.0) rake language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -42,8 +42,8 @@ GEM method_source (1.1.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -58,8 +58,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -68,7 +68,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -77,7 +77,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -90,7 +90,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -103,10 +103,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.1_minitest_5.gemfile.lock b/gemfiles/ruby_3.1_minitest_5.gemfile.lock index de2e21a8..896cc3f7 100644 --- a/gemfiles/ruby_3.1_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.1_minitest_5.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -38,11 +38,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -57,8 +57,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -67,7 +67,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -76,7 +76,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -89,7 +89,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -102,10 +102,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock index a7abed5d..e4be3538 100644 --- a/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock +++ b/gemfiles/ruby_3.1_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.3) + activesupport (7.1.3.4) base64 bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) @@ -29,12 +29,12 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) connection_pool (2.4.1) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -43,7 +43,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) drb (2.2.1) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -54,12 +54,12 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) mutex_m (0.2.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -74,8 +74,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -84,7 +84,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -93,7 +93,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -106,7 +106,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -122,10 +122,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.1_rspec_3.gemfile.lock b/gemfiles/ruby_3.1_rspec_3.gemfile.lock index 345286c9..d4049ddc 100644 --- a/gemfiles/ruby_3.1_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.1_rspec_3.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -40,8 +40,8 @@ GEM method_source (1.1.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -56,8 +56,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -66,7 +66,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -75,7 +75,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -88,7 +88,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -101,10 +101,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile.lock b/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile.lock index 623bd329..38f245f8 100644 --- a/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile.lock +++ b/gemfiles/ruby_3.1_selenium_4_capybara_3.gemfile.lock @@ -17,7 +17,7 @@ GEM ast (2.4.2) base64 (0.2.0) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) capybara (3.40.0) addressable matrix @@ -57,7 +57,7 @@ GEM cucumber-messages (> 19, < 25) cucumber-messages (22.0.0) cucumber-tag-expressions (6.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -65,7 +65,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -78,20 +78,20 @@ GEM mini_mime (1.1.5) msgpack (1.7.2) multi_test (1.1.0) - nokogiri (1.16.5-aarch64-linux) + nokogiri (1.16.6-aarch64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) - public_suffix (5.0.5) + public_suffix (5.1.1) racc (1.8.0) - rack (3.0.11) + rack (3.1.3) rack-test (2.1.0) rack (>= 1.3) rainbow (3.1.1) @@ -100,8 +100,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -110,7 +110,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -119,7 +119,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -132,7 +132,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -151,10 +151,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -164,7 +164,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_3.1_timecop_0.gemfile.lock b/gemfiles/ruby_3.1_timecop_0.gemfile.lock index 1faa626d..1e73bf60 100644 --- a/gemfiles/ruby_3.1_timecop_0.gemfile.lock +++ b/gemfiles/ruby_3.1_timecop_0.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -38,11 +38,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.1) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -57,8 +57,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -67,7 +67,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -76,7 +76,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -89,7 +89,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -102,10 +102,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -116,7 +116,7 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) + timecop (0.9.10) unicode-display_width (2.5.0) webmock (3.23.1) addressable (>= 2.8.0) diff --git a/gemfiles/ruby_3.2_activesupport_4.gemfile.lock b/gemfiles/ruby_3.2_activesupport_4.gemfile.lock index 70a9c256..b3da8bde 100644 --- a/gemfiles/ruby_3.2_activesupport_4.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport_4.gemfile.lock @@ -23,11 +23,11 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -35,7 +35,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (0.9.5) concurrent-ruby (~> 1.0) @@ -46,11 +46,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -65,8 +65,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -75,7 +75,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -84,7 +84,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -97,7 +97,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -110,10 +110,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.2_activesupport_5.gemfile.lock b/gemfiles/ruby_3.2_activesupport_5.gemfile.lock index e0034e2e..6bc9e460 100644 --- a/gemfiles/ruby_3.2_activesupport_5.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport_5.gemfile.lock @@ -23,11 +23,11 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -35,7 +35,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -46,11 +46,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -65,8 +65,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -75,7 +75,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -84,7 +84,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -97,7 +97,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -110,10 +110,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.2_activesupport_6.gemfile.lock b/gemfiles/ruby_3.2_activesupport_6.gemfile.lock index ac314b87..3c2733b7 100644 --- a/gemfiles/ruby_3.2_activesupport_6.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport_6.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (6.1.7.7) + activesupport (6.1.7.8) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -24,11 +24,11 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -36,7 +36,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -47,11 +47,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -66,8 +66,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -76,7 +76,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -85,7 +85,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -98,7 +98,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -111,10 +111,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -134,7 +134,7 @@ GEM hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) - zeitwerk (2.6.14) + zeitwerk (2.6.16) PLATFORMS aarch64-linux diff --git a/gemfiles/ruby_3.2_activesupport_7.gemfile.lock b/gemfiles/ruby_3.2_activesupport_7.gemfile.lock index 69167791..a1d61884 100644 --- a/gemfiles/ruby_3.2_activesupport_7.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport_7.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.3) + activesupport (7.1.3.4) base64 bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) @@ -29,12 +29,12 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) connection_pool (2.4.1) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -43,7 +43,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) drb (2.2.1) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -54,12 +54,12 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) mutex_m (0.2.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -74,8 +74,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -84,7 +84,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -93,7 +93,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -106,7 +106,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -119,10 +119,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile.lock index ddf127a2..6ddacf1f 100644 --- a/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.2_ci_queue_0_minitest_5.gemfile.lock @@ -17,14 +17,14 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) - ci-queue (0.53.0) + builder (3.3.0) + ci-queue (0.55.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -32,7 +32,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -41,7 +41,7 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) minitest-reporters (1.6.1) ansi builder @@ -49,8 +49,8 @@ GEM ruby-progressbar msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -65,8 +65,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -75,7 +75,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -84,7 +84,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -97,7 +97,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -110,10 +110,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile.lock index f688ee56..d7d7a06f 100644 --- a/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.2_ci_queue_0_rspec_3.gemfile.lock @@ -16,13 +16,13 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - ci-queue (0.53.0) + ci-queue (0.55.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -30,7 +30,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -41,8 +41,8 @@ GEM method_source (1.1.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -57,8 +57,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -67,7 +67,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -76,7 +76,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -89,7 +89,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -102,10 +102,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.2_cucumber_3.gemfile.lock b/gemfiles/ruby_3.2_cucumber_3.gemfile.lock index 9e5bde91..3edb105b 100644 --- a/gemfiles/ruby_3.2_cucumber_3.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_3.gemfile.lock @@ -17,7 +17,7 @@ GEM ast (2.4.2) backports (3.25.0) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -39,7 +39,7 @@ GEM cucumber-expressions (6.0.1) cucumber-tag_expressions (1.1.1) cucumber-wire (0.0.1) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -47,7 +47,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) gherkin (5.1.0) hashdiff (1.1.0) json (2.7.2) @@ -61,8 +61,8 @@ GEM multi_json (1.15.0) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -77,8 +77,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -87,7 +87,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -96,7 +96,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -109,7 +109,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -122,10 +122,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.2_cucumber_4.gemfile.lock b/gemfiles/ruby_3.2_cucumber_4.gemfile.lock index 4722ceb1..df69f86f 100644 --- a/gemfiles/ruby_3.2_cucumber_4.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_4.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -59,7 +59,7 @@ GEM cucumber-core (~> 7.1, >= 7.1.0) cucumber-cucumber-expressions (~> 10.1, >= 10.1.0) cucumber-messages (~> 12.2, >= 12.2.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -67,7 +67,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.3) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -79,12 +79,12 @@ GEM lint_roller (1.1.0) method_source (1.1.0) middleware (0.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -104,8 +104,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -114,7 +114,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -123,7 +123,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -136,7 +136,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -149,10 +149,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -162,7 +162,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) diff --git a/gemfiles/ruby_3.2_cucumber_5.gemfile.lock b/gemfiles/ruby_3.2_cucumber_5.gemfile.lock index 8f20287b..f205fe3a 100644 --- a/gemfiles/ruby_3.2_cucumber_5.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_5.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -59,7 +59,7 @@ GEM cucumber-core (~> 8.0, >= 8.0.1) cucumber-cucumber-expressions (~> 10.3, >= 10.3.0) cucumber-messages (~> 13.0, >= 13.0.1) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -67,7 +67,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -79,12 +79,12 @@ GEM lint_roller (1.1.0) method_source (1.1.0) middleware (0.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -104,8 +104,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -114,7 +114,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -123,7 +123,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -136,7 +136,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -149,10 +149,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -162,7 +162,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) diff --git a/gemfiles/ruby_3.2_cucumber_6.gemfile.lock b/gemfiles/ruby_3.2_cucumber_6.gemfile.lock index d3f3acf0..46f061ff 100644 --- a/gemfiles/ruby_3.2_cucumber_6.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_6.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -60,7 +60,7 @@ GEM cucumber-core (~> 9.0, >= 9.0.1) cucumber-cucumber-expressions (~> 12.1, >= 12.1.1) cucumber-messages (~> 15.0, >= 15.0.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -68,7 +68,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -82,13 +82,13 @@ GEM middleware (0.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) - minitest (5.23.0) + mime-types-data (3.2024.0604) + minitest (5.24.0) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -108,8 +108,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -118,7 +118,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -127,7 +127,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -140,7 +140,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -153,10 +153,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -166,7 +166,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) diff --git a/gemfiles/ruby_3.2_cucumber_7.gemfile.lock b/gemfiles/ruby_3.2_cucumber_7.gemfile.lock index 29c7c8e3..e5c29120 100644 --- a/gemfiles/ruby_3.2_cucumber_7.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_7.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -52,7 +52,7 @@ GEM cucumber-wire (6.2.1) cucumber-core (~> 10.1, >= 10.1.0) cucumber-cucumber-expressions (~> 14.0, >= 14.0.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -60,7 +60,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -71,12 +71,12 @@ GEM method_source (1.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) + mime-types-data (3.2024.0604) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -91,8 +91,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -101,7 +101,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -110,7 +110,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -123,7 +123,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -136,10 +136,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -149,7 +149,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_3.2_cucumber_8.gemfile.lock b/gemfiles/ruby_3.2_cucumber_8.gemfile.lock index acfb97a8..53203c7f 100644 --- a/gemfiles/ruby_3.2_cucumber_8.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_8.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -46,7 +46,7 @@ GEM cucumber-messages (~> 18.0, >= 18.0.0) cucumber-messages (18.0.0) cucumber-tag-expressions (4.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -54,7 +54,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -65,12 +65,12 @@ GEM method_source (1.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) + mime-types-data (3.2024.0604) msgpack (1.7.2) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -85,8 +85,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -95,7 +95,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -104,7 +104,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -117,7 +117,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -130,10 +130,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -143,7 +143,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_3.2_cucumber_9.gemfile.lock b/gemfiles/ruby_3.2_cucumber_9.gemfile.lock index bc1b0333..4c22788a 100644 --- a/gemfiles/ruby_3.2_cucumber_9.gemfile.lock +++ b/gemfiles/ruby_3.2_cucumber_9.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -47,7 +47,7 @@ GEM cucumber-messages (> 19, < 25) cucumber-messages (22.0.0) cucumber-tag-expressions (6.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -55,7 +55,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -68,8 +68,8 @@ GEM msgpack (1.7.2) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -84,8 +84,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -94,7 +94,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -103,7 +103,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -116,7 +116,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -129,10 +129,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -142,7 +142,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile.lock index 28c1eadf..389cc5c3 100644 --- a/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.2_knapsack_pro_7_rspec_3.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,10 +29,10 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) - knapsack_pro (7.3.0) + knapsack_pro (7.6.0) rake language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0-aarch64-linux) @@ -42,8 +42,8 @@ GEM method_source (1.1.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -58,8 +58,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -68,7 +68,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -77,7 +77,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -90,7 +90,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -103,10 +103,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.2_minitest_5.gemfile.lock b/gemfiles/ruby_3.2_minitest_5.gemfile.lock index de2e21a8..896cc3f7 100644 --- a/gemfiles/ruby_3.2_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.2_minitest_5.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -38,11 +38,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -57,8 +57,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -67,7 +67,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -76,7 +76,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -89,7 +89,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -102,10 +102,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock index a7abed5d..e4be3538 100644 --- a/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock +++ b/gemfiles/ruby_3.2_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.3) + activesupport (7.1.3.4) base64 bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) @@ -29,12 +29,12 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) connection_pool (2.4.1) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -43,7 +43,7 @@ GEM diff-lcs (1.5.1) docile (1.4.0) drb (2.2.1) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -54,12 +54,12 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) mutex_m (0.2.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -74,8 +74,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -84,7 +84,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -93,7 +93,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -106,7 +106,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -122,10 +122,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.2_rspec_3.gemfile.lock b/gemfiles/ruby_3.2_rspec_3.gemfile.lock index 345286c9..d4049ddc 100644 --- a/gemfiles/ruby_3.2_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.2_rspec_3.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -40,8 +40,8 @@ GEM method_source (1.1.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -56,8 +56,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -66,7 +66,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -75,7 +75,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -88,7 +88,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -101,10 +101,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile.lock b/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile.lock index 623bd329..38f245f8 100644 --- a/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile.lock +++ b/gemfiles/ruby_3.2_selenium_4_capybara_3.gemfile.lock @@ -17,7 +17,7 @@ GEM ast (2.4.2) base64 (0.2.0) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) capybara (3.40.0) addressable matrix @@ -57,7 +57,7 @@ GEM cucumber-messages (> 19, < 25) cucumber-messages (22.0.0) cucumber-tag-expressions (6.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -65,7 +65,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -78,20 +78,20 @@ GEM mini_mime (1.1.5) msgpack (1.7.2) multi_test (1.1.0) - nokogiri (1.16.5-aarch64-linux) + nokogiri (1.16.6-aarch64-linux) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) - public_suffix (5.0.5) + public_suffix (5.1.1) racc (1.8.0) - rack (3.0.11) + rack (3.1.3) rack-test (2.1.0) rack (>= 1.3) rainbow (3.1.1) @@ -100,8 +100,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -110,7 +110,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -119,7 +119,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -132,7 +132,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -151,10 +151,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -164,7 +164,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_3.2_timecop_0.gemfile.lock b/gemfiles/ruby_3.2_timecop_0.gemfile.lock index 1faa626d..1e73bf60 100644 --- a/gemfiles/ruby_3.2_timecop_0.gemfile.lock +++ b/gemfiles/ruby_3.2_timecop_0.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,7 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -38,11 +38,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.1) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -57,8 +57,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -67,7 +67,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -76,7 +76,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -89,7 +89,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -102,10 +102,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -116,7 +116,7 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) + timecop (0.9.10) unicode-display_width (2.5.0) webmock (3.23.1) addressable (>= 2.8.0) diff --git a/gemfiles/ruby_3.3_activesupport_4.gemfile.lock b/gemfiles/ruby_3.3_activesupport_4.gemfile.lock index 6b82a46f..3606b9b3 100644 --- a/gemfiles/ruby_3.3_activesupport_4.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport_4.gemfile.lock @@ -23,11 +23,11 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -35,7 +35,8 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) i18n (0.9.5) concurrent-ruby (~> 1.0) @@ -49,11 +50,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -68,8 +69,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -78,7 +79,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -87,7 +88,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -100,7 +101,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -113,10 +114,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.3_activesupport_5.gemfile.lock b/gemfiles/ruby_3.3_activesupport_5.gemfile.lock index e0801957..63d71a16 100644 --- a/gemfiles/ruby_3.3_activesupport_5.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport_5.gemfile.lock @@ -23,11 +23,11 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -35,7 +35,8 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -49,11 +50,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -68,8 +69,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -78,7 +79,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -87,7 +88,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -100,7 +101,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -113,10 +114,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.3_activesupport_6.gemfile.lock b/gemfiles/ruby_3.3_activesupport_6.gemfile.lock index 3c64bbc2..55e46e5b 100644 --- a/gemfiles/ruby_3.3_activesupport_6.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport_6.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (6.1.7.7) + activesupport (6.1.7.8) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -24,11 +24,11 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -36,7 +36,8 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -50,11 +51,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -69,8 +70,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -79,7 +80,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -88,7 +89,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -101,7 +102,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -114,10 +115,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -137,7 +138,7 @@ GEM hashdiff (>= 0.4.0, < 2.0.0) webrick (1.8.1) yard (0.9.36) - zeitwerk (2.6.14) + zeitwerk (2.6.16) PLATFORMS aarch64-linux diff --git a/gemfiles/ruby_3.3_activesupport_7.gemfile.lock b/gemfiles/ruby_3.3_activesupport_7.gemfile.lock index 3542c9ed..a39a1c80 100644 --- a/gemfiles/ruby_3.3_activesupport_7.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport_7.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.3) + activesupport (7.1.3.4) base64 bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) @@ -29,12 +29,12 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) connection_pool (2.4.1) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -43,7 +43,8 @@ GEM diff-lcs (1.5.1) docile (1.4.0) drb (2.2.1) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -57,12 +58,12 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) mutex_m (0.2.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -77,8 +78,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -87,7 +88,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -96,7 +97,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -109,7 +110,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -122,10 +123,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile.lock b/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile.lock index 0affb1e3..4c56bfb3 100644 --- a/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.3_ci_queue_0_minitest_5.gemfile.lock @@ -17,14 +17,14 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) - ci-queue (0.53.0) + builder (3.3.0) + ci-queue (0.55.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -32,7 +32,8 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -44,7 +45,7 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) minitest-reporters (1.6.1) ansi builder @@ -52,8 +53,8 @@ GEM ruby-progressbar msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -68,8 +69,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -78,7 +79,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -87,7 +88,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -100,7 +101,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -113,10 +114,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile.lock b/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile.lock index 74bf0ba6..99880f5a 100644 --- a/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.3_ci_queue_0_rspec_3.gemfile.lock @@ -16,13 +16,13 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - ci-queue (0.53.0) + ci-queue (0.55.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -30,7 +30,8 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -44,8 +45,8 @@ GEM method_source (1.1.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -60,8 +61,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -70,7 +71,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -79,7 +80,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -92,7 +93,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -105,10 +106,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.3_cucumber_3.gemfile.lock b/gemfiles/ruby_3.3_cucumber_3.gemfile.lock index 63baa44a..2bad9ba3 100644 --- a/gemfiles/ruby_3.3_cucumber_3.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_3.gemfile.lock @@ -17,7 +17,7 @@ GEM ast (2.4.2) backports (3.25.0) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -39,7 +39,7 @@ GEM cucumber-expressions (6.0.1) cucumber-tag_expressions (1.1.1) cucumber-wire (0.0.1) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -47,7 +47,8 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) gherkin (5.1.0) hashdiff (1.1.0) json (2.7.2) @@ -64,8 +65,8 @@ GEM multi_json (1.15.0) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -80,8 +81,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -90,7 +91,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -99,7 +100,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -112,7 +113,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -125,10 +126,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.3_cucumber_4.gemfile.lock b/gemfiles/ruby_3.3_cucumber_4.gemfile.lock index 470e020e..c6ea08e7 100644 --- a/gemfiles/ruby_3.3_cucumber_4.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_4.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -55,7 +55,7 @@ GEM cucumber-core (~> 7.0, >= 7.0.0) cucumber-cucumber-expressions (~> 10.1, >= 10.1.0) cucumber-messages (~> 12.1, >= 12.1.1) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -63,7 +63,8 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -78,12 +79,12 @@ GEM lint_roller (1.1.0) method_source (1.1.0) middleware (0.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -103,8 +104,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -113,7 +114,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -122,7 +123,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -135,7 +136,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -148,10 +149,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -161,7 +162,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) diff --git a/gemfiles/ruby_3.3_cucumber_5.gemfile.lock b/gemfiles/ruby_3.3_cucumber_5.gemfile.lock index 759e0249..9e868f59 100644 --- a/gemfiles/ruby_3.3_cucumber_5.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_5.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -59,7 +59,7 @@ GEM cucumber-core (~> 8.0, >= 8.0.1) cucumber-cucumber-expressions (~> 10.3, >= 10.3.0) cucumber-messages (~> 13.0, >= 13.0.1) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -67,7 +67,8 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -82,12 +83,12 @@ GEM lint_roller (1.1.0) method_source (1.1.0) middleware (0.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -107,8 +108,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -117,7 +118,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -126,7 +127,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -139,7 +140,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -152,10 +153,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -165,7 +166,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) diff --git a/gemfiles/ruby_3.3_cucumber_6.gemfile.lock b/gemfiles/ruby_3.3_cucumber_6.gemfile.lock index 6b8f7038..1f3d1c4e 100644 --- a/gemfiles/ruby_3.3_cucumber_6.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_6.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.8.3) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -21,10 +21,10 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) crack (1.0.0) bigdecimal rexml @@ -60,7 +60,7 @@ GEM cucumber-core (~> 9.0, >= 9.0.1) cucumber-cucumber-expressions (~> 12.1, >= 12.1.1) cucumber-messages (~> 15.0, >= 15.0.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -68,7 +68,8 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -85,13 +86,13 @@ GEM middleware (0.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) - minitest (5.23.0) + mime-types-data (3.2024.0604) + minitest (5.24.0) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -111,8 +112,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -121,7 +122,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -130,7 +131,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -143,7 +144,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -156,10 +157,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -169,7 +170,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) thread_safe (0.3.6) diff --git a/gemfiles/ruby_3.3_cucumber_7.gemfile.lock b/gemfiles/ruby_3.3_cucumber_7.gemfile.lock index d11eb26b..de9f0ada 100644 --- a/gemfiles/ruby_3.3_cucumber_7.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_7.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -52,7 +52,7 @@ GEM cucumber-wire (6.2.1) cucumber-core (~> 10.1, >= 10.1.0) cucumber-cucumber-expressions (~> 14.0, >= 14.0.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -60,7 +60,8 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -74,12 +75,12 @@ GEM method_source (1.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) + mime-types-data (3.2024.0604) msgpack (1.7.2) multi_test (0.1.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -94,8 +95,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -104,7 +105,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -113,7 +114,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -126,7 +127,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -139,10 +140,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -152,7 +153,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_3.3_cucumber_8.gemfile.lock b/gemfiles/ruby_3.3_cucumber_8.gemfile.lock index 68861134..2868c318 100644 --- a/gemfiles/ruby_3.3_cucumber_8.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_8.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -46,7 +46,7 @@ GEM cucumber-messages (~> 18.0, >= 18.0.0) cucumber-messages (18.0.0) cucumber-tag-expressions (4.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -54,7 +54,8 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -68,12 +69,12 @@ GEM method_source (1.1.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) + mime-types-data (3.2024.0604) msgpack (1.7.2) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -88,8 +89,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -98,7 +99,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -107,7 +108,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -120,7 +121,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -133,10 +134,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -146,7 +147,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_3.3_cucumber_9.gemfile.lock b/gemfiles/ruby_3.3_cucumber_9.gemfile.lock index 318a3d7c..3dd93b52 100644 --- a/gemfiles/ruby_3.3_cucumber_9.gemfile.lock +++ b/gemfiles/ruby_3.3_cucumber_9.gemfile.lock @@ -16,7 +16,7 @@ GEM thor (>= 0.14.0) ast (2.4.2) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) climate_control (1.2.0) coderay (1.1.3) crack (1.0.0) @@ -47,7 +47,7 @@ GEM cucumber-messages (> 19, < 25) cucumber-messages (22.0.0) cucumber-tag-expressions (6.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -55,7 +55,8 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -71,8 +72,8 @@ GEM msgpack (1.7.2) multi_test (1.1.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -87,8 +88,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -97,7 +98,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -106,7 +107,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -119,7 +120,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -132,10 +133,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -145,7 +146,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile.lock b/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile.lock index 60566475..b9efa6a4 100644 --- a/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.3_knapsack_pro_7_rspec_3.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,10 +29,11 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) json (2.7.2) - knapsack_pro (7.3.0) + knapsack_pro (7.6.0) rake language_server-protocol (3.17.0.3) libdatadog (9.0.0.1.0) @@ -45,8 +46,8 @@ GEM method_source (1.1.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -61,8 +62,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -71,7 +72,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -80,7 +81,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -93,7 +94,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -106,10 +107,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.3_minitest_5.gemfile.lock b/gemfiles/ruby_3.3_minitest_5.gemfile.lock index 284f6fd8..6ee332d1 100644 --- a/gemfiles/ruby_3.3_minitest_5.gemfile.lock +++ b/gemfiles/ruby_3.3_minitest_5.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,8 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -41,11 +42,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -60,8 +61,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -70,7 +71,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -79,7 +80,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -92,7 +93,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -105,10 +106,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock index ce199ecd..d49abf15 100644 --- a/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock +++ b/gemfiles/ruby_3.3_minitest_5_shoulda_context_2_shoulda_matchers_6.gemfile.lock @@ -8,7 +8,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.3) + activesupport (7.1.3.4) base64 bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) @@ -29,12 +29,12 @@ GEM bigdecimal (3.1.8) climate_control (1.2.0) coderay (1.1.3) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.3) connection_pool (2.4.1) crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -43,7 +43,8 @@ GEM diff-lcs (1.5.1) docile (1.4.0) drb (2.2.1) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -57,12 +58,12 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.0) + minitest (5.24.0) msgpack (1.7.2) mutex_m (0.2.0) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -77,8 +78,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -87,7 +88,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -96,7 +97,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -109,7 +110,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -125,10 +126,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.3_rspec_3.gemfile.lock b/gemfiles/ruby_3.3_rspec_3.gemfile.lock index d595a97a..ab9f7d49 100644 --- a/gemfiles/ruby_3.3_rspec_3.gemfile.lock +++ b/gemfiles/ruby_3.3_rspec_3.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,8 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -43,8 +44,8 @@ GEM method_source (1.1.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -59,8 +60,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -69,7 +70,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -78,7 +79,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -91,7 +92,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -104,10 +105,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) diff --git a/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile.lock b/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile.lock index f4b78b27..f9e99fd7 100644 --- a/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile.lock +++ b/gemfiles/ruby_3.3_selenium_4_capybara_3.gemfile.lock @@ -17,7 +17,7 @@ GEM ast (2.4.2) base64 (0.2.0) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) capybara (3.40.0) addressable matrix @@ -57,7 +57,7 @@ GEM cucumber-messages (> 19, < 25) cucumber-messages (22.0.0) cucumber-tag-expressions (6.1.0) - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -65,7 +65,8 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -81,22 +82,22 @@ GEM mini_mime (1.1.5) msgpack (1.7.2) multi_test (1.1.0) - nokogiri (1.16.5-aarch64-linux) + nokogiri (1.16.6-aarch64-linux) racc (~> 1.4) - nokogiri (1.16.5-arm64-darwin) + nokogiri (1.16.6-arm64-darwin) racc (~> 1.4) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) - public_suffix (5.0.5) + public_suffix (5.1.1) racc (1.8.0) - rack (3.0.11) + rack (3.1.3) rack-test (2.1.0) rack (>= 1.3) rainbow (3.1.1) @@ -105,8 +106,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -115,7 +116,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -124,7 +125,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -137,7 +138,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -156,10 +157,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -169,7 +170,7 @@ GEM lint_roller (~> 1.1) rubocop-performance (~> 1.21.0) strscan (3.1.0) - sys-uname (1.2.3) + sys-uname (1.3.0) ffi (~> 1.1) thor (1.3.1) unicode-display_width (2.5.0) diff --git a/gemfiles/ruby_3.3_timecop_0.gemfile.lock b/gemfiles/ruby_3.3_timecop_0.gemfile.lock index 52bd4052..78bec2e4 100644 --- a/gemfiles/ruby_3.3_timecop_0.gemfile.lock +++ b/gemfiles/ruby_3.3_timecop_0.gemfile.lock @@ -21,7 +21,7 @@ GEM crack (1.0.0) bigdecimal rexml - datadog (2.0.0) + datadog (2.1.0) debase-ruby_core_source (= 3.3.1) libdatadog (~> 9.0.0.1.0) libddwaf (~> 1.14.0.0.0) @@ -29,7 +29,8 @@ GEM debase-ruby_core_source (3.3.1) diff-lcs (1.5.1) docile (1.4.0) - ffi (1.16.3) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-arm64-darwin) hashdiff (1.1.0) json (2.7.2) language_server-protocol (3.17.0.3) @@ -41,11 +42,11 @@ GEM ffi (~> 1.0) lint_roller (1.1.0) method_source (1.1.0) - minitest (5.23.1) + minitest (5.24.0) msgpack (1.7.2) os (1.1.4) - parallel (1.24.0) - parser (3.3.1.0) + parallel (1.25.1) + parser (3.3.3.0) ast (~> 2.4.1) racc pimpmychangelog (0.1.3) @@ -60,8 +61,8 @@ GEM rake redcarpet (3.6.0) regexp_parser (2.9.2) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.0) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) @@ -70,7 +71,7 @@ GEM rspec-expectations (>= 2.99.0.beta1) rspec-core (3.13.0) rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) + rspec-expectations (3.13.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-mocks (3.13.1) @@ -79,7 +80,7 @@ GEM rspec-support (3.13.1) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.63.5) + rubocop (1.64.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -92,7 +93,7 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.3) parser (>= 3.3.1.0) - rubocop-performance (1.21.0) + rubocop-performance (1.21.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -105,10 +106,10 @@ GEM simplecov (~> 0.19) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - standard (1.36.0) + standard (1.37.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.63.0) + rubocop (~> 1.64.0) standard-custom (~> 1.0.0) standard-performance (~> 1.4) standard-custom (1.0.2) @@ -119,7 +120,7 @@ GEM rubocop-performance (~> 1.21.0) strscan (3.1.0) thor (1.3.1) - timecop (0.9.8) + timecop (0.9.10) unicode-display_width (2.5.0) webmock (3.23.1) addressable (>= 2.8.0)