# frozen_string_literal: true module Roseflow module OpenRouter def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 0 MINOR = 1 PATCH = 0 PRE = nil STRING = [MAJOR, MINOR, PATCH, PRE].compact.join(".") end end end