Skip to content

Commit 0df38cf

Browse files
committed
Fixed: Missing base64 dependency for Anthropic
1 parent 89c472b commit 0df38cf

4 files changed

Lines changed: 6 additions & 3 deletions

File tree

Appraisals

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ OPTIONAL_GEMS = {
1313
"latest" => {constraint: ">= 0.34", deps: {"base64" => nil, "cgi" => nil}}
1414
},
1515
"anthropic" => {
16-
"1.11" => {constraint: "~> 1.11.0", deps: {"cgi" => nil}},
17-
"1.12" => {constraint: "~> 1.12.0", deps: {"cgi" => nil}},
18-
"latest" => {constraint: ">= 1.11", deps: {"cgi" => nil}}
16+
"1.11" => {constraint: "~> 1.11.0", deps: {"base64" => nil, "cgi" => nil}},
17+
"1.12" => {constraint: "~> 1.12.0", deps: {"base64" => nil, "cgi" => nil}},
18+
"latest" => {constraint: ">= 1.11", deps: {"base64" => nil, "cgi" => nil}}
1919
},
2020
"ruby-openai" => {
2121
"7.0" => {constraint: "~> 7.0", deps: {}},

gemfiles/anthropic.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ gem "vcr", "~> 6.0"
1515
gem "webmock", "~> 3.0"
1616
gem "yard", "~> 0.9"
1717
gem "anthropic", ">= 1.11"
18+
gem "base64"
1819
gem "cgi"
1920

2021
gemspec path: "../"

gemfiles/anthropic_1_11.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ gem "vcr", "~> 6.0"
1515
gem "webmock", "~> 3.0"
1616
gem "yard", "~> 0.9"
1717
gem "anthropic", "~> 1.11.0"
18+
gem "base64"
1819
gem "cgi"
1920

2021
gemspec path: "../"

gemfiles/anthropic_1_12.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ gem "vcr", "~> 6.0"
1515
gem "webmock", "~> 3.0"
1616
gem "yard", "~> 0.9"
1717
gem "anthropic", "~> 1.12.0"
18+
gem "base64"
1819
gem "cgi"
1920

2021
gemspec path: "../"

0 commit comments

Comments
 (0)