Method: Gem::Dependency#to_s

Defined in:
lib/rubygems/dependency.rb

#to_sObject

:nodoc:



149
150
151
152
153
154
155
# File 'lib/rubygems/dependency.rb', line 149

def to_s # :nodoc:
  if type != :runtime
    "#{name} (#{requirement}, #{type})"
  else
    "#{name} (#{requirement})"
  end
end