Sha256: e82212c8d102c1d3d04df768ea5bf67f3ca92e95cc7f289045db862352248258

Contents?: true

Size: 854 Bytes

Versions: 4

Compression:

Stored size: 854 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"

gem "ostruct" if RUBY_VERSION >= "3.4"

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-5.22.3 Gemfile
sentry-ruby-core-5.22.3 Gemfile
sentry-ruby-core-5.22.2 Gemfile
sentry-ruby-5.22.2 Gemfile