Method: LibGems::Specification#full_gem_path
- Defined in:
- lib/libgems/specification.rb
#full_gem_path ⇒ Object
The full path to the gem (install path + full name).
598 599 600 601 602 |
# File 'lib/libgems/specification.rb', line 598 def full_gem_path path = File.join installation_path, 'gems', full_name return path if File.directory? path File.join installation_path, 'gems', original_name end |