class Richcss::VersionKit::Set

Attributes

name[R]

@return [String] the name of the Pod.

versions[R]

@return [Array<Source>] the sources that contain the specifications for

the available versions of a Pod.

Public Class Methods

new(name, versions) click to toggle source

@param [String] name

the name of the Pod.

@param [Array<Source>,Source] sources

the sources that contain a Pod.
# File lib/richcss/vendor/version_kit/lib/version_kit/set.rb, line 20
def initialize(name, versions)
  @name = name
  @versions = Array(versions)
end