cap deploy: could not find capistrano
up vote
0
down vote
favorite
Capistrano was bulletproof when I last used it.
However, it's been a few weeks since I last used it and I'm now getting errors like this:
cap deploy
/Users/snowcrash/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/site_ruby/2.0.0/rubygems/dependency.rb:296:in `to_specs': Could not find 'capistrano' (>= 0) among 8 total gem(s) (Gem::LoadError)
Any idea why?
ruby rubygems capistrano
add a comment |
up vote
0
down vote
favorite
Capistrano was bulletproof when I last used it.
However, it's been a few weeks since I last used it and I'm now getting errors like this:
cap deploy
/Users/snowcrash/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/site_ruby/2.0.0/rubygems/dependency.rb:296:in `to_specs': Could not find 'capistrano' (>= 0) among 8 total gem(s) (Gem::LoadError)
Any idea why?
ruby rubygems capistrano
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Capistrano was bulletproof when I last used it.
However, it's been a few weeks since I last used it and I'm now getting errors like this:
cap deploy
/Users/snowcrash/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/site_ruby/2.0.0/rubygems/dependency.rb:296:in `to_specs': Could not find 'capistrano' (>= 0) among 8 total gem(s) (Gem::LoadError)
Any idea why?
ruby rubygems capistrano
Capistrano was bulletproof when I last used it.
However, it's been a few weeks since I last used it and I'm now getting errors like this:
cap deploy
/Users/snowcrash/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/site_ruby/2.0.0/rubygems/dependency.rb:296:in `to_specs': Could not find 'capistrano' (>= 0) among 8 total gem(s) (Gem::LoadError)
Any idea why?
ruby rubygems capistrano
ruby rubygems capistrano
asked Aug 26 '13 at 21:01
Snowcrash
36.8k39131210
36.8k39131210
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
up vote
0
down vote
You can start by making sure it exists
gem list
It could be you emptied the gemset or this is a new gemset (I see you're using RVM).
You may also have had it in the bundle
bundle list
and just need to put it (back?) in your bundle.
add a comment |
up vote
0
down vote
Sometimes rvm doesn't work correctly. You can try setting it to default
rvm use ruby-2.0.0-p195 --default
bundle install
add a comment |
up vote
0
down vote
You can check if Capistrano is installed by running the list command
gem list
If you do not see it in the list, you may simply install it
gem install capistrano
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You can start by making sure it exists
gem list
It could be you emptied the gemset or this is a new gemset (I see you're using RVM).
You may also have had it in the bundle
bundle list
and just need to put it (back?) in your bundle.
add a comment |
up vote
0
down vote
You can start by making sure it exists
gem list
It could be you emptied the gemset or this is a new gemset (I see you're using RVM).
You may also have had it in the bundle
bundle list
and just need to put it (back?) in your bundle.
add a comment |
up vote
0
down vote
up vote
0
down vote
You can start by making sure it exists
gem list
It could be you emptied the gemset or this is a new gemset (I see you're using RVM).
You may also have had it in the bundle
bundle list
and just need to put it (back?) in your bundle.
You can start by making sure it exists
gem list
It could be you emptied the gemset or this is a new gemset (I see you're using RVM).
You may also have had it in the bundle
bundle list
and just need to put it (back?) in your bundle.
answered Aug 26 '13 at 21:08
John Paul Ashenfelter
2,14911527
2,14911527
add a comment |
add a comment |
up vote
0
down vote
Sometimes rvm doesn't work correctly. You can try setting it to default
rvm use ruby-2.0.0-p195 --default
bundle install
add a comment |
up vote
0
down vote
Sometimes rvm doesn't work correctly. You can try setting it to default
rvm use ruby-2.0.0-p195 --default
bundle install
add a comment |
up vote
0
down vote
up vote
0
down vote
Sometimes rvm doesn't work correctly. You can try setting it to default
rvm use ruby-2.0.0-p195 --default
bundle install
Sometimes rvm doesn't work correctly. You can try setting it to default
rvm use ruby-2.0.0-p195 --default
bundle install
answered Aug 27 '13 at 15:21
chawarong
8891716
8891716
add a comment |
add a comment |
up vote
0
down vote
You can check if Capistrano is installed by running the list command
gem list
If you do not see it in the list, you may simply install it
gem install capistrano
add a comment |
up vote
0
down vote
You can check if Capistrano is installed by running the list command
gem list
If you do not see it in the list, you may simply install it
gem install capistrano
add a comment |
up vote
0
down vote
up vote
0
down vote
You can check if Capistrano is installed by running the list command
gem list
If you do not see it in the list, you may simply install it
gem install capistrano
You can check if Capistrano is installed by running the list command
gem list
If you do not see it in the list, you may simply install it
gem install capistrano
answered Nov 8 at 22:22
Alkarin
105112
105112
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f18452947%2fcap-deploy-could-not-find-capistrano%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown