Module: AssetPages::Version
- Defined in:
- lib/asset_pages/version.rb
Overview
A module containing the gem version information.
Constant Summary collapse
- MAJOR =
The major version.
0- MINOR =
The minor version.
9- PATCH =
The patch version.
12
Class Method Summary collapse
-
.to_s ⇒ Object
Gets the String representation of the gem version.
Class Method Details
.to_s ⇒ Object
Gets the String representation of the gem version.
30 31 32 |
# File 'lib/asset_pages/version.rb', line 30 def self.to_s "#{MAJOR}.#{MINOR}.#{PATCH}" end |