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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b010ec1dfb8d235662298c1b6bfa1b5ac3449abbe57ef897f28c938a2bc40578
4
- data.tar.gz: 7bd980f2aefaac9c121de941aa934f9d521082e94bef253938f9a545a0ac2eda
3
+ metadata.gz: b41aa8aad41b500dc36f73a6e8ba189bc59fbb075d247b662701b78f8f4d39de
4
+ data.tar.gz: 79193e316f4d9f0c61b77181b892323f8f5f6ac03732cbb6b626d849664fde48
5
5
  SHA512:
6
- metadata.gz: 396a1272894e4f37b8774f1bd6982e27cf51afc62929506ce06523b52b22be04f0415d880189ca9215fc443445e2d7a80f659b077efe197b8260c0d70dedb038
7
- data.tar.gz: 6927c57bcc86f9d089a73ebbfbcc7fab492d2eb28c2195253864f607c1f9c3ab3c3ac3e73b9df61cd7f3558657871f83921af88ab6d6b1c04da83ae8658b320b
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
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "inloop-brain"
5
- spec.version = "0.0.7"
5
+ spec.version = "0.0.8"
6
6
  spec.authors = ["Abhishek Parolkar"]
7
7
  spec.email = ["abhishek@inloop.studio"]
8
8
 
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.7
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-01-30 00:00:00.000000000 Z
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.5.22
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