Module: Jets::Bundle
Overview
Named Bundle vs Bundler to avoid having to fully qualify ::Bundler
Instance Method Summary collapse
- #bundler_groups ⇒ Object
- #gemfile? ⇒ Boolean
- #handle_error(e) ⇒ Object
- #jets_project? ⇒ Boolean
-
#require ⇒ Object
Bundler.require called when environment boots up via Jets.boot.
-
#setup ⇒ Object
Looks like for zeitwerk module autovivification to work ‘bundle exec` must be called.
Instance Method Details
#bundler_groups ⇒ Object
73 74 75 |
# File 'lib/jets/bundle.rb', line 73 def bundler_groups [:default, Jets.env.to_sym] end |
#gemfile? ⇒ Boolean
69 70 71 |
# File 'lib/jets/bundle.rb', line 69 def gemfile? ENV["BUNDLE_GEMFILE"] || File.exist?("Gemfile") end |
#handle_error(e) ⇒ Object
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/jets/bundle.rb', line 48 def handle_error(e) puts e. puts <<~EOL.color(:yellow) WARNING: Unable to require "bundler/setup" There may be something funny with your ruby and bundler setup. You can try upgrading bundler and rubygems: gem install --default bundler gem update --system bundle update --bundler Here are some links that may be helpful: * https://bundler.io/blog/2019/01/03/announcing-bundler-2.html * https://community.boltops.com/t/jets-1-9-8-issue-cannot-load-such-file-bundler-setup-loaderror/185/2 * https://community.boltops.com/t/could-not-find-timeout-0-3-1-in-any-of-the-sources/996 Also, running bundle exec in front of your command may remove this message. EOL end |
#jets_project? ⇒ Boolean
77 78 79 |
# File 'lib/jets/bundle.rb', line 77 def jets_project? File.exist?("config/jets") end |
#require ⇒ Object
Bundler.require called when environment boots up via Jets.boot. This will eagerly require all gems in the Gemfile. This means the user will not have to explictly require dependencies.
It also useful for when to loading Rake tasks in Jets::Thor::RakeTasks.load! For example, some gems like webpacker that load rake tasks are specified with a git based source:
gem "webpacker", git: "https://github.com/tongueroo/webpacker.git"
This results in the user having to specific bundle exec in front of jets for those rake tasks to show up in jets help. Instead, when the user is within the project folder, jets automatically requires bundler for the user. So the rake tasks show up when calling jets help.
When the user calls jets help from outside the project folder, bundler is not used and the load errors get rescued gracefully. This is done in Jets::Thor::RakeTasks.load! In the case when user is in another project with another Gemfile, the load errors will also be rescued.
39 40 41 42 43 44 45 46 |
# File 'lib/jets/bundle.rb', line 39 def require return unless jets_project? return unless gemfile? Kernel.require "bundler/setup" Bundler.require(*bundler_groups) rescue LoadError => e handle_error(e) end |
#setup ⇒ Object
Looks like for zeitwerk module autovivification to work ‘bundle exec` must be called. This allows zeitwork module autovivification to work even if the user has not called jets with `bundle exec jets`. Bundler.setup is essentially the same as `bundle exec` Reference: www.justinweiss.com/articles/what-are-the-differences-between-irb/
The Bundler.setup is only necessary because we use Bundler.require after require “zeitwerk” is called.
Note, this is called super early right before require “zeitwerk” The initially Bundler.setup does not include the Jets.env group. Later in Jets::Core::Booter, Bundle.require is called and includes the Jets.env group.
15 16 17 18 19 20 21 22 |
# File 'lib/jets/bundle.rb', line 15 def setup return unless jets_project? return unless gemfile? Kernel.require "bundler/setup" Bundler.setup # Same as Bundler.setup(:default) rescue LoadError => e handle_error(e) end |