Flowdock
method

open_gem

Importance_0
v2_6_3 - Show latest stable - 0 notes - Class: OpenCommand
open_gem(name) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rubygems/commands/open_command.rb, line 61
  def open_gem(name)
    spec = spec_for name

    return false unless spec

    if spec.default_gem?
      say "'#{name}' is a default gem and can't be opened."
      return false
    end

    open_editor(spec.full_gem_path)
  end
Register or log in to add new notes.