resquirrel 0.1.2 → 0.1.5
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/.rubocop.yml +5 -0
- data/README.md +7 -5
- data/{lib/main.rb → exe/resquirrel} +2 -1
- data/lib/resquirrel/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 231c1d6fb753b78c3998309549bd06276fd5a9768ebeac4300d75a0e5f2497c1
|
|
4
|
+
data.tar.gz: ca016974e8327e4e0294b89da4f837102d15f51fee19543e256a0af77ce9fdde
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1c914d844624dc48c97c0df0edbdbe383d3b04d3e9d5f06707aafddcfe00ed6ec584457ca0cfd1448ca21af15b3628f3190d4dd1ebb9340b230437222513db49
|
|
7
|
+
data.tar.gz: 991150935129f67c224bf3edb1d5f1990d68003a1fb3978dc7b058a8d3fa5596992b79f3364393eec59768d9d1f052ac3e31f2815030e8a481e3f7126f2ae4a8
|
data/.rubocop.yml
CHANGED
data/README.md
CHANGED
|
@@ -10,7 +10,7 @@ RubyGems that automatically create release notes for Notion DB using Open AI API
|
|
|
10
10
|
Add this line to your application's Gemfile:
|
|
11
11
|
|
|
12
12
|
```Gemfile
|
|
13
|
-
gem '
|
|
13
|
+
gem 'resquirrel'
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
And then execute:
|
|
@@ -85,8 +85,9 @@ jobs:
|
|
|
85
85
|
```
|
|
86
86
|
|
|
87
87
|
```rb
|
|
88
|
-
resquirrel
|
|
89
|
-
|
|
88
|
+
require 'resquirrel'
|
|
89
|
+
|
|
90
|
+
Resquirrel.generate_release_note
|
|
90
91
|
```
|
|
91
92
|
それぞれのenvは必須です。
|
|
92
93
|
|
|
@@ -151,8 +152,9 @@ jobs:
|
|
|
151
152
|
```
|
|
152
153
|
|
|
153
154
|
```rb
|
|
154
|
-
resquirrel
|
|
155
|
-
|
|
155
|
+
require 'resquirrel'
|
|
156
|
+
|
|
157
|
+
Resquirrel.generate_release_note
|
|
156
158
|
```
|
|
157
159
|
Each env is required.
|
|
158
160
|
|
data/lib/resquirrel/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: resquirrel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yuki-snow1823
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-05-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description:
|
|
13
|
+
description: RubyGems that automatically create release notes for Notion DB using
|
|
14
|
+
Open AI API when PR merge.
|
|
14
15
|
email:
|
|
15
16
|
- y.horikoshi.pg@gmail.com
|
|
16
17
|
executables: []
|
|
@@ -24,9 +25,9 @@ files:
|
|
|
24
25
|
- LICENSE.txt
|
|
25
26
|
- README.md
|
|
26
27
|
- Rakefile
|
|
28
|
+
- exe/resquirrel
|
|
27
29
|
- lib/client/notion.rb
|
|
28
30
|
- lib/client/openai.rb
|
|
29
|
-
- lib/main.rb
|
|
30
31
|
- lib/resquirrel.rb
|
|
31
32
|
- lib/resquirrel/version.rb
|
|
32
33
|
homepage: https://github.com/yuki-snow1823/resquirrel
|
|
@@ -54,6 +55,5 @@ requirements: []
|
|
|
54
55
|
rubygems_version: 3.5.3
|
|
55
56
|
signing_key:
|
|
56
57
|
specification_version: 4
|
|
57
|
-
summary:
|
|
58
|
-
AI API.
|
|
58
|
+
summary: The library to support the creation of release notes
|
|
59
59
|
test_files: []
|