Skip to content

Commit

Permalink
Fix LoadError
Browse files Browse the repository at this point in the history
Closes #3.  I haven't narrowed down the exact trigger for this but the
error message makes the solution pretty obvious.
  • Loading branch information
tpope committed Dec 20, 2012
1 parent a214285 commit 2827450
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rubygems_plugin.rb
Original file line number Original file line Diff line number Diff line change
@@ -1,8 +1,8 @@
require 'rubygems/command_manager' require 'rubygems/command_manager'
require 'rubygems/commands/ctags_command'


Gem::CommandManager.instance.register_command :ctags Gem::CommandManager.instance.register_command :ctags


Gem.post_install do |installer| Gem.post_install do |installer|
require 'rubygems/commands/ctags_command'
Gem::Commands::CtagsCommand.index(installer.spec) Gem::Commands::CtagsCommand.index(installer.spec)
end end

0 comments on commit 2827450

Please sign in to comment.