iprog_chatgpt 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/CHANGELOG.md +6 -4
- data/lib/iprog_chatgpt/version.rb +1 -1
- data/lib/iprog_chatgpt.rb +0 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c64705e861cc8899fd637bada7b19f388ead9595e49952721bdc213508840282
|
4
|
+
data.tar.gz: 2a4f8caa509e657f906b9a37bba292f015afd8da0a193dbb780a1ce98bc11a62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 336cfebbd37360f0789723580424b68b729ce8978d6e52c2b9540e154965afc50d5212ed5e08a0072514eec1b8428f55888f1a5620e40f15ad5253eb10cc2be3
|
7
|
+
data.tar.gz: 83d3aaf03c583ed15dcb3d26c3ad2cc3671348c5b38bce3d45af7344bf115337656dbe23d98be5b04713b7431a2622fc7d885d9e9aed851c62f68e737ed63cb6
|
data/CHANGELOG.md
CHANGED
@@ -5,12 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
|
+
|
9
|
+
## [0.1.1] - 2024-09-16
|
10
|
+
### Changed
|
11
|
+
- Remove dotenv include
|
12
|
+
|
13
|
+
## [0.1.0] - 2024-09-15
|
8
14
|
### Added
|
9
15
|
- Initial setup of gem structure.
|
10
16
|
- Basic ChatGPT API interaction support.
|
11
17
|
- RSpec tests for basic functionality.
|
12
18
|
- MIT License, Code of Conduct, and Changelog.
|
13
|
-
|
14
|
-
## [0.1.0] - 2024-09-15
|
15
|
-
### Added
|
16
|
-
- Initial release of the `iprog_chatgpt` gem with support for basic ChatGPT API interaction.
|
data/lib/iprog_chatgpt.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: iprog_chatgpt
|
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
|
- Jayson Presto
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -90,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
90
90
|
- !ruby/object:Gem::Version
|
91
91
|
version: '0'
|
92
92
|
requirements: []
|
93
|
-
rubygems_version: 3.5.
|
93
|
+
rubygems_version: 3.5.11
|
94
94
|
signing_key:
|
95
95
|
specification_version: 4
|
96
96
|
summary: A Ruby gem for interacting with OpenAI's ChatGPT API.
|