I have lines like this in a gemfile:
group :test do ... gem 'cucumber', :git => "git://github.com/aslakhellesoy/cucumber.git" ... end
When I try to deploy to the server using bundle install --deployment --quiet --without development test , I get an error message:
sh: git: command not found ** An error has occurred in git when running `git clone "git://github.com/aslakhellesoy/cucumber.git" "/home/test/rails_apps/test_app/shared/bundle/ruby/1.8/cache/bundler/git/cucumber-3eb3f1a09813a1271fada66aac31d953ef2ad625" --bare --no-hardlinks. Cannot complete bundling.
I do not have a git executable on the server. But I do not want to use git, because the cucumber is in: a test group, and I am doing a bunch with "--without test"!
What should I do?
source share