inloop-brain 0.0.6 → 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: 242d32cd3085f8e0535ec5899eddde18b631e041e2fdee0f1acc9393a98e7d79
4
- data.tar.gz: 365f246feb8a2b0049d2de32f9bcd454bcf27b7a9f8b496fc64bf6334d2220b9
3
+ metadata.gz: b41aa8aad41b500dc36f73a6e8ba189bc59fbb075d247b662701b78f8f4d39de
4
+ data.tar.gz: 79193e316f4d9f0c61b77181b892323f8f5f6ac03732cbb6b626d849664fde48
5
5
  SHA512:
6
- metadata.gz: 37294017a3413585a55476dd332a899dedd2d58d200d583a2921d1f71a0d5fb10d71d707e99d5d3591eeeb122c47c295273bf7b681229e965124d2a32f315d85
7
- data.tar.gz: 58f8d2b73846170951ee5e66178f5ccf0f37e53c3c0081a6a615c0f5d51731d145d7994e8ef972a55327bd0666a465382c696d0f840acb346c6364854ab9108c
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.6"
5
+ spec.version = "0.0.8"
6
6
  spec.authors = ["Abhishek Parolkar"]
7
7
  spec.email = ["abhishek@inloop.studio"]
8
8
 
@@ -13,8 +13,8 @@ Gem::Specification.new do |spec|
13
13
  spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
14
14
 
15
15
  spec.metadata["homepage_uri"] = spec.homepage
16
- spec.metadata["source_code_uri"] = "https://github.com/parolkar/inloop-brain" # Replace with actual repository URL
17
- spec.metadata["changelog_uri"] = "https://github.com/parolkar/inloop-brain/blob/main/CHANGELOG.md" # Replace with actual changelog URL
16
+ spec.metadata["source_code_uri"] = "https://github.com/inloopstudio-team/inloop-brain"
17
+ spec.metadata["changelog_uri"] = "https://github.com/inloopstudio-team/inloop-brain/blob/main/CHANGELOG.md" # Replace with actual changelog URL
18
18
 
19
19
  # Specify which files should be added to the gem when it is released.
20
20
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
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.6
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: 2025-04-14 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
@@ -71,8 +73,8 @@ licenses:
71
73
  - Nonstandard
72
74
  metadata:
73
75
  homepage_uri: https://inloop.studio
74
- source_code_uri: https://github.com/parolkar/inloop-brain
75
- changelog_uri: https://github.com/parolkar/inloop-brain/blob/main/CHANGELOG.md
76
+ source_code_uri: https://github.com/inloopstudio-team/inloop-brain
77
+ changelog_uri: https://github.com/inloopstudio-team/inloop-brain/blob/main/CHANGELOG.md
76
78
  post_install_message:
77
79
  rdoc_options: []
78
80
  require_paths:
@@ -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.11
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