module GtfsReader::Version
This module both contains the current version of GtfsReader
, but also has a {Bumper} class which will modify this file to increase the version
Constants
- BUILD
- MAJOR
The following four lines are generated, so don't mess with them.
- MINOR
- PATCH
Public Class Methods
to_s()
click to toggle source
@return [String] the current version in the form of 1.2.3.build
# File lib/gtfs_reader/version.rb, line 12 def self.to_s [MAJOR, MINOR, PATCH, BUILD].compact.join('.') end