Method: Bundler::LazySpecification#full_name

Defined in:
lib/bundler/lazy_specification.rb

#full_nameObject



37
38
39
40
41
42
43
# File 'lib/bundler/lazy_specification.rb', line 37

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