Flowdock
method

_segments

Importance_0
v2_4_6 - Show latest stable - 0 notes - Class: Version
_segments() protected

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rubygems/version.rb, line 369
  def _segments
    # segments is lazy so it can pick up version values that come from
    # old marshaled versions, which don't go through marshal_load.
    # since this version object is cached in @@all, its @segments should be frozen

    @segments ||= @version.scan(/[0-9]+|[a-z]+/).map do |s|
      /^\d+$/ =~ s ? s.to_i : s
    end.freeze
  end
Register or log in to add new notes.