ruby-openai 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.circleci/config.yml +14 -18
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +1 -1
- data/README.md +2 -1
- data/lib/ruby/openai/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 100378df0cba6c07efb76083f5f74fac7a2c3cd0c3d94ce7eb82e81919182262
|
|
4
|
+
data.tar.gz: 14cbb7954884e1b0860b2408b92b6c366f0fffe7d665b07bc6bb9276778f1fe4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc4e80b899ccb6de28790cc8193a0ce99c95e0aa66f71b6aadcb0b39c6bd1f2081fdc64a49e01e481ae94ccc2bfdecd8029885a1dea286bfb91dd20870f9d6c5
|
|
7
|
+
data.tar.gz: 383de94193c910154b142f350d80b5ca8e45dfb434bbb79c6c5b14b6faf49fd3fed39681591a0f4d591fde6f6cf532dc8c1510f9b73d0d04e1bab7d380c7dd7c
|
data/.circleci/config.yml
CHANGED
|
@@ -1,25 +1,24 @@
|
|
|
1
1
|
version: 2.1 # Use 2.1 to enable using orbs and other features.
|
|
2
2
|
|
|
3
3
|
# Declare the orbs that we'll use in our config.
|
|
4
|
-
# read more about orbs: https://circleci.com/docs/2.0/using-orbs/
|
|
5
4
|
orbs:
|
|
6
5
|
ruby: circleci/ruby@1.0
|
|
7
6
|
|
|
8
7
|
jobs:
|
|
9
|
-
|
|
8
|
+
rubocop:
|
|
9
|
+
parallelism: 1
|
|
10
10
|
docker:
|
|
11
|
-
- image: cimg/ruby:2.7-node
|
|
11
|
+
- image: cimg/ruby:2.7-node
|
|
12
12
|
steps:
|
|
13
|
-
- checkout
|
|
14
|
-
- ruby/install-deps
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
13
|
+
- checkout
|
|
14
|
+
- ruby/install-deps
|
|
15
|
+
- run:
|
|
16
|
+
name: Run Rubocop
|
|
17
|
+
command: bundle exec rubocop
|
|
18
|
+
test:
|
|
19
19
|
parallelism: 1
|
|
20
20
|
docker:
|
|
21
|
-
- image: cimg/ruby:2.7-node
|
|
22
|
-
# A series of steps to run, some are similar to those in "build".
|
|
21
|
+
- image: cimg/ruby:2.7-node
|
|
23
22
|
steps:
|
|
24
23
|
- checkout
|
|
25
24
|
- ruby/install-deps
|
|
@@ -27,12 +26,9 @@ jobs:
|
|
|
27
26
|
name: Run tests
|
|
28
27
|
command: bundle exec rspec -fd
|
|
29
28
|
|
|
30
|
-
# We use workflows to orchestrate the jobs that we declared above.
|
|
31
29
|
workflows:
|
|
32
30
|
version: 2
|
|
33
|
-
|
|
34
|
-
jobs:
|
|
35
|
-
-
|
|
36
|
-
- test
|
|
37
|
-
requires: # Test requires that build passes for it to run.
|
|
38
|
-
- build # Finally, run the build job.
|
|
31
|
+
checks:
|
|
32
|
+
jobs:
|
|
33
|
+
- rubocop
|
|
34
|
+
- test
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.1] - 2020-09-08
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Run Rubocop on pulls using CircleCI.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Clean up CircleCI config file.
|
|
19
|
+
|
|
10
20
|
## [0.1.0] - 2020-09-06
|
|
11
21
|
|
|
12
22
|
### Added
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# Ruby::OpenAI
|
|
2
2
|
|
|
3
|
-
[](https://badge.fury.io/rb/ruby-openai)
|
|
4
4
|
[](https://github.com/alexrudall/ruby-openai/blob/master/LICENSE.txt)
|
|
5
|
+
[](https://circleci.com/gh/alexrudall/ruby-openai)
|
|
5
6
|
|
|
6
7
|
A simple Ruby wrapper for the [OpenAI GPT-3 API](https://openai.com/blog/openai-api/).
|
|
7
8
|
|
data/lib/ruby/openai/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-openai
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-09-
|
|
11
|
+
date: 2020-09-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dotenv
|