Method: Bundler::RemoteSpecification#full_name

Defined in:
lib/bundler/remote_specification.rb

#full_nameObject



32
33
34
35
36
37
38
# File 'lib/bundler/remote_specification.rb', line 32

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