Sha256: 37466919bc8b58e5ca1910119f457b74b9ab4832cdcdb1655ffba70491ae9052
Contents?: true
Size: 349 Bytes
Versions: 2
Compression:
Stored size: 349 Bytes
Contents
# frozen_string_literal: true module ActionCable # Returns the version of the currently loaded Action Cable as a <tt>Gem::Version</tt>. def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 6 MINOR = 1 TINY = 4 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
rails_mini_profiler-0.2.0 | vendor/bundle/ruby/3.0.0/gems/actioncable-6.1.4/lib/action_cable/gem_version.rb |
actioncable-6.1.4 | lib/action_cable/gem_version.rb |