Skip to content
Open
Show file tree
Hide file tree
Changes from 5 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
1 change: 1 addition & 0 deletions .github/workflows/ci-instrumentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
- active_storage
- active_support
- all
- 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: 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