简体   繁体   中英

“bundle exec rake” doesn't honor “without”

On a GitLab installation from source, I'm having problems running binaries such as rake . I've never seen similar problems with my own Ruby or Rails projects:

# bundle config
Set for your local app (/mnt/data/www/gitlab.bitcetera.com/source/gitlab/.bundle/config): "1"

path
Set for your local app (/mnt/data/www/gitlab.bitcetera.com/source/gitlab/.bundle/config): "vendor/bundle"

without
Set for your local app (/mnt/data/www/gitlab.bitcetera.com/source/gitlab/.bundle/config): "development:test:unicorn:mysql:kerberos:metrics"

disable_shared_gems
Set for your local app (/mnt/data/www/gitlab.bitcetera.com/source/gitlab/.bundle/config): "true"

# bundle install --deployment --without development test unicorn mysql kerberos metrics
# bundle config
The Gemfile's dependencies are satisfied

# bundle exec rake --tasks
rake aborted!
LoadError: cannot load such file -- haml_lint/rake_task

Looking at the relevant section of the Gemfile :

group :development, :test do
  [...]
  gem 'haml_lint', '~> 0.21.0', require: false
  [...]
end

Of course the haml_lint gem is missing, after all, it's in the "development" and "test" groups only which I've excluded by "without".

Any idea what's going on here?

弄清楚,有点愚蠢的原因:RAILS_ENV应该已经自动设置但它当然不是因为事情出错了。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM