Files
ubicloud/Gemfile
Maciek Sarnowicz 17befcb304 stress_up script for running stress test workloads
Adding a new script for running stress-ng workload on one or more VMs and collecting statistics from the run.
Usage:
./stress_up <vm1> <vm2> ... - run the load test on one or more VMs listed. All VMs need to be on the same host.
./stress_up - run the load on all available VMs. All VMs need to be on the same host.

The load is run through stress-ng utility, which needs to be installed already on the VM.

This is likely not the best place for this script, but I wanted to check it in somewhere. I will likely change it be part of rack command.
2024-11-05 06:57:25 -08:00

73 lines
1.4 KiB
Ruby

# frozen_string_literal: true
source "https://rubygems.org"
ruby "3.2.6"
gem "argon2"
gem "nokogiri"
gem "bcrypt_pbkdf"
gem "ed25519"
gem "net-ssh"
gem "netaddr"
gem "tilt", ">= 2.2"
gem "erubi", ">= 1.5"
gem "puma", ">= 6.2.2"
gem "roda", ">= 3.62"
gem "rodauth", ">= 2.26.1"
gem "rotp"
gem "rqrcode"
gem "mail"
gem "refrigerator", ">= 1"
gem "sequel", ">= 5.62"
gem "sequel_pg", ">= 1.8", require: "sequel"
gem "rack-unreloader", ">= 1.8"
gem "rake"
gem "warning"
gem "pry"
gem "excon"
gem "jwt"
gem "pagerduty", ">= 4.0"
gem "stripe"
gem "countries"
gem "octokit"
gem "argon2-kdf"
group :development do
gem "awesome_print"
gem "brakeman"
gem "by", github: "jeremyevans/by", ref: "f022615e367da3a23f012c3ab06ff664fe3776d3"
gem "erb-formatter", github: "ubicloud/erb-formatter", ref: "a9ff0001a1eb028e2186b222aeb02b07c04f9808"
gem "foreman"
gem "pry-byebug"
gem "rackup"
gem "sequel-annotate"
gem "rubocop-capybara"
gem "rubocop-erb"
gem "rubocop-performance"
gem "rubocop-rake"
gem "rubocop-rspec"
gem "rubocop-sequel"
gem "standard", ">= 1.24.3"
gem "simplecov"
gem "turbo_tests"
gem "cuprite"
gem "text-table"
end
group :test do
gem "capybara"
gem "rspec"
gem "webmock"
gem "pdf-reader"
end
gem "webauthn", "~> 3.1"
gem "aws-sdk-s3", "~> 1.169"
gem "acme-client", "~> 2.0"
gem "prawn", "~> 2.5"
gem "prawn-table", "~> 0.2.2"