method

set_installed_by_version

set_installed_by_version(spec, installed_by_version = Gem::VERSION)
public

No documentation available.

# File lib/bundler/rubygems_integration.rb, line 70
    def set_installed_by_version(spec, installed_by_version = Gem::VERSION)
      return unless spec.respond_to?(:installed_by_version=)
      spec.installed_by_version = Gem::Version.create(installed_by_version)
    end