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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/README.md +4 -2
  4. data/lib/cqs/version.rb +1 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 25ead5f863f480be7c4142451b814639bdc679bb4b12d0403299405d61d43117
4
- data.tar.gz: e523eaf75e002bf13514258722a6d9b69929792edb5cfd06bb170c1875a46f2c
3
+ metadata.gz: ffb10bdefb16bd4e808c0cc3cb190f7ac449f4727d6a2ab9847264d5e8c268b1
4
+ data.tar.gz: 1b22d99030bb59a94e0a3c6e66463c0ce6bebf83723a3823d47088d66d69b4ae
5
5
  SHA512:
6
- metadata.gz: 6eb876b0f9a852087a7f02aef4d4cacff33fb42b2c28844c48dbbb6fffc2f3ba9636c27564fb94857db295438aec5e6fb91bb7640f3209aaddc4e1f2f63ba79c
7
- data.tar.gz: 85ce856f0e5ccd0bf8c62398b30070e08ec97f9f33dcbd30945b0e260f9b32345530fd59aead7b4d6a6afc8c2299f2b40c0a491dbe4d007b3c5728ef888d3578
6
+ metadata.gz: 4ee5fc7cc6f2e766133c6ad716b0d1654ad391e34cc805f813e1178d2da62aaae70e9026acaef8e98c8ad8b04dbfe67fd4d5205f65846b83c9511dc9e6768cf2
7
+ data.tar.gz: c78a56a8ec265fc21e45723c2f418c688934c1012e7287f0babe9f220dda8c767d0a969635a789cb40ac218c0c5293f3ded9495fc0513c26e26392992f36dd32
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2024-12-22
4
+
5
+ - Changes gem description
6
+
3
7
  ## [0.1.0] - 2024-11-29
4
8
 
5
9
  - Initial release
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # CQS - Command Query Separation for Ruby (and Rails)
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/cqs.svg)](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/[USERNAME]/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/[USERNAME]/cqs/blob/main/CODE_OF_CONDUCT.md).
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/[USERNAME]/cqs/blob/main/CODE_OF_CONDUCT.md).
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cqs
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
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.0
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 Segregation simplified for ruby (and rails)
88
+ summary: Command Query Separation simplified for ruby (and rails)
89
89
  test_files: []