Sha256: ac93d7b7bd39bb4f5c90c222a32812517ff6c9b9de74e0b175050d22b52e2b48

Contents?: true

Size: 375 Bytes

Versions: 1

Compression:

Stored size: 375 Bytes

Contents

module SimpleCov
  module Formatter
    class CoverBoardFormatter
      VERSION = "0.1.1"

      def VERSION.to_a
        split(".").map(&:to_i)
      end

      def VERSION.major
        to_a[0]
      end

      def VERSION.minor
        to_a[1]
      end

      def VERSION.patch
        to_a[2]
      end

      def VERSION.pre
        to_a[3]
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
simplecov-coverboard-0.1.1 lib/simplecov-coverboard/version.rb