Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
solnic committed Jan 16, 2025
1 parent 57e37c9 commit 97056de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions sentry-opentelemetry/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ git_source(:github) { |name| "https://github.com/#{name}.git" }
# Specify your gem's dependencies in sentry-ruby.gemspec
gemspec

gem "ostruct" if RUBY_VERSION >= "3.4"

gem "opentelemetry-sdk"
gem "opentelemetry-instrumentation-rails"

Expand Down
2 changes: 1 addition & 1 deletion sentry-ruby/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ 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"
gem "ostruct" if RUBY_VERSION >= "3.4"

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

0 comments on commit 97056de

Please sign in to comment.