check_everything 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/check_everything.rb +6 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 82fa8dd6c3b508a5688dae68ca66bea3db636850
4
- data.tar.gz: 73e25bf58da9f952c7f0bd98acfd76f7a538348b
3
+ metadata.gz: 5dc93a4a84271110606f26497e609d0d43aa61c8
4
+ data.tar.gz: f9383432ceced9b8384e049e662e13428fe6ef64
5
5
  SHA512:
6
- metadata.gz: 4febe849ba9587882b4c82669ddcd15139c3036b38dd5f3eebdf0aa990dac842e9f6329b492c0b1dc6a4bb5e941be9cd9a6eb5c982d4755d8991abdb8b3e200b
7
- data.tar.gz: c2b22a3c341892a2e6e9628a34958aa3252ffce1c1bf8ca7baad59fd4614cc6116d7148b582ad456f315fcf5b2b8809aabbbf9fa8aec9b11c2bbb3c11d0315a1
6
+ metadata.gz: d60be8913bb41a469d8ecb9a6500cc7feffca064c292ff69e409093ef4d24b6db73e0a72d2873533c7d3dcef0a79f9a04784e50a2233d22f5285717f6a657892
7
+ data.tar.gz: 007d7f4fe12981c5a45d6c80c4e511de4579cf79f709718dd9712edd722a0c0e5be2df31c4873ce66a585a0f7bba0fe640903754b12476f2ba3591ce4d14fa8d
data/README.md CHANGED
@@ -25,7 +25,7 @@ will be evaluated):
25
25
  ### Configure
26
26
 
27
27
  Input your URLs and customize your categories! Input 'check_everything -l' and
28
- check out the instructions in the test file.
28
+ check out the instructions in the configuration file.
29
29
 
30
30
  ### Enjoy!
31
31
 
@@ -8,14 +8,19 @@ class CheckEverything
8
8
  LINKFILE = "#{File.expand_path('~')}/.check_everything_links"
9
9
 
10
10
  def self.run
11
+ @argv = ARGV.map(&:downcase)
11
12
  # Create a new link file if none has been created yet
12
13
  unless File.exists?(LINKFILE)
13
14
  system("cp #{File.dirname(__FILE__)}/check_everything/links.txt #{LINKFILE}")
15
+ @argv = ["-l"]
16
+ puts "Please customize your installation.",
17
+ "This message will only be shown once.",
18
+ "To open again and customize, just enter 'check_everything -l' to open",
19
+ "the link file."
14
20
  end
15
21
  # Assume no problems with the link file.
16
22
  @link_space, @link_dash = false, false
17
23
 
18
- @argv = ARGV.map(&:downcase)
19
24
  extract_links
20
25
 
21
26
  # First check for unknown arguments and print out a helpful message.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: check_everything
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ariel Caplan