Sha256: e42a371bb6e09fe29d99fad9b200e0f130f1a10a413c22cae62ee0dbdaf382f0

Contents?: true

Size: 814 Bytes

Versions: 4

Compression:

Stored size: 814 Bytes

Contents

# frozen_string_literal: true

source "https://rubygems.org"
git_source(:github) { |name| "https://github.com/#{name}.git" }

gem "sentry-ruby", path: "./"

rack_version = ENV["RACK_VERSION"]
rack_version = "3.0.0" if rack_version.nil?
gem "rack", "~> #{Gem::Version.new(rack_version)}" unless rack_version == "0"

redis_rb_version = ENV.fetch("REDIS_RB_VERSION", "5.0")
gem "redis", "~> #{redis_rb_version}"

gem "puma"

gem "timecop"
gem "stackprof" unless RUBY_PLATFORM == "java"
gem "vernier", platforms: :ruby if RUBY_VERSION >= "3.2.1"

gem "graphql", ">= 2.2.6" if RUBY_VERSION.to_f >= 2.7

gem "benchmark-ips"
gem "benchmark_driver"
gem "benchmark-ipsa"
gem "benchmark-memory"

gem "yard", github: "lsegal/yard"
gem "webrick"
gem "faraday"
gem "excon"

eval_gemfile File.expand_path("../Gemfile", __dir__)

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
sentry-ruby-core-5.22.1 Gemfile
sentry-ruby-5.22.1 Gemfile
sentry-ruby-5.22.0 Gemfile
sentry-ruby-core-5.22.0 Gemfile