yujinakayama/rubygems-xcodeproj_generator

View on GitHub
lib/rubygems/xcodeproj_generator/version.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Rubygems
  module XcodeprojGenerator
    module Version
      MAJOR = 0
      MINOR = 2
      PATCH = 0

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