File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ git_source(:github) { |name| "https://github.com/#{name}.git" }
66# Specify your gem's dependencies in sentry-ruby.gemspec
77gemspec
88
9+ gem "ostruct" if RUBY_VERSION >= "3.4"
10+
911gem "opentelemetry-sdk"
1012gem "opentelemetry-instrumentation-rails"
1113
Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ git_source(:github) { |name| "https://github.com/#{name}.git" }
55
66# Specify your gem's dependencies in sentry-ruby.gemspec
77gemspec
8+
9+ gem "ostruct" if RUBY_VERSION >= "3.4"
10+
811gem "sentry-ruby" , path : "../sentry-ruby"
912
1013gem "resque-retry" , "~> 1.8"
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ rack_version = ENV["RACK_VERSION"]
99rack_version = "3.0.0" if rack_version . nil?
1010gem "rack" , "~> #{ Gem ::Version . new ( rack_version ) } " unless rack_version == "0"
1111
12+ gem "ostruct" if RUBY_VERSION >= "3.4"
13+
1214redis_rb_version = ENV . fetch ( "REDIS_RB_VERSION" , "5.0" )
1315gem "redis" , "~> #{ redis_rb_version } "
1416
You can’t perform that action at this time.
0 commit comments