aboutsummaryrefslogblamecommitdiffstats
path: root/lib/refinery/blog/version.rb
blob: 039041461b55412eaf50a778dbbac79bbbdb7e0c (plain) (tree)
1
2
3
4
5
6



                 
                
                










                                                   
module Refinery
  module Blog
    class Version
      @major = 1
      @minor = 6
      @tiny  = 2

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

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