Sha256: 6584a397afe9f6d095dac900b45a3407ae05c8d98d901c64552ba361536822e9

Contents?: true

Size: 272 Bytes

Versions: 1

Compression:

Stored size: 272 Bytes

Contents

module Refinery
  module Blog
    class Version
      @major = 2
      @minor = 0
      @tiny  = 5

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

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
refinerycms-blog-2.0.5 lib/refinery/blog/version.rb