module AssetPages::Version

A module containing the gem version information.

Constants

MAJOR

The major version.

MINOR

The minor version.

PATCH

The patch version.

Public Class Methods

to_s() click to toggle source

Gets the String representation of the gem version.

# File lib/asset_pages/version.rb, line 29
def self.to_s
  "#{MAJOR}.#{MINOR}.#{PATCH}"
end