openai_101 0.0.2 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.builders/generators/01-bootstrap.rb +5 -4
- data/.releaserc.json +1 -1
- data/.rubocop.yml +6 -4
- data/.tool-versions +1 -1
- data/CHANGELOG.md +8 -1
- data/README.md +3 -3
- data/lib/openai_101/version.rb +1 -1
- data/lib/openai_101.rb +0 -2
- data/package-lock.json +2555 -721
- data/package.json +2 -2
- metadata +7 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bf7d69814faceeb10dc8529eab3e644ea1c8cc7814fa9c760b88d332d9f56a02
|
4
|
+
data.tar.gz: ceb5b93d49096126df3875dd541bc3d40081bdca051770ceb132ac9995f3a4a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8505915867b4bb48f980c0a2a5c343da0d0c07aac17e97c2e29e9d6a96c00e252dad64d43015c9c54ba40c347d2db863fc0d5f3b35cb534793ea320f0f5b6f88
|
7
|
+
data.tar.gz: c38ca4102babd07dbce6765180734e0e4aff4a58b1fd80e8a41e58570ca55633cab109491755135e7a993a98aa8e5ef65a8b833f8a1a98f7229de066db6969c8
|
@@ -9,22 +9,23 @@ KManager.action :bootstrap do
|
|
9
9
|
on_action: :queue # %i[queue execute]
|
10
10
|
)
|
11
11
|
.data(
|
12
|
-
ruby_version: '3.
|
12
|
+
ruby_version: '3.0',
|
13
13
|
application: application_name,
|
14
|
-
application_description: 'OpenAI 101
|
14
|
+
application_description: 'OpenAI 101 working through the API endpoints',
|
15
15
|
application_lib_path: application_name.to_s, # need a specialized handlebars helper to turn this into a path, e.g ps-common => ps/common
|
16
16
|
application_lib_namespace: 'Openai101',
|
17
17
|
namespaces: ['Openai101'],
|
18
18
|
author: 'David Cruwys',
|
19
19
|
author_email: 'david@ideasmen.com.au',
|
20
20
|
initial_semver: '0.0.1',
|
21
|
-
main_story: 'As a
|
21
|
+
main_story: 'As a Developer, I want to understand openai/chatgpt APIs, so that I can build AI applications effectively',
|
22
22
|
copyright_date: '2024',
|
23
23
|
website: 'http://appydave.com/gems/openai_101'
|
24
24
|
)
|
25
25
|
.github(
|
26
26
|
active: false,
|
27
|
-
repo_name: application_name
|
27
|
+
repo_name: application_name,
|
28
|
+
organization: 'appydave'
|
28
29
|
) do
|
29
30
|
create_repository
|
30
31
|
# delete_repository
|
data/.releaserc.json
CHANGED
data/.rubocop.yml
CHANGED
@@ -7,7 +7,7 @@ require:
|
|
7
7
|
- rubocop-rake
|
8
8
|
|
9
9
|
AllCops:
|
10
|
-
TargetRubyVersion: 3.
|
10
|
+
TargetRubyVersion: 3.0
|
11
11
|
DisplayCopNames: true
|
12
12
|
ExtraDetails: true
|
13
13
|
NewCops: enable
|
@@ -95,9 +95,11 @@ Layout/SpaceBeforeComma:
|
|
95
95
|
RSpec/NestedGroups:
|
96
96
|
Max: 5
|
97
97
|
|
98
|
-
RSpec/
|
99
|
-
|
100
|
-
|
98
|
+
RSpec/SpecFilePathFormat:
|
99
|
+
Enabled: true
|
100
|
+
|
101
|
+
RSpec/SpecFilePathSuffix:
|
102
|
+
Enabled: true
|
101
103
|
|
102
104
|
RSpec/NamedSubject:
|
103
105
|
Exclude:
|
data/.tool-versions
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby 3.
|
1
|
+
ruby 3.3.3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
|
+
# [0.1.0](https://github.com/appydave/openai_101/compare/v0.0.1...v0.1.0) (2024-06-19)
|
2
|
+
|
3
|
+
|
4
|
+
### Features
|
5
|
+
|
6
|
+
* moved repo to appydave organization ([3b01048](https://github.com/appydave/openai_101/commit/3b01048e2e0f381a6ab5bc0a7cfb4cedd83da88f))
|
7
|
+
|
1
8
|
## [Unreleased]
|
2
9
|
|
3
|
-
## [0.1.0] - 2024-
|
10
|
+
## [0.1.0] - 2024-06-19
|
4
11
|
|
5
12
|
- Initial release
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Openai 101
|
2
2
|
|
3
|
-
> OpenAI 101
|
3
|
+
> OpenAI 101 working through the API endpoints
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -26,7 +26,7 @@ gem install openai_101
|
|
26
26
|
|
27
27
|
### Main Story
|
28
28
|
|
29
|
-
As a
|
29
|
+
As a Developer, I want to understand openai/chatgpt APIs, so that I can build AI applications effectively
|
30
30
|
|
31
31
|
See all [stories](./STORIES.md)
|
32
32
|
|
@@ -42,7 +42,7 @@ See all [usage examples](./USAGE.md)
|
|
42
42
|
Checkout the repo
|
43
43
|
|
44
44
|
```bash
|
45
|
-
git clone https://github.com/
|
45
|
+
git clone https://github.com/appydave/openai_101
|
46
46
|
```
|
47
47
|
|
48
48
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests.
|
data/lib/openai_101/version.rb
CHANGED