Hi,
In Gemfile, I specified :production group with the gems that are
needed in the production server.
When I executed "bundle exec rspec spec", it failed with an error
"Could not find gem ...".
Neither "bundle --help" nor online man page (
http://gembundler.com/man/
bundle-exec.1.html) doesn't give any hint.
So I tried to execute "bundle exec --without production rspec spec".
Then I got an error "bundler: command not found: --without".
Then I tried "bundle --without production exec rspec spec". Then it
just executed "bundle install --without production" and didn't execute
the rspec command at all.
How can I run "bundle exec" without requiring the gems specified
in :production group?
Thank you in advance.
Tadatoshi