module Brice::Version

Constants

MAJOR
MINOR
TINY

Public Class Methods

to_a() click to toggle source

Returns array representation.

   # File lib/brice/version.rb
12 def to_a
13   [MAJOR, MINOR, TINY]
14 end
to_s() click to toggle source

Short-cut for version string.

   # File lib/brice/version.rb
17 def to_s
18   to_a.join('.')
19 end