You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have you ever thought about running the bundler from a project's root? Maybe by using locate-dominating-file or projectile.
I'm asking because now I work on a project which has something like that in Gemfile:
require'./lib/gemfile_helpers'
And I'm forces to run bundle from the root dir of the project.
The text was updated successfully, but these errors were encountered:
(defunasok/bundle--around (fun&restargs)
"Run FUN from the project root."
(projectile-with-default-dir (projectile-project-root)
(apply fun args)))
(advice-add'bundle-command:around#'asok/bundle--around)
But I think it could be useful for bundler.el to do this by its own.
Have you ever thought about running the bundler from a project's root? Maybe by using
locate-dominating-file
or projectile.I'm asking because now I work on a project which has something like that in Gemfile:
And I'm forces to run bundle from the root dir of the project.
The text was updated successfully, but these errors were encountered: