Skip to content

Commit

Permalink
Revert "Rack < v3 compatible release." (#20)
Browse files Browse the repository at this point in the history
This reverts commit d4e8558 and restores the original implementation for Rack 3+.
  • Loading branch information
ioquatix authored Jan 18, 2023
1 parent bb70cd3 commit 8da5316
Show file tree
Hide file tree
Showing 16 changed files with 2,538 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ jobs:

- name: Run tests
timeout-minutes: 10
run: bundle exec bake test
run: bundle exec rake test
9 changes: 9 additions & 0 deletions lib/rack/session.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# frozen_string_literal: true

module Rack
module Session
autoload :Cookie, "rack/session/cookie"
autoload :Pool, "rack/session/pool"
autoload :Memcache, "rack/session/memcache"
end
end
Loading

0 comments on commit 8da5316

Please sign in to comment.