acme-bleach 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -2
- data/lib/acme/bleach/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: cc44cd7331b6cf5e5015b55587f7a0c2fcdb118c
|
4
|
+
data.tar.gz: a1d796f92476cc7d41dff64bba0dd12c36a47e85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2bed35b92f09ca95ae45b87e3a1776714e427d4a3dc42bcc43107c8b5eaf6319ec85ea95c0ca2952d5be927f00e033108bfa87679ac9fee934b084c4d5b6cb18
|
7
|
+
data.tar.gz: 2f777e126542bf6938f123a996f291606d4266e42943ba94a407af1026163b49770d030d3861d9bd42ba81a108161e80bf1ef3b736eff0e492261c14ef296ee4
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Acme::Bleach
|
2
2
|
|
3
|
-
|
3
|
+
A silly gem that cleans your source file.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -18,7 +18,15 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
-
|
21
|
+
Just require this gem and the first time you run your script your file will be
|
22
|
+
cleaned of all the messy things like printable characters. The next time it
|
23
|
+
will still run as usual, but without any visible code.
|
24
|
+
|
25
|
+
require 'acme/bleach'
|
26
|
+
|
27
|
+
## Acknowledgements
|
28
|
+
|
29
|
+
Damian Conway for the [original Perl version](http://search.cpan.org/~dconway/Acme-Bleach-1.150/lib/Acme/Bleach.pm) from which I stole liberally.
|
22
30
|
|
23
31
|
## Contributing
|
24
32
|
|
data/lib/acme/bleach/version.rb
CHANGED