Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/component_owners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
components:
instrumentation/active_storage:
- ymtdzzz
instrumentation/anthropic:
- robertlaurin
instrumentation/aws_sdk:
- jterapin
- alextwoods
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-instrumentation-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
- 'instrumentation/active_record/**'
- 'instrumentation/active_storage/**'
- 'instrumentation/active_support/**'
- 'instrumentation/anthropic/**'
- 'instrumentation/aws_sdk/**'
- 'instrumentation/aws_lambda/**'
- 'instrumentation/base/**'
Expand Down Expand Up @@ -74,6 +75,7 @@ jobs:
- active_record
- active_storage
- active_support
- anthropic
- aws_sdk
- aws_lambda
- base
Expand Down
13 changes: 8 additions & 5 deletions instrumentation/anthropic/Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@
#
# SPDX-License-Identifier: Apache-2.0

appraise 'anthropic-latest' do
gem 'anthropic'
end
# Anthropic gem requires Ruby 3.2
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.2.0')
appraise 'anthropic-latest' do
gem 'anthropic'
end

appraise 'anthropic-1.9.0' do
gem 'anthropic', '~> 1.9.0'
appraise 'anthropic-1.9.0' do
gem 'anthropic', '~> 1.9.0'
end
end
1 change: 0 additions & 1 deletion instrumentation/anthropic/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ gemspec

group :test do
gem 'appraisal', '~> 2.5'
gem 'debug'
gem 'bundler', '~> 2.4'
gem 'minitest', '~> 5.0'
gem 'opentelemetry-instrumentation-net_http', path: '../net_http'
Expand Down
1 change: 0 additions & 1 deletion instrumentation/anthropic/test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
require 'minitest/autorun'
require 'webmock/minitest'
require 'anthropic'
require 'debug/prelude'
require 'opentelemetry-instrumentation-net_http'

# global opentelemetry-sdk setup:
Expand Down
1 change: 1 addition & 0 deletions releases/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ source 'https://rubygems.org'

gem 'mutex_m' if Gem::Requirement.new('>= 3.4').satisfied_by?(Gem::Version.new(RUBY_VERSION))

gem 'anthropic'
gem 'aws_sdk'
gem 'bunny'
gem 'concurrent-ruby'
Expand Down
Loading