zod_rails 0.1.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.
data/sig/zod_rails.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module ZodRails
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
data/zod_rails.png ADDED
Binary file
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: zod_rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.4
5
+ platform: ruby
6
+ authors:
7
+ - Matt Kelly
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2026-01-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: logger
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ description: Ruby gem that introspects ActiveRecord models and generates TypeScript
28
+ files with Zod schemas for type-safe frontend validation
29
+ email:
30
+ - matthew.ryan.kelly@gmail.com
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - ".github/workflows/ci.yml"
36
+ - ".github/workflows/release.yml"
37
+ - LICENSE
38
+ - README.md
39
+ - Rakefile
40
+ - ZOD_RAILS.md
41
+ - lib/tasks/zod_rails.rake
42
+ - lib/zod_rails.rb
43
+ - lib/zod_rails/configuration.rb
44
+ - lib/zod_rails/generation/file_writer.rb
45
+ - lib/zod_rails/generation/schema_builder.rb
46
+ - lib/zod_rails/generation/typescript_emitter.rb
47
+ - lib/zod_rails/generator.rb
48
+ - lib/zod_rails/introspection/column_info.rb
49
+ - lib/zod_rails/introspection/model_inspector.rb
50
+ - lib/zod_rails/introspection/validation_info.rb
51
+ - lib/zod_rails/mapping/enum_mapper.rb
52
+ - lib/zod_rails/mapping/type_mapper.rb
53
+ - lib/zod_rails/mapping/validation_mapper.rb
54
+ - lib/zod_rails/railtie.rb
55
+ - lib/zod_rails/version.rb
56
+ - sig/zod_rails.rbs
57
+ - zod_rails.png
58
+ homepage: https://github.com/mathisto/zod_rails
59
+ licenses:
60
+ - MIT
61
+ metadata:
62
+ homepage_uri: https://github.com/mathisto/zod_rails
63
+ source_code_uri: https://github.com/mathisto/zod_rails
64
+ changelog_uri: https://github.com/mathisto/zod_rails/blob/main/CHANGELOG.md
65
+ rubygems_mfa_required: 'true'
66
+ post_install_message:
67
+ rdoc_options: []
68
+ require_paths:
69
+ - lib
70
+ required_ruby_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: 3.2.0
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: '0'
80
+ requirements: []
81
+ rubygems_version: 3.5.22
82
+ signing_key:
83
+ specification_version: 4
84
+ summary: Generate Zod schemas from ActiveRecord models
85
+ test_files: []