Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix responders gem dependency #3336

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add responders gem as solidus_backend dependency
It is now loaded and required through solidus_api (and
solidus_auth_devise if included) but respond_with is widely used
and it is better to explicitely require it.
  • Loading branch information
kennyadsl committed Sep 16, 2019
commit aa42135ec2c09fdc5dc89aaab21e4e099b018b71
1 change: 1 addition & 0 deletions backend/lib/spree/backend.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
require 'autoprefixer-rails'
require 'jbuilder'
require 'kaminari'
require 'responders'

require 'spree_core'
require 'spree_api'
Expand Down
1 change: 1 addition & 0 deletions backend/solidus_backend.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Gem::Specification.new do |s|
s.add_dependency 'jbuilder', '~> 2.8'
s.add_dependency 'jquery-rails'
s.add_dependency 'kaminari', '~> 1.1'
s.add_dependency 'responders'
s.add_dependency 'sassc-rails'

s.add_dependency 'autoprefixer-rails'
Expand Down