runify 0.1.3 → 0.1.4
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 +2 -2
- data/lib/runify/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0881f0706bd0ad69217eace2077352bf28b66766'
|
|
4
|
+
data.tar.gz: be4c4bd22a411631a8fe4b740756d6c11a9b40c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8001feb4050be8adef0c8d2d7be2918544c5d587d3bd92772c4972a6afc662734abdf2617f2f2760614726dbe86cec857822935641f832878a0f80a6110b1de3
|
|
7
|
+
data.tar.gz: ca40156d8d375a7aeff4b16f54965b3836d23cba8850a7e3d008677b5be1f30872d4bc1b1ba4f49c8b448d15e6e451c13d2ce9e8e5195b432013f59379f07e9e
|
data/README.md
CHANGED
|
@@ -53,7 +53,7 @@ A typical _run_ method will usually be implemented as such:
|
|
|
53
53
|
```ruby
|
|
54
54
|
|
|
55
55
|
def run
|
|
56
|
-
update until @stop
|
|
56
|
+
update until @stop
|
|
57
57
|
end
|
|
58
58
|
```
|
|
59
59
|
|
|
@@ -72,7 +72,7 @@ class FooService
|
|
|
72
72
|
include Runify
|
|
73
73
|
|
|
74
74
|
def run
|
|
75
|
-
update until @stop
|
|
75
|
+
update until @stop
|
|
76
76
|
end
|
|
77
77
|
|
|
78
78
|
def update
|
data/lib/runify/version.rb
CHANGED