File tree Expand file tree Collapse file tree 5 files changed +13
-32
lines changed Expand file tree Collapse file tree 5 files changed +13
-32
lines changed Original file line number Diff line number Diff line change 22 remote: .
33 specs:
44 google_palm_api (0.1.3 )
5- faraday (>= 1.0.0 )
6- faraday_middleware (>= 1.0.0 )
5+ faraday (>= 2.0.1 , < 3.0 )
76
87GEM
98 remote: https://rubygems.org/
1211 byebug (11.1.3 )
1312 coderay (1.1.3 )
1413 diff-lcs (1.5.0 )
15- faraday (1.10.3 )
16- faraday-em_http (~> 1.0 )
17- faraday-em_synchrony (~> 1.0 )
18- faraday-excon (~> 1.1 )
19- faraday-httpclient (~> 1.0 )
20- faraday-multipart (~> 1.0 )
21- faraday-net_http (~> 1.0 )
22- faraday-net_http_persistent (~> 1.0 )
23- faraday-patron (~> 1.0 )
24- faraday-rack (~> 1.0 )
25- faraday-retry (~> 1.0 )
14+ faraday (2.7.10 )
15+ faraday-net_http (>= 2.0 , < 3.1 )
2616 ruby2_keywords (>= 0.0.4 )
27- faraday-em_http (1.0.0 )
28- faraday-em_synchrony (1.0.0 )
29- faraday-excon (1.1.0 )
30- faraday-httpclient (1.0.1 )
31- faraday-multipart (1.0.4 )
32- multipart-post (~> 2 )
33- faraday-net_http (1.0.1 )
34- faraday-net_http_persistent (1.2.0 )
35- faraday-patron (1.0.0 )
36- faraday-rack (1.0.0 )
37- faraday-retry (1.0.3 )
38- faraday_middleware (1.2.0 )
39- faraday (~> 1.0 )
17+ faraday-net_http (3.0.2 )
4018 json (2.6.3 )
4119 language_server-protocol (3.17.0.3 )
4220 lint_roller (1.0.0 )
4321 method_source (1.0.0 )
44- multipart-post (2.3.0 )
4522 parallel (1.23.0 )
4623 parser (3.2.2.1 )
4724 ast (~> 2.4.1 )
10077
10178PLATFORMS
10279 x86_64-darwin-19
80+ x86_64-darwin-21
10381 x86_64-linux
10482
10583DEPENDENCIES
Original file line number Diff line number Diff line change 22
33Ruby API client for the Google PaLM APIs.
44
5- ![ Tests status] ( https://github.com/andreibondarev/google_palm_api/actions/workflows/ci.yml/badge.svg ) [ ![ Gem Version] ( https://badge.fury.io/rb/google_palm_api.svg )] ( https://badge.fury.io/rb/google_palm_api )
5+ Part of the [ Langchain.rb] ( https://github.com/andreibondarev/langchainrb ) stack.
6+
7+ ![ Tests status] ( https://github.com/andreibondarev/google_palm_api/actions/workflows/ci.yml/badge.svg )
8+ [ ![ Gem Version] ( https://badge.fury.io/rb/google_palm_api.svg )] ( https://badge.fury.io/rb/google_palm_api )
9+ [ ![ Docs] ( http://img.shields.io/badge/yard-docs-blue.svg )] ( http://rubydoc.info/gems/google_palm_api )
10+ [ ![ License] ( https://img.shields.io/badge/license-MIT-green.svg )] ( https://github.com/andreibondarev/google_palm_api/blob/main/LICENSE.txt )
11+ [ ![ ] ( https://dcbadge.vercel.app/api/server/WDARp7J2n8?compact=true&style=flat )] ( https://discord.gg/WDARp7J2n8 )
612
713
814## Installation
Original file line number Diff line number Diff line change @@ -31,6 +31,5 @@ Gem::Specification.new do |spec|
3131
3232 spec . add_development_dependency "pry-byebug" , "~> 3.9"
3333
34- spec . add_dependency "faraday" , ">= 1.0.0"
35- spec . add_dependency "faraday_middleware" , ">= 1.0.0"
34+ spec . add_dependency "faraday" , ">= 2.0.1" , "< 3.0"
3635end
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33require "faraday"
4- require "faraday_middleware"
54
65module GooglePalmApi
76 class Client
Original file line number Diff line number Diff line change 22
33require "google_palm_api"
44require "faraday"
5- require "faraday_middleware"
65require "ostruct"
76require "json"
87
You can’t perform that action at this time.
0 commit comments