lib/view_component/version.rb
# frozen_string_literal: true module ViewComponent module VERSION MAJOR = 3 MINOR = 21 PATCH = 0 PRE = nil STRING = [MAJOR, MINOR, PATCH, PRE].compact.join(".") end end puts ViewComponent::VERSION::STRING if __FILE__ == $PROGRAM_NAME