Sha256: 1d445d1874b569ea80727d036af133248e797e025194550d44aae5bf94bd3f33
Contents?: true
Size: 340 Bytes
Versions: 1
Compression:
Stored size: 340 Bytes
Contents
# frozen_string_literal: true module ActionCable # Returns the currently loaded version of Action Cable as a +Gem::Version+. def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 7 MINOR = 1 TINY = 0 PRE = "rc1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
actioncable-7.1.0.rc1 | lib/action_cable/gem_version.rb |