Skip to content

Commit

Permalink
Merge pull request #205 from TobiasBales/fix-main-branch
Browse files Browse the repository at this point in the history
Fix main branch build
  • Loading branch information
byroot authored Aug 15, 2023
2 parents 9198a95 + f08f307 commit 2082e1d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions activerecord-session_store.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Gem::Specification.new do |s|
s.add_dependency('railties', '>= 6.1')
s.add_dependency('rack', '>= 2.0.8', '< 3')
s.add_dependency('multi_json', '~> 1.11', '>= 1.11.2')
s.add_dependency('cgi', '>= 0.3.6')

s.add_development_dependency('sqlite3')
end
3 changes: 1 addition & 2 deletions gemfiles/rails_edge.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ git "https://github.com/rails/rails.git", :branch => "main" do
gem "railties"
end

gem "rack", :git => "https://github.com/rack/rack.git", :branch => "main"
gem "rack-session", :git => "https://github.com/rack/rack-session.git", :branch => "main"
gem "rack", "~> 2.0", ">= 2.2.4"

gemspec :path => "../"
2 changes: 1 addition & 1 deletion test/action_controller_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def test_getting_session_value_after_session_reset
get '/set_session_value'
assert_response :success
assert cookies['_session_id']
session_cookie = cookies.send(:hash_for)['_session_id']
session_cookie = cookies.get_cookie('_session_id')

get '/call_reset_session'
assert_response :success
Expand Down

0 comments on commit 2082e1d

Please sign in to comment.