This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jruby -S bundle exec spork |
It tells me that it cannot find command because the spork gem is not installed. But I already installed it under vendor/gems.
To bypass that, please do:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jruby -S bundle install --path vendor/gems --binstubs |
This will install binaries of gems under RAILS_ROOT/bin.
And you can run:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jruby -S bin/spork |