Sha256: c474076790504769aad4632d6a7e7e19ca404e4a751e7eb120528aa544db6ac8
Contents?: true
Size: 390 Bytes
Versions: 1
Compression:
Stored size: 390 Bytes
Contents
# frozen_string_literal: true module Composable module Form # Returns the currently-loaded version of Composable::Form as a <tt>Gem::Version</tt>. def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 0 MINOR = 0 TINY = 6 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
composable-form-0.0.6 | lib/composable/form/gem_version.rb |