ruby_doc 2.0.0 → 2.0.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
  SHA256:
3
- metadata.gz: 9f6ff52d91baa724d38c4466abfc16202893d12938de22d9f1e81ce08eea6a3e
4
- data.tar.gz: ddf9fc4ccdc6c317eee458d0db2453a028896f7b60d98dc81a601a4842768f5c
3
+ metadata.gz: bfd710ce77c80a8d697eddb743573af01bbdbb5e63bcb97944aaf6a8da8ed1f7
4
+ data.tar.gz: 5f0937fc89e8eab43025a571020cd9f5c260b97763035313f944df52158a1920
5
5
  SHA512:
6
- metadata.gz: 13b4329220e11292910429d10b5ee110e9e5383a6a75373aca16e87a04ac8cc9ee030a5233ab7960502147b4a70abb13ebb91166bef719f89523c54198fb3dab
7
- data.tar.gz: 2cefcb41740d450e7ef7e296b957e0a5ef6362d549cd8f8d58cadccedfddb177bb7ff2ac16d6971ff614b7bc49e52efc35124cb37f28d942ff064ee25383d418
6
+ metadata.gz: d886445254de5424da3f1d1d7ca906ff892b38604ccc9056b429a7843d1471920628a5da5f008b2b97a1c7837e9093de67219defb8dbf16681b08e6395d00e01
7
+ data.tar.gz: c07f2523b76eed136354a1afd1f529ddd5331817aa6e5e3e896ffdf9d767a033fa6ddc08b31d08d91972bd74a2522bbf5583a085bfd9a8e51a970a00082312e9
data/README.md CHANGED
@@ -81,7 +81,7 @@ To exit
81
81
 
82
82
  $ exit!
83
83
 
84
- To Learn More
84
+ To Learn More (From Main Menu)
85
85
 
86
86
  $ ?
87
87
 
data/changelog.md CHANGED
@@ -1,4 +1,9 @@
1
- v2.0.0 (2018-02-21)
1
+ v2.0.1 (2018-02-22)
2
+ ------------------
3
+
4
+ * Patch - Fixed nil error on list menu
5
+
6
+ v2.0.0 (2018-02-22)
2
7
  ------------------
3
8
 
4
9
  * Improved Data Source
@@ -225,7 +225,7 @@ class UI
225
225
  end
226
226
 
227
227
  def self.list_menu(matches)
228
- puts "To ".cyan + "View ".yellow + "(Enter ".cyan + "#".yellow + ")".cyan + " eg. #{matches.count.to_s} for #{matches[matches.count-2].name}".black
228
+ puts "To ".cyan + "View ".yellow + "(Enter ".cyan + "#".yellow + ")".cyan
229
229
  puts "To return to".cyan + " Main Menu".yellow + " (Enter ".cyan + "'m'".yellow + ")".cyan
230
230
  puts "To".cyan + " Leave".yellow + " (".cyan + "'exit!'".yellow + ")\n".cyan
231
231
  print randQ
@@ -1,3 +1,3 @@
1
1
  module RubyDoc
2
- VERSION = "2.0.0"
2
+ VERSION = "2.0.1"
3
3
  end
data/ruby_doc.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["daniel.nunez.nyc@gmail.com"]
11
11
 
12
12
  spec.summary = %q{A CLI Gem that scrapes Ruby documentation.}
13
- spec.description = %q{Ever get tired of leaving your editor/environment to google a method, or more in depth info on a class or module? \nThis gem aims to make Ruby referencing quick and more importantly, LOCAL. \n\nRuby Doc scrapes Ruby documentation and allows users to quickly reference Ruby Language methods and additional information all on your terminal. Have a query? run, hunt, and done. Never lose momentum, keep all things in your line of sight and get right back to coding. Enjoy.}
13
+ spec.description = %q{Ever get tired of leaving your editor/environment to google a method, or more in depth info on a class or module? This gem aims to make Ruby referencing quick and more importantly, LOCAL. Ruby Doc scrapes Ruby documentation and allows users to quickly reference Ruby Language methods and additional information all on your terminal. Have a query? run, hunt, and done. Never lose momentum, keep all things in your line of sight and get right back to coding. Enjoy.}
14
14
  spec.homepage = "https://github.com/AlphaDaniel/ruby_doc"
15
15
  spec.license = "MIT"
16
16
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_doc
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Nunez
@@ -107,8 +107,8 @@ dependencies:
107
107
  - !ruby/object:Gem::Version
108
108
  version: 1.8.1
109
109
  description: Ever get tired of leaving your editor/environment to google a method,
110
- or more in depth info on a class or module? \nThis gem aims to make Ruby referencing
111
- quick and more importantly, LOCAL. \n\nRuby Doc scrapes Ruby documentation and allows
110
+ or more in depth info on a class or module? This gem aims to make Ruby referencing
111
+ quick and more importantly, LOCAL. Ruby Doc scrapes Ruby documentation and allows
112
112
  users to quickly reference Ruby Language methods and additional information all
113
113
  on your terminal. Have a query? run, hunt, and done. Never lose momentum, keep all
114
114
  things in your line of sight and get right back to coding. Enjoy.