mini_service 0.0.0 → 0.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4e819cb6201d5918ccdc7905773d5be0702ffedd68be9f124055213478af8987
4
- data.tar.gz: d3bd75d54c0e92e3c7c4fa2a41cdcb60228106f627f21a20e5ffa9e8e3d8b11f
3
+ metadata.gz: 521aa07f48ec8e042961b602d497fa8cdc566d86f4260d20be9d6740dcee96cf
4
+ data.tar.gz: 72b008ade7364935850e3d53a14ca828e096848542f769d2757818aa2d5411e7
5
5
  SHA512:
6
- metadata.gz: 43459572a9839d4ea529b76cb109f665e70b331ef77acf66f51e7040b5fd8de7adfdacad7ddcb338b1a9e0bb7af2302622079f3130792b4e8da6815a44fc2a01
7
- data.tar.gz: 7a503cb92018de678a4aba44f6a04574ed54081e42d12fcd9c4ede1100e508caaad19ef1e929a4839578ef616bc73a7765e8422aa9837da9a29239fe191a9184
6
+ metadata.gz: 3b6846fa288706326ff07f4e82e7b51dc645abe70f91bf7f4761f6535f22cd7ae5165b87aada11be9672127aed719dfdbd58074dc8408f7a62439a789dc596d3
7
+ data.tar.gz: 57627ad9fb5d33b57b49de5263f6386876e54cc6507d1d5c52cdfb5c5ea0d34b685f8a5386021921c70d13521b00d8decacbf882da14865cf7e07e7e8e1d1b6d
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # MiniService
2
2
  MiniServices are a prototype from which to build single-functionality
3
- minimalistic services, aiming to
3
+ minimalistic services, aiming to
4
4
  help you correctly modularize and isolate your processes making them easier to
5
5
  mantain and less prone to
6
6
  errors.
@@ -9,8 +9,8 @@ errors.
9
9
  Define them like this:
10
10
  ```ruby
11
11
  class ExampleService < MiniService::Base
12
- mini_requires %i[a1 a2]
13
- mini_allows %i[a3 a4]
12
+ mini_reqs %i[a1 a2]
13
+ mini_lets %i[a3 a4]
14
14
 
15
15
  private
16
16
 
@@ -24,9 +24,10 @@ Call them like this:
24
24
  ```ruby
25
25
  ExampleService.call(a1: 1, a2: 2) # or
26
26
  ExampleService.call(a1: 1, a2: 2, a3: 3, a4: 4)
27
- # Instance variables will be available for each key-value pair
28
- # so you can use @a1 inside perform if a1 is given in the args hash
27
+
29
28
  ```
29
+ Instance variables will be available for each key-value pair
30
+ so you can use `@a1` inside perform if `a1` is given in the `args` hash
30
31
 
31
32
  Adding `mini_reqs` will raise an error if you miss `reqd` arguments
32
33
 
@@ -39,7 +40,7 @@ You can create your own services by inheriting from `MiniService::Base` class.
39
40
 
40
41
  Your `MiniServices` should be used via their `call` method, providing arguments
41
42
  in a hash, like
42
- `ExampleService.call(p1: v1, p2: v2)` or `ExampleService.call(args)` with args
43
+ `ExampleService.call(a1: 1, a2: 2)` or `ExampleService.call(args)` with args
43
44
  built elsewhere.
44
45
 
45
46
  This will automatically initialize your service with one `@instance_variable`
@@ -1,3 +1,3 @@
1
1
  module MiniService
2
- VERSION = '0.0.0'.freeze
2
+ VERSION = '0.0.1'.freeze
3
3
  end
data/mini_service.gemspec CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Rodrgo Andrés Contreras Vilina']
9
9
  spec.email = ['roanvilina@gmail.com']
10
10
 
11
- spec.summary = 'Provides a simple service prototype class and its generator.'
11
+ spec.summary = 'Provides a simple service prototype class.'
12
12
  spec.homepage = 'https://github.com/roanvilina/mini_service'
13
13
  spec.license = 'MIT'
14
14
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mini_service
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rodrgo Andrés Contreras Vilina
@@ -126,5 +126,5 @@ requirements: []
126
126
  rubygems_version: 3.0.1
127
127
  signing_key:
128
128
  specification_version: 4
129
- summary: Provides a simple service prototype class and its generator.
129
+ summary: Provides a simple service prototype class.
130
130
  test_files: []