Skip to content

Commit 8da5316

Browse files
authored
Revert "Rack < v3 compatible release." (#20)
This reverts commit d4e8558 and restores the original implementation for Rack 3+.
1 parent bb70cd3 commit 8da5316

16 files changed

+2538
-2
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ jobs:
4848

4949
- name: Run tests
5050
timeout-minutes: 10
51-
run: bundle exec bake test
51+
run: bundle exec rake test

lib/rack/session.rb

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# frozen_string_literal: true
2+
3+
module Rack
4+
module Session
5+
autoload :Cookie, "rack/session/cookie"
6+
autoload :Pool, "rack/session/pool"
7+
autoload :Memcache, "rack/session/memcache"
8+
end
9+
end

0 commit comments

Comments
 (0)