Skip to content

Commit 2cced67

Browse files
Merge branch 'main' into version-0.1.3
2 parents f3839c0 + 0fc99c2 commit 2cced67

File tree

5 files changed

+13
-32
lines changed

5 files changed

+13
-32
lines changed

Gemfile.lock

Lines changed: 5 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ PATH
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

87
GEM
98
remote: https://rubygems.org/
@@ -12,36 +11,14 @@ GEM
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)
@@ -100,6 +77,7 @@ GEM
10077

10178
PLATFORMS
10279
x86_64-darwin-19
80+
x86_64-darwin-21
10381
x86_64-linux
10482

10583
DEPENDENCIES

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
Ruby 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

google_palm_api.gemspec

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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"
3635
end

lib/google_palm_api/client.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# frozen_string_literal: true
22

33
require "faraday"
4-
require "faraday_middleware"
54

65
module GooglePalmApi
76
class Client

spec/spec_helper.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
require "google_palm_api"
44
require "faraday"
5-
require "faraday_middleware"
65
require "ostruct"
76
require "json"
87

0 commit comments

Comments
 (0)