yujinakayama/rspec-hue_formatter

View on GitHub
lib/rspec/hue_formatter/version.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Rspec
  module HueFormatter
    # http://semver.org/
    module Version
      MAJOR = 0
      MINOR = 1
      PATCH = 0

      def self.to_s
        [MAJOR, MINOR, PATCH].join('.')
      end
    end
  end
end