gem-ctags 1.0.4 → 1.0.5
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.
- data/README.markdown +16 -0
- data/gem-ctags.gemspec +1 -1
- data/lib/rubygems_plugin.rb +1 -1
- metadata +10 -5
data/README.markdown
CHANGED
|
@@ -22,6 +22,22 @@ If you're using RVM, I recommend extending your global gemset by adding
|
|
|
22
22
|
`gem-ctags` to `~/.rvm/gemsets/global.gems`. Put it at the top so the
|
|
23
23
|
gems below it will be indexed.
|
|
24
24
|
|
|
25
|
+
Troubleshooting
|
|
26
|
+
---------------
|
|
27
|
+
|
|
28
|
+
If you see
|
|
29
|
+
|
|
30
|
+
$ ctags -R
|
|
31
|
+
ctags: illegal option -- R
|
|
32
|
+
usage: ctags [-BFadtuwvx] [-f tagsfile] file ...
|
|
33
|
+
|
|
34
|
+
you do not have the correct version of ctags in your path.
|
|
35
|
+
|
|
36
|
+
Just add the following to your .bashrc and be happy:
|
|
37
|
+
|
|
38
|
+
export PATH=/usr/local/bin:$PATH
|
|
39
|
+
|
|
40
|
+
|
|
25
41
|
Vim Tips
|
|
26
42
|
--------
|
|
27
43
|
|
data/gem-ctags.gemspec
CHANGED
data/lib/rubygems_plugin.rb
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
require 'rubygems/command_manager'
|
|
2
|
+
require 'rubygems/commands/ctags_command'
|
|
2
3
|
|
|
3
4
|
Gem::CommandManager.instance.register_command :ctags
|
|
4
5
|
|
|
5
6
|
Gem.post_install do |installer|
|
|
6
|
-
require 'rubygems/commands/ctags_command'
|
|
7
7
|
Gem::Commands::CtagsCommand.index(installer.spec)
|
|
8
8
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gem-ctags
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,11 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-
|
|
12
|
+
date: 2012-12-21 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
16
|
-
requirement:
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,7 +21,12 @@ dependencies:
|
|
|
21
21
|
version: '0'
|
|
22
22
|
type: :development
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements:
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ! '>='
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '0'
|
|
25
30
|
description:
|
|
26
31
|
email:
|
|
27
32
|
- code@tpope.net
|
|
@@ -57,7 +62,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
57
62
|
version: '0'
|
|
58
63
|
requirements: []
|
|
59
64
|
rubyforge_project:
|
|
60
|
-
rubygems_version: 1.8.
|
|
65
|
+
rubygems_version: 1.8.23
|
|
61
66
|
signing_key:
|
|
62
67
|
specification_version: 3
|
|
63
68
|
summary: Automatic ctags generation on gem install
|