check_everything 0.2.6 → 0.2.7

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 +13 -5
  2. data/README.md +3 -2
  3. data/lib/check_everything.rb +2 -2
  4. metadata +6 -6
checksums.yaml CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 577c6fe5c7ded8eb1c6a2589f96574861ee2b495
4
- data.tar.gz: 4f3b5cb81aa40010f1e95a96347af899ca74d5d6
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MTZkZWZmMDkyMjg5M2JmNmQ5ZDEyOWRhYTFmMmZiZmQ3NzY0ODRkYg==
5
+ data.tar.gz: !binary |-
6
+ YmQzZmVhMjY3Njc0YTA5Njc1Yjc1OTY0YTUwNGFjNmZjMWZhZmRkOA==
5
7
  SHA512:
6
- metadata.gz: 9d4ed8d998ecee378b0a6d3b2f6212cb2ef77a28e83f937d87a14e2a9376554608f1a2c81ff68aae480491a47bc7353df76663d62a1425ac3658bf98df16ada6
7
- data.tar.gz: ae31254fe5f7de53a05030a27a0b701bd7b8b7d49c3adb75578328c9fd2c7c8dde5aec085d2eca1cb12f033a2f214794395e21f16d7ebcb9689624f1a7eb1a84
8
+ metadata.gz: !binary |-
9
+ MjQ3MThkZWRiYzVlYjMyMTAxN2M4Zjc5NjJhNzBiN2VjZTA4YmNiZmIyOTYx
10
+ YWE4ZTMxNTI4NzNmZmVlMTZmYzMyOWZmZGQ0ODMwODgzOWNlY2YyMDBiYWZm
11
+ NjdhMWE3OGI0OWIxMDU1NzhhMzYxMGE3NDkyNjI2OTczNzhmZWQ=
12
+ data.tar.gz: !binary |-
13
+ YzYyMzhjOTVkMTk5YzYxYTk5OGI4ZWVhN2FhN2QxNjZmZjQwZWQ5MDIwZDlj
14
+ NGRkMjk4YTIyZWU5YWE4ODZmMmMzNjc3ZmEyNTNjMDdmMGYwMWJlNGEwOTVi
15
+ ZTU1YWRlYmRhNDk1ZWNiZmZmNjdhMmM5NTgxZjllN2JlNjFlMTY=
data/README.md CHANGED
@@ -30,8 +30,9 @@ will be evaluated):
30
30
  On your first run, you will be asked to do 2 things:
31
31
 
32
32
  1. Choose whether to install Ruby Documentation lookup functionality. This will
33
- give you command-line access to Ruby Documentation for the Core classes. For
34
- example, to see documentation for array, type `check_everything array`
33
+ give you command-line access to the online Ruby Documentation for the Core classes
34
+ for your currently running version of Ruby. For example, to see documentation for
35
+ array, type `check_everything array`.
35
36
 
36
37
  2. Input your URLs and customize your categories! Check out the instructions in
37
38
  the configuration file.
@@ -102,7 +102,7 @@ class CheckEverything
102
102
  puts " -r, --ruby install Ruby Documentation functionality"
103
103
  puts " -c, --categories view the currently defined categories"
104
104
  puts " -a, --all open all websites (will override documentation lookup)"
105
- puts " <tags> open a specific site group"
105
+ puts " <categories> open a specific site group"
106
106
  puts " (multiple are allowed, separated by spaces)"
107
107
  puts
108
108
  puts "Note: The first tag in this list will be the only tag evaluated."
@@ -144,7 +144,7 @@ class CheckEverything
144
144
  class_name if @argv.any? {|name| class_name.downcase == name.downcase}
145
145
  }.compact
146
146
  if class_matches.size > 0
147
- class_matches.each {|link| links << "ruby-doc.org/core/#{link}.html"}
147
+ class_matches.each {|link| links << "ruby-doc.org/core-#{RUBY_VERSION}/#{link}.html"}
148
148
  end
149
149
  end
150
150
  end
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.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ariel Caplan
@@ -17,7 +17,7 @@ dependencies:
17
17
  - - ~>
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.6'
20
- - - '>='
20
+ - - ! '>='
21
21
  - !ruby/object:Gem::Version
22
22
  version: 1.6.1
23
23
  type: :runtime
@@ -27,7 +27,7 @@ dependencies:
27
27
  - - ~>
28
28
  - !ruby/object:Gem::Version
29
29
  version: '1.6'
30
- - - '>='
30
+ - - ! '>='
31
31
  - !ruby/object:Gem::Version
32
32
  version: 1.6.1
33
33
  description: Open Frequently Used Websites from the Command Line!
@@ -52,17 +52,17 @@ require_paths:
52
52
  - lib
53
53
  required_ruby_version: !ruby/object:Gem::Requirement
54
54
  requirements:
55
- - - '>='
55
+ - - ! '>='
56
56
  - !ruby/object:Gem::Version
57
57
  version: '0'
58
58
  required_rubygems_version: !ruby/object:Gem::Requirement
59
59
  requirements:
60
- - - '>='
60
+ - - ! '>='
61
61
  - !ruby/object:Gem::Version
62
62
  version: '0'
63
63
  requirements: []
64
64
  rubyforge_project:
65
- rubygems_version: 2.2.1
65
+ rubygems_version: 2.2.2
66
66
  signing_key:
67
67
  specification_version: 4
68
68
  summary: Check Everything