Sha256: 883b761fd6d5b1086d281add4b1716bc098b37978dbc4ad65347cbee5f7dfb96
Contents?: true
Size: 610 Bytes
Versions: 2
Compression:
Stored size: 610 Bytes
Contents
# frozen_string_literal: true # Copyright (C) 2007-2019 Leah Neukirchen <http://leahneukirchen.org/infopage.html> # # Rack is freely distributable under the terms of an MIT-style license. # See MIT-LICENSE or https://opensource.org/licenses/MIT. # The Rack main module, serving as a namespace for all core Rack # modules and classes. # # All modules meant for use in your application are <tt>autoload</tt>ed here, # so it should be enough just to <tt>require 'rack'</tt> in your code. module Rack RELEASE = "3.1.7" # Return the Rack release as a dotted string. def self.release RELEASE end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
minato_ruby_api_client-0.2.2 | vendor/bundle/ruby/3.2.0/gems/rack-3.1.7/lib/rack/version.rb |
rack-3.1.7 | lib/rack/version.rb |