commonsense 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 +1 -1
- data/exe/commonsense +2 -0
- data/lib/commonsense/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: ad6558a54e57bd14413dc62bc3dd97625f6c7432
|
|
4
|
+
data.tar.gz: 5aad627b19f1b2038413e5a74dbc87d17a43ae90
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 247da0f12a74311fee837001bec99733b39c5c5835513a5469995458237b299135dafa279dedcdb8b2b9d1dfb8fd8146da44e6105e000deda3eedf8910284c33
|
|
7
|
+
data.tar.gz: a8de0108008c7c44d97dd6f961748b623dea368ca058a44adf0ffbca76816ddaef2ba69c2f68faa0b21b92c4c217625411fe2b68c04fa9b8077b073652364b46
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Commonsense
|
|
2
2
|
|
|
3
|
-
Validate text against the [commonsense specification](https://github.com/beneills/commonsense-spec
|
|
3
|
+
Validate text against the [commonsense specification](https://github.com/beneills/commonsense-spec) to resist authorship analysis. See the spec for more information.
|
|
4
4
|
|
|
5
5
|
This gem contains a Ruby library and single executable.
|
|
6
6
|
|
data/exe/commonsense
CHANGED
|
@@ -25,6 +25,8 @@ def main
|
|
|
25
25
|
puts
|
|
26
26
|
puts 'This utility checks each file against the commonsense text specification'
|
|
27
27
|
puts 'returning good exit status only if all inputs are valid.'
|
|
28
|
+
puts
|
|
29
|
+
puts 'See https://github.com/beneills/commonsense-spec for more information.'
|
|
28
30
|
exit 0
|
|
29
31
|
else
|
|
30
32
|
results = ARGV.map do |filename|
|
data/lib/commonsense/version.rb
CHANGED