method

cached_gem

cached_gem(spec)
protected

No documentation available.

# File lib/bundler/source/rubygems.rb, line 309
      def cached_gem(spec)
        cached_gem = cached_path(spec)
        unless cached_gem
          raise Bundler::GemNotFound, "Could not find #{spec.file_name} for installation"
        end
        cached_gem
      end