Method: Bundler::LazySpecification#full_name

Defined in:
lib/bundler/lazy_specification.rb

#full_nameObject



21
22
23
24
25
26
27
# File 'lib/bundler/lazy_specification.rb', line 21

def full_name
  if platform == Gem::Platform::RUBY || platform.nil?
    "#{@name}-#{@version}"
  else
    "#{@name}-#{@version}-#{platform}"
  end
end