method
to_s
ruby latest stable - Class:
Bundler::LazySpecification
to_s()public
No documentation available.
# File lib/bundler/lazy_specification.rb, line 92
def to_s
@__to_s ||= if platform == Gem::Platform::RUBY || platform.nil?
"#{name} (#{version})"
else
"#{name} (#{version}-#{platform})"
end
end