soka-rails 0.0.4 → 0.0.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 +1 -1
- data/CHANGELOG.md +11 -0
- data/lib/soka/rails/version.rb +1 -1
- metadata +9 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 727e9c42b3117990a0eb0237b5a12e9db9eafe6ad5cb3b2e6992a5de89920153
|
4
|
+
data.tar.gz: 48072884855827edbad3bba576d324d6d79dd888ba347d8b67af5977341acbdc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32e97666a15b7e655a9a208c439b55c287a8701fac1a03282553aa0b14d4d81a28e7f564509069cce9d5142affeae1fa13dcf836699a80e4bd8bc455d1e220bb
|
7
|
+
data.tar.gz: 31d91665ae6af181d9db5a33cecb18de6561f31d259095a89d10ba01e23d0aa87346094d58d4b47fbebc6ec5539200e1e26e323fa92eb3835c552abd613a0070
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,17 @@ 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/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [0.0.5] - 2025-08-05
|
9
|
+
|
10
|
+
### Added
|
11
|
+
- Support for Ruby 3.1, 3.2, and 3.3
|
12
|
+
|
13
|
+
### Changed
|
14
|
+
- Updated CI/CD workflows to test all supported Ruby versions
|
15
|
+
- Adjusted RuboCop target version to minimum supported version (3.1)
|
16
|
+
- Updated gemspec minimum Ruby version requirement
|
17
|
+
- Upgraded soka dependency to 0.0.5
|
18
|
+
|
8
19
|
## [0.0.4] - 2025-08-04
|
9
20
|
|
10
21
|
### Added
|
data/lib/soka/rails/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: soka-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- jiunjiun
|
8
|
+
autorequire:
|
8
9
|
bindir: bin
|
9
10
|
cert_chain: []
|
10
|
-
date:
|
11
|
+
date: 2025-08-05 00:00:00.000000000 Z
|
11
12
|
dependencies:
|
12
13
|
- !ruby/object:Gem::Dependency
|
13
14
|
name: rails
|
@@ -35,14 +36,14 @@ dependencies:
|
|
35
36
|
requirements:
|
36
37
|
- - "~>"
|
37
38
|
- !ruby/object:Gem::Version
|
38
|
-
version: 0.0.
|
39
|
+
version: 0.0.5
|
39
40
|
type: :runtime
|
40
41
|
prerelease: false
|
41
42
|
version_requirements: !ruby/object:Gem::Requirement
|
42
43
|
requirements:
|
43
44
|
- - "~>"
|
44
45
|
- !ruby/object:Gem::Version
|
45
|
-
version: 0.0.
|
46
|
+
version: 0.0.5
|
46
47
|
- !ruby/object:Gem::Dependency
|
47
48
|
name: zeitwerk
|
48
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -104,6 +105,7 @@ metadata:
|
|
104
105
|
source_code_uri: https://github.com/jiunjiun/soka-rails
|
105
106
|
changelog_uri: https://github.com/jiunjiun/soka-rails/blob/main/CHANGELOG.md
|
106
107
|
rubygems_mfa_required: 'true'
|
108
|
+
post_install_message:
|
107
109
|
rdoc_options: []
|
108
110
|
require_paths:
|
109
111
|
- lib
|
@@ -111,14 +113,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
111
113
|
requirements:
|
112
114
|
- - ">="
|
113
115
|
- !ruby/object:Gem::Version
|
114
|
-
version: '3.
|
116
|
+
version: '3.1'
|
115
117
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
116
118
|
requirements:
|
117
119
|
- - ">="
|
118
120
|
- !ruby/object:Gem::Version
|
119
121
|
version: '0'
|
120
122
|
requirements: []
|
121
|
-
rubygems_version: 3.
|
123
|
+
rubygems_version: 3.3.27
|
124
|
+
signing_key:
|
122
125
|
specification_version: 4
|
123
126
|
summary: Rails integration for Soka AI Agent Framework
|
124
127
|
test_files: []
|