# File lib/compass/version.rb, line 23 def read_version require 'yaml' @version = YAML::load(File.read(scope('VERSION.yml'))) @version[:teeny] = @version[:patch] @version[:string] = "#{@version[:major]}.#{@version[:minor]}.#{@version[:patch]}" @version[:string] << ".#{@version[:build]}" if @version[:build] @version end