ruby_llm-schema 0.2.2 → 0.2.4

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: 21e85e6514346bb33af5e1581ded7de55c9767ebb4775f38c8db7da5d2e38273
4
- data.tar.gz: 952b4124384522506c914e0108d6d4196be446848774fd7ab4fa82b4dcb55f12
3
+ metadata.gz: 04e8a7c652e5fa46b0dff7bd8d7dacd68909e8ada67cb8545a2e71513ecd8b22
4
+ data.tar.gz: efea7f81c24d44ec25afa91164119983edf4eae98c52efabb324d35f18ac30a3
5
5
  SHA512:
6
- metadata.gz: e2f3224d8f1b51db4b24b600b080bd304079c2f93aa1cbb3bdb76fecdd0fcfd36811070c42473ea67eb2160330c1bd2297bf2fecd721cfad3ed06b7bf64957cf
7
- data.tar.gz: 3bff169e66bc57bda428c4c620d33de7c75c6b6e0398a99c3a5fc146d7429dc48619a09cd175c5b667ef8567001b701058c31bf33d4fa6f8d14ec2e02d5b33fa
6
+ metadata.gz: 52f173eda29165f70ee8ea99748ad51ec3614aea99cbe2fe04f32f3908aeca913985dc0c7655ef5dc87ae0513cf766e999f5f4b25465be7d588ca4616776e67d
7
+ data.tar.gz: 4a117fa0fffa4f4bdad9df1a55420c555a667ab962f158642329f84ce5228232d2a53041ca2fc6aa1853c317e0836d599ab78c244ae1e82fdd3951d046a0ae51
data/RELEASE.md ADDED
@@ -0,0 +1,8 @@
1
+ # Release process
2
+
3
+ 1. Bump the version in `lib/ruby_llm/schema/version.rb`
4
+ 2. Run `bundle install` to update the gemspec
5
+ 3. Commit the changes with a message like "Bump version to X.Y.Z"
6
+ 4. Run `bundle exec rake release:prepare` to create a release branch and push it to GitHub
7
+ 5. Github Actions will run the tests and publish the gem if they pass
8
+ 6. Delete the release branch: `git branch -d release/<version> && git push origin --delete release/<version>`
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RubyLlm
4
4
  class Schema
5
- VERSION = "0.2.2"
5
+ VERSION = "0.2.4"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,10 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_llm-schema
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Friis
8
+ autorequire:
8
9
  bindir: exe
9
10
  cert_chain: []
10
11
  date: 2025-11-11 00:00:00.000000000 Z
@@ -37,6 +38,7 @@ dependencies:
37
38
  - - ">="
38
39
  - !ruby/object:Gem::Version
39
40
  version: '0'
41
+ description:
40
42
  email:
41
43
  - d@friis.me
42
44
  executables: []
@@ -46,6 +48,7 @@ files:
46
48
  - ".rspec"
47
49
  - LICENSE.txt
48
50
  - README.md
51
+ - RELEASE.md
49
52
  - Rakefile
50
53
  - lib/ruby_llm/schema.rb
51
54
  - lib/ruby_llm/schema/dsl.rb
@@ -67,6 +70,7 @@ metadata:
67
70
  source_code_uri: https://github.com/danielfriis/ruby_llm-schema
68
71
  changelog_uri: https://github.com/danielfriis/ruby_llm-schema/blob/main/CHANGELOG.md
69
72
  rubygems_mfa_required: 'true'
73
+ post_install_message:
70
74
  rdoc_options: []
71
75
  require_paths:
72
76
  - lib
@@ -81,7 +85,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
85
  - !ruby/object:Gem::Version
82
86
  version: '0'
83
87
  requirements: []
84
- rubygems_version: 3.6.2
88
+ rubygems_version: 3.4.19
89
+ signing_key:
85
90
  specification_version: 4
86
91
  summary: A simple and clean Ruby DSL for creating JSON schemas.
87
92
  test_files: []