rb_nav 0.1.8 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
data/README.markdown CHANGED
@@ -23,16 +23,11 @@ documentation-browsing features.
23
23
 
24
24
  ## Install
25
25
 
26
- gem install rb_nav
27
-
28
- Then
29
-
30
- rb_nav_install
26
+ gem install rb_nav && rb_nav_install
31
27
 
32
28
  This installs the rb_nav.vim plugin into your ~/.vim/plugin directory.
33
29
 
34
30
  To upgrade RbNav to a newer version, just repeat the installation procedure.
35
- Don't forget to run `rb_nav_install` again after you download the new gem.
36
31
 
37
32
 
38
33
  ## Commands
data/bin/rb_nav_classes CHANGED
@@ -9,6 +9,7 @@ begin
9
9
  parts = x.strip.split(/:/,3)
10
10
  path, line, klass = *parts
11
11
  klass = klass ? klass.strip.sub(/^\w+\s/,'') : "no class"
12
+ klass = klass.sub(/\s*<\s*[A-Z]\S+/,'') # strip off inheritance for less clutter
12
13
  if klass =~ /<<\s*self/
13
14
  nil
14
15
  else
@@ -1,4 +1,4 @@
1
1
  module RbNav
2
2
 
3
- VERSION = '0.1.8'
3
+ VERSION = '0.1.9'
4
4
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: rb_nav
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.8
5
+ version: 0.1.9
6
6
  platform: ruby
7
7
  authors:
8
8
  - Daniel Choi