method
set_installed_by_version
v2_6_3 -
Show latest stable
- Class:
Bundler::RubygemsIntegration
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