Sha256: b18b8fd61e878b8ac99c5619888cbef4b8b4a103dbfe3a7b75ca4d1ab76b9296
Contents?: true
Size: 616 Bytes
Versions: 1
Compression:
Stored size: 616 Bytes
Contents
# encoding: utf-8 module Tablecloth module Rails # Refer to Semantic Versioning 2.0.0 (http://semver.org). # Use tablecloth version (major, minor, patch) and append a gem # version identifier (denoted as VV below); use leading zero. # Examples: # "X.Y.ZVV" is tablecloth vX.Y.Z + gem release VV # "1.0.100" is tablecloth v1.0.1 + gem release 0 # "1.0.101" is tablecloth v1.0.1 + gem release 1 # "1.0.110" is tablecloth v1.0.1 + gem release 10 MAJOR = 1 MINOR = 0 PATCH = 102 BUILD = nil VERSION = [MAJOR, MINOR, PATCH, BUILD].compact.join('.') end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tablecloth-rails-1.0.102 | lib/tablecloth-rails/version.rb |