refinerycms-blog/lib/refinery/blog/version.rb

17 lines
No EOL
271 B
Ruby

module Refinery
module Blog
class Version
@major = 2
@minor = 0
@tiny = 1
class << self
attr_reader :major, :minor, :tiny
def to_s
[@major, @minor, @tiny].compact.join('.')
end
end
end
end
end