Sha256: 1aef9d2fa5291c9bb782499db2bc923e872d9e2e638a7338e187da34d173ea84
Contents?: true
Size: 784 Bytes
Versions: 1
Compression:
Stored size: 784 Bytes
Contents
# ========================================================================= # Ceedling - Test-Centered Build System for C # ThrowTheSwitch.org # Copyright (c) 2010-25 Mike Karlesky, Mark VanderVoord, & Greg Williams # SPDX-License-Identifier: MIT # ========================================================================= ## ## version.rb is run as: ## 1. An executable script for a Ceedling tag used in the release build process ## `ruby Ceedling/lib/version.rb` ## 2. As a code module of constants consumed by Ruby's gem building process ## module Ceedling module Version # Convenience constants for gem building, etc. GEM = '1.0.1' TAG = GEM # If run as a script print Ceedling's version to $stdout puts( TAG ) if (__FILE__ == $0) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ceedling-1.0.1 | lib/version.rb |