active_call 0.3.1 → 0.3.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/CHANGELOG.md +8 -0
- data/README.md +13 -1
- data/lib/active_call/version.rb +1 -1
- metadata +7 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b981d98f7ff2ee3ec05b45fe8ca269f163266e181a2e9a917f1e59a8a928a3a
|
4
|
+
data.tar.gz: 9b815145bdb4c4edb0fed09232ddcf612799e17a7459e097a7bd2054254b935c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c23f7c5fdbeceb9de14cf1cab2dee69e956a2b9894b22bca1196659095dafa27814fdb9fc799dd4a82449414ba486fd08a2440553eaf968d1ee27a23c935b30
|
7
|
+
data.tar.gz: 294f7fc2425e5f43e17d43b4eea8f3ab1a662078f309d2dbb477b7eea277bd2c7ac61561c1e13af2a681ac01975e00da978dd4987d9326365e67c0e3c1a237d1
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -2,7 +2,19 @@
|
|
2
2
|
|
3
3
|
[](https://badge.fury.io/rb/active_call)
|
4
4
|
|
5
|
-
Active Call provides a standardized way to
|
5
|
+
Active Call provides a standardized way to build service objects.
|
6
|
+
|
7
|
+
It helps you extract complex business logic from models and controllers, and keeps your code clean and organized.
|
8
|
+
|
9
|
+
Encouraging single responsibility improves readability, testability, and long-term maintainability.
|
10
|
+
|
11
|
+
<div align="center">
|
12
|
+
<a href="https://platform45.com?utm_source=github&utm_content=active_call">
|
13
|
+
<picture>
|
14
|
+
<img src="https://github.com/user-attachments/assets/19fd40df-2ce9-4f30-8120-d53f3fbf9f07">
|
15
|
+
</picture>
|
16
|
+
</a>
|
17
|
+
</div>
|
6
18
|
|
7
19
|
## Installation
|
8
20
|
|
data/lib/active_call/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_call
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kobus Joubert
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-05-
|
11
|
+
date: 2025-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|
@@ -38,7 +38,10 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '2.6'
|
41
|
-
description: Active Call provides a standardized way to
|
41
|
+
description: "\n Active Call provides a standardized way to build service objects.\n
|
42
|
+
\ It helps you extract complex business logic from models and controllers, and
|
43
|
+
keeps your code clean and organized.\n Encouraging single responsibility improves
|
44
|
+
readability, testability, and long-term maintainability.\n "
|
42
45
|
email:
|
43
46
|
- kobus@translate3d.com
|
44
47
|
executables: []
|
@@ -85,5 +88,5 @@ requirements: []
|
|
85
88
|
rubygems_version: 3.3.27
|
86
89
|
signing_key:
|
87
90
|
specification_version: 4
|
88
|
-
summary:
|
91
|
+
summary: Standardized way to build service objects
|
89
92
|
test_files: []
|