ribhu 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +3 -0
- data/bin/ribhu +4 -2
- data/ribhu.gemspec +1 -1
- metadata +4 -4
data/README.md
CHANGED
@@ -29,6 +29,9 @@ between previous and next pages viewed.
|
|
29
29
|
|
30
30
|
Please get back to me if there are cases where it's unhelpful in finding the ridocs.
|
31
31
|
|
32
|
+
2013-03-21 - 19:10 : Fixed bug: display of Instance methods on Alt-m had stopped working after
|
33
|
+
changing format to ANSI.
|
34
|
+
|
32
35
|
## Installation
|
33
36
|
|
34
37
|
gem install ribhu
|
data/bin/ribhu
CHANGED
@@ -382,9 +382,11 @@ if true
|
|
382
382
|
tv.bind_key(?\M-m, "Select methods") {
|
383
383
|
kl = tv.title.strip
|
384
384
|
lines = tv.text
|
385
|
-
|
385
|
+
# 2013-03-21 - 19:09 Fixed, had stopped working after change to ansi format
|
386
|
+
ix = lines.grep(/Instance methods:/)
|
387
|
+
ix = lines.index(ix[0]) if ix
|
386
388
|
unless ix
|
387
|
-
alert "No instance methods found"
|
389
|
+
alert "No instance methods found #{ix}"
|
388
390
|
end
|
389
391
|
if ix
|
390
392
|
values = lines[ix+2..-1]
|
data/ribhu.gemspec
CHANGED
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "ribhu"
|
8
|
-
spec.version = "0.0.
|
8
|
+
spec.version = "0.0.6"
|
9
9
|
spec.authors = ["Rahul Kumar"]
|
10
10
|
spec.email = ["sentinel1879@gmail.com"]
|
11
11
|
spec.description = %q{ri documentation browser using ncurses}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ribhu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-03-
|
12
|
+
date: 2013-03-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -89,7 +89,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
89
89
|
version: '0'
|
90
90
|
segments:
|
91
91
|
- 0
|
92
|
-
hash:
|
92
|
+
hash: 3601249896728680048
|
93
93
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
94
94
|
none: false
|
95
95
|
requirements:
|
@@ -98,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
98
98
|
version: '0'
|
99
99
|
segments:
|
100
100
|
- 0
|
101
|
-
hash:
|
101
|
+
hash: 3601249896728680048
|
102
102
|
requirements: []
|
103
103
|
rubyforge_project:
|
104
104
|
rubygems_version: 1.8.25
|