lib/rubygems/commands/read_command.rb in open_gem-1.4.2 vs lib/rubygems/commands/read_command.rb in open_gem-1.5.0
- old
+ new
@@ -1,23 +1,23 @@
require 'launchy'
# ReadCommand will open a gem's rdoc
class Gem::Commands::ReadCommand < Gem::Command
include OpenGem::CommonOptions
include Gem::VersionOption
-
+
def initialize
- super 'read', "Opens the gem's documentation",
- :command => nil,
+ super 'read', "Opens the gem's documentation",
+ :command => nil,
:version=> Gem::Requirement.default,
:latest=> false
-
+
add_command_option "Application to read rdoc with"
add_latest_version_option
add_version_option
add_exact_match_option
end
-
+
def arguments # :nodoc:
"GEMNAME gem to read"
end
def execute
@@ -30,28 +30,28 @@
generate_rdoc spec
read_gem path
end
end
end
-
+
def get_path(spec)
File.join(spec.installation_path, "doc", spec.full_name, 'rdoc','index.html')
end
-
+
def generate_rdoc spec
Gem::DocManager.new(spec).generate_rdoc
end
-
+
def read_gem(path)
if options[:command]
command_parts = Shellwords.shellwords(options[:command])
command_parts << path
success = system(*command_parts)
- if !success
+ if !success
raise Gem::CommandLineError, "Could not run '#{rdoc_reader} #{path}', exit code: #{$?.exitstatus}"
end
else
- Launchy::Browser.run("file://"+path)
+ Launchy.open("file://"+path)
end
end
-
+
end