module Jets::Gems

Assumes gems were just built and checks the filesystem to find and detect for compiled gems. Unless the cli option is set to true, the it'll just check based on the gemspecs.

Constants

VERSION

Public Instance Methods

ruby_folder() click to toggle source
# File lib/jets/gems.rb, line 12
def ruby_folder
  major, minor, _ = RUBY_VERSION.split('.')
  [major, minor, '0'].join('.') # 2.5.1 => 2.5.0
end