When I try to git clone and bin/setup I end up with this error:
✗ ./bin/setup
== Installing dependencies ==
[!] There was an error parsing `Gemfile`:
[!] There was an error parsing `Gemfile`: No such file or directory @ rb_sysopen - /Users/etagwerker/Projects/fastruby/railsbump/common-gems/rails/Gemfile. Bundler cannot continue.
. Bundler cannot continue.
# from /Users/etagwerker/Projects/fastruby/railsbump/Gemfile:22
# -------------------------------------------
# ).each do |m|
> eval_gemfile File.join('common-gems', m, 'Gemfile')
# end
# -------------------------------------------
[!] There was an error parsing `Gemfile`:
[!] There was an error parsing `Gemfile`: No such file or directory @ rb_sysopen - /Users/etagwerker/Projects/fastruby/railsbump/common-gems/rails/Gemfile. Bundler cannot continue.
. Bundler cannot continue.
# from /Users/etagwerker/Projects/fastruby/railsbump/Gemfile:22
# -------------------------------------------
# ).each do |m|
> eval_gemfile File.join('common-gems', m, 'Gemfile')
# end
# -------------------------------------------
== Command ["bundle install"] failed ==
Hi folks,
When I try to git clone and bin/setup I end up with this error:
Steps to reproduce
Potential Solution
I believe that this is happening because we are missing
git submodule
steps inbin/setup
It would be great if we initialized and fetched modules before trying to
bundle install
😄