https://solidus.io logo
#support
Title
# support
c

Chris Wilson

09/23/2022, 2:29 AM
In a fresh solidus install It is not making a default user of admin@example.com with a password of test123. , and I cannot login to the admin, although I found this hack
Copy code
user.spree_roles << Spree::Role.find_or_create_by(name: 'admin')
Ohh wait I tried this hack and I still cannot login to the backend admin
irb(main)0160> user = Spree::*User*.find_by(email: *'*admin@example.com*'*) Spree::User Load (0.5ms) SELECT "spree_users". FROM "spree_users" WHERE "spree_users"."deleted_at" IS NULL AND "spree_users"."email" = ? LIMIT ?* [["email", "admin@example.com"], ["LIMIT", 1]] => nil irb(main)0170> user.spree_roles << Spree::*Role*.find_or_create_by(name: *'*admin*'*) (irb)17in `<main>': undefined method `spree_roles' for nil:NilClass (NoMethodError) user.spree_roles << Spree::Role.find_or_create_by(name: 'admin')
I am trying to use the code listed Solidus custom authentication and trying to create a user in rails console to become admin
w

waiting_for_dev

09/23/2022, 4:10 AM
Hi @Chris Wilson, are you using solidus_auth_devise for the authentication?
e

elia

09/23/2022, 11:37 AM
@Chris Wilson the custom authentication generator needs some polishing, and I’m currently trying to fix it, what value did you use for
Spree.user_class
?
c

Chris Wilson

09/23/2022, 3:23 PM
@waiting_for_dev gem "solidus_auth_devise"
@elia Spree.user_class = "Spree::LegacyUser"
e

elia

09/23/2022, 3:29 PM
@Chris Wilson as far as I know if you want to roll your own authentication you shouldn’t use solidus_auth_devise at the same time, how did you setup the application? the simplest procedure is:
Copy code
gem install rails
rails new my_brand_new_store --skip-javascript
cd my_brand_new_store
bundle add solidus
bin/rails g solidus:install
c

Chris Wilson

09/23/2022, 3:48 PM
@elia I started a new solidus app with the exact instructions you get and tried to login admin @ example .com and password test123 and I cannot login
e

elia

09/23/2022, 3:49 PM
Ok, let me try locally
c

Chris Wilson

09/23/2022, 3:50 PM
thank you
e

elia

09/23/2022, 3:50 PM
did you go with the default answer for every interactive question?
c

Chris Wilson

09/23/2022, 3:52 PM
I used solidus_frontend_starter and, to use devise auth as my standard auth I did not press yes, it just went by automatically. I also did not get a prompt to set default admin during setup
Rails 7.0.4. ruby 3.1.2p20
e

elia

09/23/2022, 3:53 PM
🤔 there must be some difference, ok, I just tried with ruby 2.7:
Copy code
Solidus has been installed successfully. You're all ready to go!
 
Enjoy!
my_brand_new_store:master ⤑ bin/rails c                                                                                 /t/my_brand_new_store
/Users/elia/.asdf/installs/ruby/2.7.6/lib/ruby/2.7.0/net/protocol.rb:66: warning: already initialized constant Net::ProtocRetryError
/Users/elia/.asdf/installs/ruby/2.7.6/lib/ruby/gems/2.7.0/gems/net-protocol-0.1.3/lib/net/protocol.rb:68: warning: previous definition of ProtocRetryError was here
/Users/elia/.asdf/installs/ruby/2.7.6/lib/ruby/2.7.0/net/protocol.rb:206: warning: already initialized constant Net::BufferedIO::BUFSIZE
/Users/elia/.asdf/installs/ruby/2.7.6/lib/ruby/gems/2.7.0/gems/net-protocol-0.1.3/lib/net/protocol.rb:208: warning: previous definition of BUFSIZE was here
/Users/elia/.asdf/installs/ruby/2.7.6/lib/ruby/2.7.0/net/protocol.rb:503: warning: already initialized constant Net::NetPrivate::Socket
/Users/elia/.asdf/installs/ruby/2.7.6/lib/ruby/gems/2.7.0/gems/net-protocol-0.1.3/lib/net/protocol.rb:504: warning: previous definition of Socket was here
Loading development environment (Rails 7.0.4)
irb: warn: can't alias context from irb_context.
>> Spree::User.first
  Spree::User Load (0.2ms)  SELECT "spree_users".* FROM "spree_users" WHERE "spree_users"."deleted_at" IS NULL ORDER BY "spree_users"."id" ASC LIMIT ?  [["LIMIT", 1]]         
=> #<Spree::User id: 1, email: "admin@example.com", persistence_token: nil, perishable_token: nil, last_request_at: nil, login: "admin@example.com", ship_address_id: nil, bill_address_id: nil, created_at: "2022-09-23 15:51:13.706562000 +0000", updated_at: "2022-09-23 15:51:13.725575000 +0000", spree_api_key: [FILTERED], authentication_token: nil, deleted_at: nil>
>> Spree::User.first.spree_roles
  Spree::User Load (0.2ms)  SELECT "spree_users".* FROM "spree_users" WHERE "spree_users"."deleted_at" IS NULL ORDER BY "spree_users"."id" ASC LIMIT ?  [["LIMIT", 1]]                                                             
  Spree::Role Load (0.1ms)  SELECT "spree_roles".* FROM "spree_roles" INNER JOIN "spree_roles_users" ON "spree_roles"."id" = "spree_roles_users"."role_id" WHERE "spree_roles_users"."user_id" = ?  [["user_id", 1]]               
=>                                                                                    
[#<Spree::Role:0x0000000112c89188                                                     
  id: 1,                                                                              
  name: "admin",                                                                      
  created_at: Fri, 23 Sep 2022 15:51:12.115639000 UTC +00:00,                         
  updated_at: Fri, 23 Sep 2022 15:51:12.115639000 UTC +00:00>]                        
>>
retrying with 3.1 and
solidus:install --auto-accept
Looks good here, can you please retry to build it with this set of commands?
Copy code
gem install rails
rails new my_brand_new_store --skip-javascript
cd my_brand_new_store
bundle add solidus
bin/rails g solidus:install --auto-accept
c

Chris Wilson

09/23/2022, 4:01 PM
maybe next I try to install the devise_auth gem locally
I am getting error The git source https://github.com/twalpole/apparition.git is not yet checked out. Please run
bundle install
before trying to start your application
I am going to run bundle install, I cannot get to the rails console without running bundle install
e

elia

09/23/2022, 4:06 PM
Also if you can post the whole output that would be useful in understanding what’s wrong
the apparition gem is added by solidus_starter_frontend as
gem 'apparition', '~> 0.6.0', github: 'twalpole/apparition'
Copy code
my_brand_new_store:master ⤑ bundle info apparition         /t/my_brand_new_store
  * apparition (0.6.0 ca86be4)
	Summary: Chrome driver using CDP for Capybara
	Homepage: <https://github.com/twalpole/apparition>
	Path: /Users/elia/.asdf/installs/ruby/3.1.1/lib/ruby/gems/3.1.0/bundler/gems/apparition-ca86be4d54af
my_brand_new_store:master ⤑                                /t/my_brand_new_store
c

Chris Wilson

09/23/2022, 4:09 PM
chriss-air:my_brand_new_store chriswilson$ bin/rails g solidus:install --auto-accept create config/initializers/spree.rb Installing Active Storage rake active_storage:install Copied migration 20220923160305_create_active_storage_tables.active_storage.rb from active_storage append public/robots.txt exist app/assets/images create vendor/assets/javascripts/spree/backend create vendor/assets/stylesheets/spree/backend create vendor/assets/images/spree/backend create vendor/assets/javascripts/spree/backend/all.js create vendor/assets/stylesheets/spree/backend/all.css create app/overrides append db/seeds.rb copying migrations creating database rake db:create Created database 'db/development.sqlite3' Created database 'db/test.sqlite3' gemfile solidus_auth_devise run bundle install from "." Fetching gem metadata from https://rubygems.org/......... Resolving dependencies...... Using rake 13.0.6 Using concurrent-ruby 1.1.10 Using racc 1.6.0 Using builder 3.2.4 Using erubi 1.11.0 Using crass 1.0.6 Using websocket-extensions 0.1.5 Using rack 2.2.4 Using minitest 5.16.3 Using digest 3.1.0 Using marcel 1.0.2 Using mini_mime 1.1.2 Using nio4r 2.5.8 Using timeout 0.3.0 Using execjs 2.8.1 Using public_suffix 5.0.0 Using bindex 0.8.1 Using bundler 2.3.22 Using strscan 3.0.4 Using cancancan 3.4.0 Using msgpack 1.5.6 Using method_source 1.0.0 Using thor 1.2.1 Using bcrypt 3.1.18 Using zeitwerk 2.6.0 Using matrix 0.4.2 Using io-console 0.5.11 Using regexp_parser 2.5.0 Using rainbow 3.1.1 Using polyglot 0.3.5 Using ffi 1.15.5 Using orm_adapter 0.5.0 Using climate_control 0.2.0 Using childprocess 4.1.0 Using kaminari-core 1.2.2 Using tilt 2.0.11 Using omnes 0.2.2 Using mime-types-data 3.2022.0105 Using mini_magick 4.11.0 Using stringio 3.0.2 Using rexml 3.2.5 Using rubyzip 2.3.2 Using websocket 1.2.9 Using state_machines 0.5.0 Using truncate_html 0.9.3 Using solidus_support 0.9.1 Using sqlite3 1.5.0 (x86_64-darwin) Using i18n 1.12.0 Using tzinfo 2.0.5 Using nokogiri 1.13.8 (x86_64-darwin) Using rack-test 2.0.2 Using websocket-driver 0.7.5 Using warden 1.2.9 Using sprockets 4.1.1 Using mail 2.7.1 Using puma 5.6.5 Using net-protocol 0.1.3 Using autoprefixer-rails 10.4.7.0 Using addressable 2.8.1 Using bootsnap 1.13.0 Using sassc 2.4.0 Using ruby-vips 2.1.4 Using reline 0.3.1 Using terrapin 0.6.0 Using selenium-webdriver 4.4.0 Using psych 4.0.5 Using mime-types 3.4.1 Using money 6.16.0 Using activesupport 7.0.4 Using loofah 2.19.0 Using net-imap 0.2.3 Using handlebars_assets 0.23.9 Using xpath 3.2.0 Using irb 1.4.1 Using net-smtp 0.3.1 Using image_processing 1.12.2 Using net-pop 0.1.1 Using webdrivers 5.1.0 Using monetize 1.12.0 Using rails-dom-testing 2.0.3 Using globalid 1.0.0 Using activemodel 7.0.4 Using rails-html-sanitizer 1.4.3 Using capybara 3.37.1 Using activemerchant 1.126.0 Using activejob 7.0.4 Using debug 1.6.2 Using carmen 1.1.3 Using actionview 7.0.4 Using state_machines-activemodel 0.8.0 Using kt-paperclip 7.1.1 Using activerecord 7.0.4 Using actionpack 7.0.4 Using awesome_nested_set 3.5.0 Using jbuilder 2.11.5 Using acts_as_list 1.0.4 Using kaminari-actionview 1.2.2 Using discard 1.2.1 Using ransack 2.6.0 Using friendly_id 5.4.2 Using state_machines-activerecord 0.8.0 Using kaminari-activerecord 1.2.2 Using actioncable 7.0.4 Using activestorage 7.0.4 Using actionmailer 7.0.4 Using railties 7.0.4 Using sprockets-rails 3.4.2 Using kaminari 1.2.2 Using actionmailbox 7.0.4 Using actiontext 7.0.4 Using jquery-rails 4.5.0 Using font-awesome-rails 4.7.0.8 Using deface 1.9.0 Using responders 3.0.1 Using web-console 4.2.0 Using sassc-rails 2.1.2 Using solidus_core 3.2.2 Using rails 7.0.4 Using solidus_api 3.2.2 Using canonical-rails 0.2.14 Using solidus_backend 3.2.2 Using devise 4.8.1 Using solidus_sample 3.2.2 Using solidus_frontend 3.2.2 Using devise-encryptable 0.2.0 Using solidus 3.2.2 Using solidus_auth_devise 2.5.5
Bundle complete! 14 Gemfile dependencies, 127 gems now installed. Use
bundle info [gemname]
to see where a bundled gem is installed. generate solidusauthinstall --skip_migrations=true rails generate solidusauthinstall --skip_migrations=true create config/initializers/devise.rb run bundle exec rake railtiesinstallmigrations FROM=solidus_auth from "." Copied migration 20220923160348_create_users.solidus_auth.rb from solidus_auth Copied migration 20220923160349_rename_columns_for_devise.solidus_auth.rb from solidus_auth Copied migration 20220923160350_convert_user_remember_field.solidus_auth.rb from solidus_auth Copied migration 20220923160351_add_reset_password_sent_at_to_spree_users.solidus_auth.rb from solidus_auth Copied migration 20220923160352_make_users_email_index_unique.solidus_auth.rb from solidus_auth Copied migration 20220923160353_add_deleted_at_to_users.solidus_auth.rb from solidus_auth Copied migration 20220923160354_add_confirmable_to_users.solidus_auth.rb from solidus_auth Copied migration 20220923160355_add_reset_password_token_index_to_spree_users.solidus_auth.rb from solidus_auth Copied migration 20220923160356_add_unconfirmed_email_to_spree_users.solidus_auth.rb from solidus_auth break down solidus Fetching gem metadata from https://rubygems.org/......... Resolving dependencies...... Removing gems from /Users/chriswilson/my_brand_new_store/Gemfile solidus (~> 3.2) was removed. installing solidus_starter_frontend /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/git/git_proxy.rb224in `allowed_with_path': The git source https://github.com/twalpole/apparition.git is not yet checked out. Please run
bundle install
before trying to start your application (Bundler::GitError)
from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/git/git_proxy.rb190in `find_local_revision' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/git/git_proxy.rb62in `revision' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/git.rb234in `revision' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/git.rb103in `install_path' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/path.rb133in `expanded_path' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/path.rb174in `load_spec_files' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/git.rb211in `load_spec_files' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/path.rb107in `local_specs' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/git.rb178in `specs' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/rubygems_aggregate.rb35in `block (2 levels) in build_index' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/rubygems_aggregate.rb33in `each' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/rubygems_aggregate.rb33in `block in build_index' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/index.rb9in `build' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/rubygems_aggregate.rb30in `build_index' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/rubygems_aggregate.rb12in `initialize' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/definition.rb831in `new' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/definition.rb831in `source_requirements' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/definition.rb488in `resolver' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/definition.rb290in `resolve' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/definition.rb501in `materialize' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/definition.rb197in `specs' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/definition.rb254in `specs_for' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/runtime.rb18in `setup' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler.rb162in `setup' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/setup.rb20in `block in <top (required)>' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/ui/shell.rb136in `with_level' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/ui/shell.rb88in `silence' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/setup.rb20in `<top (required)>' from <internal/Users/chriswilson/.rubies/ruby 3.1.2/lib/ruby/3.1.0/rubygems/core ext/kernel require.rb&gt;85:in `require' from <internal/Users/chriswilson/.rubies/ruby 3.1.2/lib/ruby/3.1.0/rubygems/core ext/kernel require.rb&gt;85:in `require' /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/git/git_proxy.rb224in `allowed_with_path': The git source https://github.com/twalpole/apparition.git is not yet checked out. Please run
bundle install
before trying to start your application (Bundler::GitError)
from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/git/git_proxy.rb190in `find_local_revision' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/git/git_proxy.rb62in `revision' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/git.rb234in `revision' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/git.rb103in `install_path' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/path.rb133in `expanded_path' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/path.rb174in `load_spec_files' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/git.rb211in `load_spec_files' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/path.rb107in `local_specs' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/git.rb178in `specs' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/rubygems_aggregate.rb35in `block (2 levels) in build_index' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/rubygems_aggregate.rb33in `each' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/rubygems_aggregate.rb33in `block in build_index' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/index.rb9in `build' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/rubygems_aggregate.rb30in `build_index' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/source/rubygems_aggregate.rb12in `initialize' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/definition.rb831in `new' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/definition.rb831in `source_requirements' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/definition.rb488in `resolver' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/definition.rb290in `resolve' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/definition.rb501in `materialize' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/definition.rb197in `specs' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/definition.rb254in `specs_for' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/runtime.rb18in `setup' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler.rb162in `setup' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/setup.rb20in `block in <top (required)>' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/ui/shell.rb136in `with_level' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/ui/shell.rb88in `silence' from /Users/chriswilson/.gem/ruby/3.1.2/gems/bundler-2.3.22/lib/bundler/setup.rb20in `<top (required)>' from <internal/Users/chriswilson/.rubies/ruby 3.1.2/lib/ruby/3.1.0/rubygems/core ext/kernel require.rb&gt;85:in `require' from <internal/Users/chriswilson/.rubies/ruby 3.1.2/lib/ruby/3.1.0/rubygems/core ext/kernel require.rb&gt;85:in `require' running migrations rake db:migrate VERBOSE=false The git source https://github.com/twalpole/apparition.git is not yet checked out. Please run
bundle install
before trying to start your application loading seed data rake db:seed AUTO_ACCEPT=1 The git source https://github.com/twalpole/apparition.git is not yet checked out. Please run
bundle install
before trying to start your application loading sample data rake spree_sample:load The git source https://github.com/twalpole/apparition.git is not yet checked out. Please run
bundle install
before trying to start your application insert config/routes.rb ************************************************** We added the following line to your application's config/routes.rb file: mount Spree:Core:Engine, at: '/' ************************************************** Solidus has been installed successfully. You're all ready to go! Enjoy!
e

elia

09/23/2022, 4:13 PM
that’s very strange… and that is a brand new rails app right?
c

Chris Wilson

09/23/2022, 4:15 PM
brand new rails app, I followed the exact instructions you gave
Copy code
gem install rails
rails new my_brand_new_store --skip-javascript
cd my_brand_new_store
bundle add solidus
bin/rails g solidus:install --auto-accept
e

elia

09/23/2022, 4:16 PM
what’s the output of
bundle config list
?
c

Chris Wilson

09/23/2022, 4:17 PM
chriss-air:my_brand_new_store chriswilson$ bundle config list Settings are listed in order of priority. The top value will be used.
e

elia

09/23/2022, 4:18 PM
I’ll try in a clean docker container
@Chris Wilson not sure if you still have this issue, anyway I took the time to run it on docker just ti have a blank slate with no local configurations, the base image was created with this dockerfile:
Copy code
FROM ruby:3.1
RUN apt-get update && apt-get install -y nodejs
RUN gem update --system
RUN gem install bundler rails solidus
RUN rails new my_brand_new_store --skip-javascript
WORKDIR my_brand_new_store
RUN bundle add solidus
and the command ran with:
Copy code
docker run -it 3032005215d9d5dca97738a407be940ead81c7e007ed7f30aef9d2aa0b241078 bin/rails g solidus:install --auto-accept
I didn’t have encounter any error, so I suggest trying to update both ruby gems and bundler and see if anything changes