Skip to content

Commit acb1b94

Browse files
committed
Add version.rb file for release management.
1 parent 6d1b706 commit acb1b94

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

lib/rack/cache/version.rb

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module Rack
2+
module Cache
3+
VERSION = '1.13.0'
4+
end
5+
end

rack-cache.gemspec

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
Gem::Specification.new 'rack-cache', '1.13.0' do |s|
1+
require_relative 'lib/rack/cache/version'
2+
3+
Gem::Specification.new do |s|
4+
s.name = "rack-cache"
5+
s.version = Rack::Cache::VERSION
6+
27
s.summary = "HTTP Caching for Rack"
38
s.description = "Rack::Cache is suitable as a quick drop-in component to enable HTTP caching for Rack-based applications that produce freshness (expires, cache-control) and/or validation (last-modified, etag) information."
49
s.required_ruby_version = '>= 2.3.0'

0 commit comments

Comments
 (0)