inloop-brain 0.0.7 → 0.0.8
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/.github/workflows/push.yml +34 -0
- data/Gemfile +3 -0
- data/README.md +18 -1
- data/inloop-brain.gemspec +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b41aa8aad41b500dc36f73a6e8ba189bc59fbb075d247b662701b78f8f4d39de
|
|
4
|
+
data.tar.gz: 79193e316f4d9f0c61b77181b892323f8f5f6ac03732cbb6b626d849664fde48
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 48b3b27a5155159192447412051c89184bc74a664357ebc50e32b56a75db472cdd0cde7deecf90025bca3ca075010e52da199e371b30705782f23019e2e34d53
|
|
7
|
+
data.tar.gz: ef570edf09d65eaec5f7712a29d8cddae885147863faafc1651d70a24101a33a8a1f2154a7b5b337f734e86f98bd5a27c198cc93ff9bf812f28bf4d06c9323eb
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
name: Publish RubyGem
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
inputs:
|
|
6
|
+
release_tag:
|
|
7
|
+
description: "Optional git tag to publish"
|
|
8
|
+
required: false
|
|
9
|
+
default: ""
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
publish:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
permissions:
|
|
15
|
+
contents: write
|
|
16
|
+
id-token: write
|
|
17
|
+
steps:
|
|
18
|
+
- name: Checkout repository
|
|
19
|
+
uses: actions/checkout@v4
|
|
20
|
+
with:
|
|
21
|
+
fetch-depth: 0
|
|
22
|
+
|
|
23
|
+
- name: Checkout tag
|
|
24
|
+
if: inputs.release_tag != ''
|
|
25
|
+
run: git checkout "${{ inputs.release_tag }}"
|
|
26
|
+
|
|
27
|
+
- name: Set up Ruby
|
|
28
|
+
uses: ruby/setup-ruby@v1
|
|
29
|
+
with:
|
|
30
|
+
ruby-version: "3.2"
|
|
31
|
+
bundler-cache: true
|
|
32
|
+
|
|
33
|
+
- name: Release gem via Trusted Publisher (OIDC)
|
|
34
|
+
uses: rubygems/release-gem@v1
|
data/Gemfile
ADDED
data/README.md
CHANGED
|
@@ -8,6 +8,10 @@ A command-line tool for interacting with the Inloop Brain Access Kit API.
|
|
|
8
8
|
gem install inloop-brain
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
## Requirements
|
|
12
|
+
|
|
13
|
+
- Ruby >= 2.6.0
|
|
14
|
+
|
|
11
15
|
## Usage
|
|
12
16
|
|
|
13
17
|
```
|
|
@@ -27,7 +31,20 @@ You can customize the target host and protocol:
|
|
|
27
31
|
- `INLOOP_BRAIN_HOST`: Host to connect to (default: localhost:3000)
|
|
28
32
|
- `INLOOP_BRAIN_PROTOCOL`: Protocol to use (default: http)
|
|
29
33
|
|
|
34
|
+
## Development
|
|
35
|
+
|
|
36
|
+
### Dependencies
|
|
37
|
+
|
|
38
|
+
- bundler (~> 2.0)
|
|
39
|
+
- rake (~> 13.0)
|
|
40
|
+
- rspec (~> 3.0)
|
|
41
|
+
|
|
42
|
+
## Links
|
|
43
|
+
|
|
44
|
+
- Homepage: https://inloop.studio
|
|
45
|
+
- Source Code: https://github.com/inloopstudio-team/inloop-brain
|
|
46
|
+
- Changelog: https://github.com/inloopstudio-team/inloop-brain/blob/main/CHANGELOG.md
|
|
30
47
|
|
|
31
48
|
## License
|
|
32
49
|
|
|
33
|
-
The gem is available as open source under the terms of the Nonstandard license of inloop.studio
|
|
50
|
+
The gem is available as open source under the terms of the Nonstandard license of inloop.studio
|
data/inloop-brain.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: inloop-brain
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Abhishek Parolkar
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-02-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -61,6 +61,8 @@ executables:
|
|
|
61
61
|
extensions: []
|
|
62
62
|
extra_rdoc_files: []
|
|
63
63
|
files:
|
|
64
|
+
- ".github/workflows/push.yml"
|
|
65
|
+
- Gemfile
|
|
64
66
|
- LICENSE.txt
|
|
65
67
|
- README.md
|
|
66
68
|
- Rakefile
|
|
@@ -88,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
88
90
|
- !ruby/object:Gem::Version
|
|
89
91
|
version: '0'
|
|
90
92
|
requirements: []
|
|
91
|
-
rubygems_version: 3.
|
|
93
|
+
rubygems_version: 3.4.19
|
|
92
94
|
signing_key:
|
|
93
95
|
specification_version: 4
|
|
94
96
|
summary: Command-line interface for the Inloop Brain Access Kit
|