simple_operation 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/README.md +6 -0
- data/lib/simple_operation/version.rb +2 -2
- metadata +1 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be62a1f7a0bc484ed7677f1dc1e57e46ccdf9e98
|
|
4
|
+
data.tar.gz: f053b89a5992672f41831253df0f2a78a2a4bacf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9099903c40555203ff438dfcbd3c44ffee95b79ac0aafa1a81bef8276e7ba8ad034c25d504b198d29ae21cc07b8a049563ff1dc3e7d8ff92f26bad9d6d9939dd
|
|
7
|
+
data.tar.gz: 7a3f1fd62e05bde3c74b9fa8be2c7a19aab7547ec405c67f2df25febb1ff0162651d75e18767be71af9e5890fab31c1ea7ec95f3275211509b7ad58e514857e2
|
data/README.md
CHANGED
|
@@ -41,6 +41,12 @@ end
|
|
|
41
41
|
|
|
42
42
|
|
|
43
43
|
CreateUser.('Grzegorz', 'arnvald.to@gmail.com')
|
|
44
|
+
|
|
45
|
+
# the same effect as line above
|
|
46
|
+
CreateUser.new('Grzegorz', 'arnvald.to@gmail.com').()
|
|
47
|
+
|
|
48
|
+
# the same, but fits Rails ActiveJob's convention
|
|
49
|
+
CreateUser.new('Grzegorz', 'arnvald.to@gmail.com').perform
|
|
44
50
|
```
|
|
45
51
|
|
|
46
52
|
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
VERSION = "0.1.
|
|
1
|
+
class SimpleOperation
|
|
2
|
+
VERSION = "0.1.1"
|
|
3
3
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simple_operation
|
|
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
|
- Grzegorz Witek
|
|
@@ -81,4 +81,3 @@ specification_version: 4
|
|
|
81
81
|
summary: Create simple service object
|
|
82
82
|
test_files:
|
|
83
83
|
- test/simple_operation_test.rb
|
|
84
|
-
has_rdoc:
|