Sha256: 9b89a783c1da38d3a585c4b099b1bd66d92efeb5e59fe7570d44070be79200b0

Contents?: true

Size: 646 Bytes

Versions: 1

Compression:

Stored size: 646 Bytes

Contents

class Roda
  # The major version of Roda, updated only for major changes that are
  # likely to require modification to Roda apps.
  RodaMajorVersion = 3

  # The minor version of Roda, updated for new feature releases of Roda.
  RodaMinorVersion = 60

  # The patch version of Roda, updated only for bug fixes from the last
  # feature release.
  RodaPatchVersion = 0

  # The full version of Roda as a string.
  RodaVersion = "#{RodaMajorVersion}.#{RodaMinorVersion}.#{RodaPatchVersion}".freeze

  # The full version of Roda as a number (3.7.0 => 30070)
  RodaVersionNumber = RodaMajorVersion*10000 + RodaMinorVersion*10 + RodaPatchVersion
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
roda-3.60.0 lib/roda/version.rb