Sha256: da83685f6e4a7dadd2a380622b84ae358805b9e1718ae939ca4f7274d3e7ed6b

Contents?: true

Size: 1.4 KB

Versions: 1

Compression:

Stored size: 1.4 KB

Contents

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,
      :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
    name = get_one_gem_name
    spec = get_spec(name){|s| s.has_rdoc? }
    if spec && path = get_path(spec)
      if File.exists? path
        read_gem path
      elsif ask_yes_no "The rdoc seems to be missing, would you like to generate one?", true
        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
        raise Gem::CommandLineError, "Could not run '#{rdoc_reader} #{path}', exit code: #{$?.exitstatus}"
      end
    else
      Launchy.open("file://"+path)
    end
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
open_gem-1.5.0 lib/rubygems/commands/read_command.rb