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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: edbf723e43ad10f5c3a3e5e2a9f0e1d65ec82119
4
- data.tar.gz: 427317ad7180fead36ceafe97887f7e4176d5233
3
+ metadata.gz: '01903c121dc04785fcf481d0a1ef867bb2aa9a4b'
4
+ data.tar.gz: 2e2be42c4d8c79eaec3c6c6c34cb5e9c55f0d48c
5
5
  SHA512:
6
- metadata.gz: d57ccc1c048ebb243ecdb31fb090411d67daaced8ec6cbea88e67bf4bf6b1f1b11c273c90a76820274cd3e4498287d1373f02bc2091aa66b7f5f474725bd12c3
7
- data.tar.gz: dd4bb009829944049abd8b43b88155b26435fc17021f685314ed45caf23cd6f128a7d87e6f66f7f22fe4fa23357da403513abe04d9fad43bc42871cb4e97ddf5
6
+ metadata.gz: 148e32efc7ac0c56e6559894d53347845c7148be95890384852ce8b0600c8f700e416abccd3d02904bec9df1813369ae47ef0cef4a1177a68c18731543bb606c
7
+ data.tar.gz: 3185df5821c91250838d2eac9b4aa14f2baa679752cf5f2dffed12f6fb26204a07f6e54087a0bc299ce8584eda98392e34aacb025920e04634a1fcf6c2818917
data/README.md CHANGED
@@ -1,28 +1,22 @@
1
1
  # Chkex
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/chkex`. To experiment with that code, run `bin/console` for an interactive prompt.
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
- Add this line to your application's Gemfile:
10
-
11
- ```ruby
12
- gem 'chkex'
13
- ```
7
+ Install the binary:
14
8
 
15
- And then execute:
9
+ $ gem install chkex
16
10
 
17
- $ bundle
11
+ ## Usage
18
12
 
19
- Or install it yourself as:
13
+ Process a list of domains:
20
14
 
21
- $ gem install chkex
15
+ $ chkex /path/to/a/file.txt
22
16
 
23
- ## Usage
17
+ Get info for a single domain:
24
18
 
25
- TODO: Write usage instructions here
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/[USERNAME]/chkex.
29
+ Bug reports and pull requests are welcome on GitHub at https://github.com/aapis/chkex.
36
30
 
37
31
  ## License
38
32
 
@@ -6,7 +6,7 @@ module Chkex
6
6
 
7
7
  raise Chkex::FileNotFound unless File.exist?(file_path)
8
8
 
9
- File.read(file_path).split("\n")
9
+ File.read(file_path).split("\n").uniq
10
10
  end
11
11
  end
12
12
  end
@@ -1,3 +1,3 @@
1
1
  module Chkex
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chkex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Priebe