Method: Library::Version#build

Defined in:
lib/library/version.rb

#buildString

Build returns the remaining portions of the version tuple after patch joined by ‘.’.

Returns:

  • (String)

    version segments after the 3rd in point-format



186
187
188
# File 'lib/library/version.rb', line 186

def build
  @tuple[3..-1].join('.')
end