module Gotoinc::Standard::Version

Constants

MSG
STRING

Public Class Methods

version(debug = false) click to toggle source
# File lib/gotoinc/standard/version.rb, line 11
def self.version(debug = false)
  if debug
    format(
      MSG, version: STRING, parser_version: Parser::VERSION,
           ruby_engine: RUBY_ENGINE, ruby_version: RUBY_VERSION,
           ruby_platform: RUBY_PLATFORM
    )
  else
    STRING
  end
end