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 +4 -4
- data/README.md +1 -1
- data/changelog.md +6 -1
- data/lib/ruby_doc/cli/ui.rb +1 -1
- data/lib/ruby_doc/version.rb +1 -1
- data/ruby_doc.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bfd710ce77c80a8d697eddb743573af01bbdbb5e63bcb97944aaf6a8da8ed1f7
|
4
|
+
data.tar.gz: 5f0937fc89e8eab43025a571020cd9f5c260b97763035313f944df52158a1920
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d886445254de5424da3f1d1d7ca906ff892b38604ccc9056b429a7843d1471920628a5da5f008b2b97a1c7837e9093de67219defb8dbf16681b08e6395d00e01
|
7
|
+
data.tar.gz: c07f2523b76eed136354a1afd1f529ddd5331817aa6e5e3e896ffdf9d767a033fa6ddc08b31d08d91972bd74a2522bbf5583a085bfd9a8e51a970a00082312e9
|
data/README.md
CHANGED
data/changelog.md
CHANGED
data/lib/ruby_doc/cli/ui.rb
CHANGED
@@ -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
|
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
|
data/lib/ruby_doc/version.rb
CHANGED
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?
|
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.
|
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?
|
111
|
-
quick and more importantly, LOCAL.
|
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.
|