easy_talk 1.0.1 → 1.0.3
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 +6 -3
- data/CHANGELOG.md +51 -0
- data/README.md +767 -81
- data/lib/easy_talk/active_record_schema_builder.rb +292 -0
- data/lib/easy_talk/builders/base_builder.rb +16 -14
- data/lib/easy_talk/builders/object_builder.rb +10 -26
- data/lib/easy_talk/builders/string_builder.rb +1 -2
- data/lib/easy_talk/configuration.rb +27 -0
- data/lib/easy_talk/errors.rb +8 -0
- data/lib/easy_talk/errors_helper.rb +147 -0
- data/lib/easy_talk/model.rb +93 -2
- data/lib/easy_talk/property.rb +25 -1
- data/lib/easy_talk/schema_definition.rb +1 -2
- data/lib/easy_talk/version.rb +1 -1
- data/lib/easy_talk.rb +11 -3
- metadata +34 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af4342f13346bcfb1e54e16fc726f3de5f5630afe889b08a56ff7a5eda62cb18
|
4
|
+
data.tar.gz: 1552e1cf7890f7e51eb0fc05db52d6ba37328115c4c2369ada28f918ddc0848c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed08994491f42ce37c8fdefd799f03ccf7508ec4812e3f3138b431cfafccfb53138a96068698adc8db062aa1b963010bf2230b9d953622756fa211f94def39dd
|
7
|
+
data.tar.gz: 8154bf2c094dd265a6f9f8579c7ef01f3896190a05ef42476b30e927efc500f8e5aeb5680be2a672b7a9ea7f5a40bd58401136282fa6666355df6513934f186e
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,54 @@
|
|
1
|
+
## [1.0.3] - 2025-03-11
|
2
|
+
### Added
|
3
|
+
- Unified schema generation for both plain Ruby classes and ActiveRecord models (#40)
|
4
|
+
- Single code path for generating schemas regardless of model type
|
5
|
+
- More consistent behavior between different model types
|
6
|
+
- Better handling of schema properties in ActiveRecord models
|
7
|
+
|
8
|
+
### Changed
|
9
|
+
- Improved error handling throughout the library (#31)
|
10
|
+
- Added custom error types for better error classification
|
11
|
+
- More descriptive error messages for constraint violations
|
12
|
+
- Centralized validation of constraint values
|
13
|
+
- Better type checking for array properties
|
14
|
+
|
15
|
+
### Developer Experience
|
16
|
+
- Removed unnecessary dependencies
|
17
|
+
- Removed dartsass-rails from development dependencies
|
18
|
+
- Code quality improvements
|
19
|
+
- Better test coverage for error conditions
|
20
|
+
- More consistent return values in builder methods
|
21
|
+
|
22
|
+
## [1.0.2] - 2024-13-01
|
23
|
+
- Support "AdditionalProperties". see https://json-schema.org/understanding-json-schema/reference/object#additionalproperties
|
24
|
+
You can now define a schema that allows any additional properties.
|
25
|
+
```ruby
|
26
|
+
class Company
|
27
|
+
include EasyTalk::Model
|
28
|
+
|
29
|
+
define_schema do
|
30
|
+
property :name, String
|
31
|
+
additional_properties true # or false
|
32
|
+
end
|
33
|
+
end
|
34
|
+
```
|
35
|
+
|
36
|
+
You can then do:
|
37
|
+
```ruby
|
38
|
+
company = Company.new
|
39
|
+
company.name = "Acme Corp" # Defined property
|
40
|
+
company.location = "New York" # Additional property
|
41
|
+
company.employee_count = 100 # Additional property
|
42
|
+
```
|
43
|
+
|
44
|
+
company.as_json
|
45
|
+
# => {
|
46
|
+
# "name" => "Acme Corp",
|
47
|
+
# "location" => "New York",
|
48
|
+
# "employee_count" => 100
|
49
|
+
# }
|
50
|
+
```
|
51
|
+
- Fix that we don't conflate nilable properties with optional properties.
|
1
52
|
## [1.0.1] - 2024-09-01
|
2
53
|
- Fixed that property with custom type does not ignore the constraints hash https://github.com/sergiobayona/easy_talk/issues/17
|
3
54
|
## [1.0.0] - 2024-06-01
|