Skip to content

Commit

Permalink
Change for Spree version 4.5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
earllevine committed Apr 29, 2023
1 parent ff230ce commit 83caa01
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.5
3.2.2
11 changes: 6 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ git_source(:github) do |repo_name|
"https://github.com/#{repo_name}.git"
end

gem 'spree_core', '4.4.0'
gem 'spree_backend', '4.4.0'
gem 'spree_frontend', git: 'https://github.com/spree/spree_legacy_frontend.git', ref: 'c81ce5c'
gem 'spree_emails', '4.4.0'
gem 'spree_core', '4.5.0'
gem 'spree_backend', '4.5.0'
gem 'spree_frontend', '4.5.0'
gem 'spree_emails', '4.5.0'
# Provides basic authentication functionality for testing parts of your engine
gem 'spree_auth_devise', '4.4.2'
gem 'spree_auth_devise', '4.5.0'
gem 'rails-controller-testing'

gem 'sqlite3', '~> 1.4'
Expand All @@ -21,6 +21,7 @@ gem 'rubocop-rspec', require: false
group :test do
gem 'pg'
gem 'redis', '4.4.0'
gem 'email_spec', '2.2.1'
end

gemspec
2 changes: 1 addition & 1 deletion lib/spree_multi_tenant.rb
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,11 @@ def self.tenanted_models
def self.tenanted_controllers
[
Spree::BaseController,
Spree::Api::BaseController,
Spree::Api::V2::BaseController
] +
[
'Spree::Admin::BaseController',
'Spree::Api::BaseController',
'Spree::StoreController',
'Spree::UserPasswordsController',
'Spree::UserSessionsController',
Expand Down

0 comments on commit 83caa01

Please sign in to comment.