reviser 0.0.3.3 → 0.0.3.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 +5 -3
- data/lib/reviser/exec.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: c050b261b90769b83f9320c334ae3a5c59b1a998
|
|
4
|
+
data.tar.gz: bf11ff4cdd9d95f8445422250e68958b5dd15580
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a2f712e1d054f6cba2e7eb8037eec52c6549d3b643ee63dc67a587fa193a3488e9626d6427c4a519a2da946de19cc883d5a97698bff69726599366eed715571d
|
|
7
|
+
data.tar.gz: 7102566abd27419617eb8c0b52eba1db30527e9b2d781d47610a75b11b77cc626b8351c6814b2007fa4ab825c2cfeaa7dc0d353a7e5f5db2bc2da69830ba07ae
|
data/README.md
CHANGED
|
@@ -24,6 +24,7 @@ To create a new workspace in the current directory, simply run the following com
|
|
|
24
24
|
Create res
|
|
25
25
|
Create type
|
|
26
26
|
Create config.yml
|
|
27
|
+
Create labels.yml
|
|
27
28
|
|
|
28
29
|
You see reviser has created *res* and *type/example* folders for you.
|
|
29
30
|
Now you'll have to customize *config.yml* to your own needs, and add a *type/your_project.yml*
|
|
@@ -93,7 +94,8 @@ By default, labels are generated with the name of the called method. You have th
|
|
|
93
94
|
reviser add makefile? 'Existence of makefile'
|
|
94
95
|
# method associated label
|
|
95
96
|
|
|
96
|
-
Labels are stored in
|
|
97
|
+
Labels are stored in your workspace, in a file called *labels.yml*.
|
|
98
|
+
You can also edit them by hand if you prefer.
|
|
97
99
|
|
|
98
100
|
###Extensions
|
|
99
101
|
Extensions are in fact Criteria we didn't want to include into reviser's core.
|
|
@@ -261,8 +263,8 @@ end
|
|
|
261
263
|
```
|
|
262
264
|
|
|
263
265
|
*example/main.rb*
|
|
264
|
-
|
|
265
|
-
|
|
266
|
+
|
|
267
|
+
``` ruby
|
|
266
268
|
require_relative 'my_app'
|
|
267
269
|
|
|
268
270
|
#
|
data/lib/reviser/exec.rb
CHANGED