chkex 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 +9 -15
- data/lib/chkex/file_handler.rb +1 -1
- data/lib/chkex/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: '01903c121dc04785fcf481d0a1ef867bb2aa9a4b'
|
|
4
|
+
data.tar.gz: 2e2be42c4d8c79eaec3c6c6c34cb5e9c55f0d48c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 148e32efc7ac0c56e6559894d53347845c7148be95890384852ce8b0600c8f700e416abccd3d02904bec9df1813369ae47ef0cef4a1177a68c18731543bb606c
|
|
7
|
+
data.tar.gz: 3185df5821c91250838d2eac9b4aa14f2baa679752cf5f2dffed12f6fb26204a07f6e54087a0bc299ce8584eda98392e34aacb025920e04634a1fcf6c2818917
|
data/README.md
CHANGED
|
@@ -1,28 +1,22 @@
|
|
|
1
1
|
# Chkex
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
3
|
+
A really simple gem to check domain expiration dates. One of the tools in our arsenal @starburstcreative.
|
|
6
4
|
|
|
7
5
|
## Installation
|
|
8
6
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
```ruby
|
|
12
|
-
gem 'chkex'
|
|
13
|
-
```
|
|
7
|
+
Install the binary:
|
|
14
8
|
|
|
15
|
-
|
|
9
|
+
$ gem install chkex
|
|
16
10
|
|
|
17
|
-
|
|
11
|
+
## Usage
|
|
18
12
|
|
|
19
|
-
|
|
13
|
+
Process a list of domains:
|
|
20
14
|
|
|
21
|
-
$
|
|
15
|
+
$ chkex /path/to/a/file.txt
|
|
22
16
|
|
|
23
|
-
|
|
17
|
+
Get info for a single domain:
|
|
24
18
|
|
|
25
|
-
|
|
19
|
+
$ chkex google.com
|
|
26
20
|
|
|
27
21
|
## Development
|
|
28
22
|
|
|
@@ -32,7 +26,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
32
26
|
|
|
33
27
|
## Contributing
|
|
34
28
|
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
29
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/aapis/chkex.
|
|
36
30
|
|
|
37
31
|
## License
|
|
38
32
|
|
data/lib/chkex/file_handler.rb
CHANGED
data/lib/chkex/version.rb
CHANGED