active_call 0.3.0 → 0.3.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 +6 -1
- data/lib/active_call/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d81d606b580bac8742336f42545faf106467556da7af433b8c241cf8d5fc82d8
|
4
|
+
data.tar.gz: 9d4b35592755f86e515eea53931aa81884748a625e8f925775e77dc8829532f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 305cc609ed620e2feb222b54e1eeaeff4327c20222debb96a9e25435f0568ed880e7c8821b0ce9c5844b5061fb83970633d8d4114eda28a6ffb5b5d4e6bae50c
|
7
|
+
data.tar.gz: 2cb69c2c5e36b64ab93d8fc7ecc415c341f9f6f3ac37801a8aa07827dce83e8f9458885f3fb7c2b06872da4fc6a8e05b391649e593d1d9abaa5b00632d23571d
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -46,6 +46,10 @@ Each service object must define only one public method named `call`.
|
|
46
46
|
|
47
47
|
- Use the `after_call` hook to set up anything **after response validation** passes.
|
48
48
|
|
49
|
+
- Return the service object.
|
50
|
+
|
51
|
+
If any validations fail during this flow, the service object gets returned without continuing with the subsequent steps.
|
52
|
+
|
49
53
|
### Example Service Object
|
50
54
|
|
51
55
|
Define a service object with optional validations and callbacks.
|
@@ -219,6 +223,7 @@ Now start adding your service objects in the `lib` directory and make sure they
|
|
219
223
|
|
220
224
|
- [Active Call - nCino KYC DocFox](https://rubygems.org/gems/active_call-doc_fox)
|
221
225
|
- [Active Call - Zoho Sign](https://rubygems.org/gems/active_call-zoho_sign)
|
226
|
+
- [Active Call - Zoho CRM](https://rubygems.org/gems/active_call-zoho_crm)
|
222
227
|
|
223
228
|
## Development
|
224
229
|
|
@@ -228,7 +233,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
228
233
|
|
229
234
|
## Contributing
|
230
235
|
|
231
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
236
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/activecall/active_call.
|
232
237
|
|
233
238
|
## License
|
234
239
|
|
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.1
|
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-
|
11
|
+
date: 2025-05-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|
@@ -58,15 +58,15 @@ files:
|
|
58
58
|
- lib/active_call/error.rb
|
59
59
|
- lib/active_call/version.rb
|
60
60
|
- sig/active_call.rbs
|
61
|
-
homepage: https://github.com/
|
61
|
+
homepage: https://github.com/activecall/active_call
|
62
62
|
licenses:
|
63
63
|
- MIT
|
64
64
|
metadata:
|
65
65
|
allowed_push_host: https://rubygems.org
|
66
66
|
rubygems_mfa_required: 'true'
|
67
|
-
homepage_uri: https://github.com/
|
68
|
-
source_code_uri: https://github.com/
|
69
|
-
changelog_uri: https://github.com/
|
67
|
+
homepage_uri: https://github.com/activecall/active_call
|
68
|
+
source_code_uri: https://github.com/activecall/active_call
|
69
|
+
changelog_uri: https://github.com/activecall/active_call/blob/main/CHANGELOG.md
|
70
70
|
post_install_message:
|
71
71
|
rdoc_options: []
|
72
72
|
require_paths:
|