Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/joya.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#gem_installed? ⇒ Boolean
check if a gem is installed.
Instance Method Details
#gem_installed? ⇒ Boolean
check if a gem is installed
18 19 20 21 22 |
# File 'lib/joya.rb', line 18 def gem_installed? gem_path=ENV['GEM_PATH'].split(":").first !Dir.glob([gem_path, 'gems', self + Joya::GEM_VERSION_PATTERN].join('/')).empty? rescue NoMethodError end |