cqs 0.1.0 → 0.1.1
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/CHANGELOG.md +4 -0
- data/README.md +4 -2
- data/lib/cqs/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ffb10bdefb16bd4e808c0cc3cb190f7ac449f4727d6a2ab9847264d5e8c268b1
|
|
4
|
+
data.tar.gz: 1b22d99030bb59a94e0a3c6e66463c0ce6bebf83723a3823d47088d66d69b4ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4ee5fc7cc6f2e766133c6ad716b0d1654ad391e34cc805f813e1178d2da62aaae70e9026acaef8e98c8ad8b04dbfe67fd4d5205f65846b83c9511dc9e6768cf2
|
|
7
|
+
data.tar.gz: c78a56a8ec265fc21e45723c2f418c688934c1012e7287f0babe9f220dda8c767d0a969635a789cb40ac218c0c5293f3ded9495fc0513c26e26392992f36dd32
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# CQS - Command Query Separation for Ruby (and Rails)
|
|
2
2
|
|
|
3
|
+
[](https://badge.fury.io/rb/cqs)
|
|
4
|
+
|
|
3
5
|
⚠️ This gem (and readme) are still **Work In Progress** ⚠️
|
|
4
6
|
|
|
5
7
|
Unlike [CQRS](https://martinfowler.com/bliki/CQRS.html), this gem tries to give a framework that allows to separate _Commands_ from _Queries_ in your [Ruby](https://www.ruby-lang.org) programs.
|
|
@@ -138,7 +140,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
138
140
|
|
|
139
141
|
## Contributing
|
|
140
142
|
|
|
141
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
143
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/OurWeeSaas/cqs. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/OurWeeSaas/cqs?tab=coc-ov-file).
|
|
142
144
|
|
|
143
145
|
## License
|
|
144
146
|
|
|
@@ -146,4 +148,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
|
146
148
|
|
|
147
149
|
## Code of Conduct
|
|
148
150
|
|
|
149
|
-
Everyone interacting in the CQS project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
|
151
|
+
Everyone interacting in the CQS project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/OurWeeSaas/cqs?tab=coc-ov-file).
|
data/lib/cqs/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cqs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Enrique Comba Riepenhausen
|
|
@@ -85,5 +85,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
85
85
|
requirements: []
|
|
86
86
|
rubygems_version: 3.6.0
|
|
87
87
|
specification_version: 4
|
|
88
|
-
summary: Command Query
|
|
88
|
+
summary: Command Query Separation simplified for ruby (and rails)
|
|
89
89
|
test_files: []
|