defoker 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -1
- data/lib/defoker/version.rb +1 -1
- data/lib/defoker_core.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: 5ca77bb52cce6fe733a892bfc745ace70203d235
|
4
|
+
data.tar.gz: 2f0c6249cd8437a0a81eef2c5a578afe751dd943
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18dc9f17bf261c2dced6af3dd92f7242306d7f835981e5ff19aaca54fcf53a83bab87bda9cda1d5d74ccfe35f674221a6faba1689e7a3af06164a114f4df253a
|
7
|
+
data.tar.gz: a1d58f468978180c13769966e46607c1d535f3e3ef07aaf148288c3b739678975c459731e58e971ef73e0b3c2c3d7699afc1fcfccc766a3a0b9ccc0dfbec1b0c
|
data/README.md
CHANGED
@@ -280,7 +280,7 @@ $ ls -F | grep /
|
|
280
280
|
$ defoker init
|
281
281
|
$ cat Defokerfile
|
282
282
|
# type is required.
|
283
|
-
# you can choose type
|
283
|
+
# you can choose type from...
|
284
284
|
# [:today | :tomorrow | :yesterday | :this_month | :next_month | :previous_month | :this_year | :previous_year | :next_month]
|
285
285
|
# example
|
286
286
|
# type :this_month
|
@@ -340,6 +340,7 @@ $ ls -F | grep /
|
|
340
340
|
~~~
|
341
341
|
|
342
342
|
## History
|
343
|
+
* version 0.0.5 : Fix typo in Defokerfile Template.
|
343
344
|
* version 0.0.4 : Add init/rule command for rule-output.
|
344
345
|
* version 0.0.3 : Fix typo in gemspec.
|
345
346
|
* version 0.0.2 : Fix typo and change public interface tommorow to tomorrow.
|
data/lib/defoker/version.rb
CHANGED
data/lib/defoker_core.rb
CHANGED
@@ -9,7 +9,7 @@ module Defoker
|
|
9
9
|
DEFOKERFILE_PATH = 'Defokerfile'
|
10
10
|
DEFOKERFILE_TEMPLATE = <<-EOS
|
11
11
|
# type is required.
|
12
|
-
# you can choose type
|
12
|
+
# you can choose type from...
|
13
13
|
# [:today | :tomorrow | :yesterday | :this_month | :next_month | :previous_month | :this_year | :previous_year | :next_month]
|
14
14
|
# example
|
15
15
|
# type :this_month
|