aboutsummaryrefslogtreecommitdiffstats
path: root/lib/refinery/blog/version.rb
blob: 3899eebe915fae0e11cc48ac01f2e79a5f27b219 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module Refinery
  module Blog
    class Version
      @major = 1
      @minor = 5
      @tiny  = 2

      class << self
        attr_reader :major, :minor, :tiny

        def to_s
          [@major, @minor, @tiny].compact.join('.')
        end
      end
    end
  end
end