Tagged Questions
0
votes
2answers
31 views
ROR - rake assets:precompile fails with 'CoffeeScript is not defined'
Hi I'm new to Rails and I've just recently setup a production environment on Ubuntu 12.04 with RVM. If it matters, I've installed ruby in multi-user mode (rvm lives in /usr/local/rvm/bin/rvm).
I am ...
0
votes
1answer
71 views
Gemfile group dependencies
In a nutshell, I have a gemfile that contains
group :assets do
gem 'my_gem'
end
, a rake task my_rake_task that depends on :environment, a Rails initializer that needs my_gem, and the following ...
0
votes
0answers
85 views
Deploying Resque made Rake & Ruby sucking 100% of server's CPU
After deploying using Resque, CPU consumption increase 100% from Rake & Ruby without even doing anything, no requests, no background jobs or anything.
for deployment I just use require ...
0
votes
1answer
97 views
no such file to load — bundler/setup when capistrano deploy
What the problem is? Bundler installed on the remote machine. Here is the error:
0
votes
1answer
336 views
capistrano and assets:precompile not working due to rake versioning issue
I get the following error on a capistrano deploy:
If I run that commmand from the command line, I get the following:
You have already activated rake 0.9.2, but your Gemfile requires rake 10.0.3. ...
0
votes
0answers
106 views
What do the following errors relating to Capistrano mean from Rake and Generator in RubyMine?
I am new to ruby development and I am in the process of learning. I recently added the following gem's to my gem file for Capistrano but when Bundler runs I get the errors below.
Get available ...
2
votes
3answers
4k views
Could not find rake 10.0.3 in any of the sources, when working with Whenever and Capistrano
I'm trying to use the gem Whenever with Capistrano over my Rails app on 3.2.8, working with RVM and a gemset for that Rails version.
I'm getting the following error: Could not find rake-10.0.3 in any ...
5
votes
4answers
3k views
Could not find rake-10.0.3 in any of the sources
I successfully installed a Rails (3.2.10) app on an Ubuntu 12.04 server on Rackspace following Railscasts 335 deploying to a vps. Nginx, Unicorn, rbenv and Capistrano.
Then, when I try to install a ...
0
votes
2answers
765 views
rake version error when deploying with capistriano: cap shell differs from ssh
I'm deploying my new Rails application to my hosting (Dreamhost).
I'm using Capistrano for the deployment.
I'm runned
cap deploy
with no problems
When I've tried to run cap deploy:migrations I ...
0
votes
0answers
30 views
Complicated deployment with rake and capistrano
My project has a lot of rake tasks and a lot of capistrano tasks. Right now it's kind of a mess - when developer wanted something done, even when it's some local file generation he just picks tool ...
0
votes
1answer
110 views
Error with Rake asset:precompile
I'm trying to deploy my app on a server with Capistrano.
I ran the deploy:setup, and deploy:check with success.
Some of the task of deploy:update passed with success, but the deploy:asset:precompile ...
-1
votes
2answers
108 views
Capistrano deployment issue
I'm trying to get a Capistrano deployment script working, in my deploy file i have the following...
set :application, "example.com"
role :app, "root@12.34.56.789"
role :web, "root@12.34.56.789"
role ...
0
votes
0answers
56 views
What is the best way to share capistrano and rake tasks?
I have a set of tasks I reuse in all my {rake,cap}-based project and I would like to put them in a common library hosted in its own git repository.
I'm looking for the best way to organize my code ...
0
votes
0answers
117 views
cap deploy - rake aborted! - rolling back
After cap deploy task is not completed. I am not sure where else to look for fix.
Status from terminal is below:
** [out :: ...] /usr/local/rvm/rubies/ruby-1.9.2-p290/bin/ruby ...
0
votes
1answer
506 views
'sh: rake: not found' error when deploying with Capistrano
When trying to execute the command cap deploy from a Windows machine, I'm getting this error coming back from the VPS:
sh: rake: not found
If I SSH into the server itself, I can easily run rake ...
1
vote
1answer
414 views
Rake fails with Capistrano deployment
I am deploying to Ubuntu with Capistrano.
I have God + Resque set up for background process.
App runs fine and Resque workers are going to their queues, but are stuck there. When I looked into ...
1
vote
2answers
430 views
Capistrano complains about missing 'eventmachine' on asset precompile
I'm trying to deploy to a VPS following Ryan Bates screencast.
I'm using thin as webserver opposed to unicorn and its giving me loads of headaches...
When it tries to compile the assets on the server ...
0
votes
3answers
114 views
capistrano command works on server, but not locally
I'm getting this error when running this capistrano task (my own - cap deploy:show_pointers):
* executing `deploy:show_pointers'
* executing "cd ...
0
votes
3answers
640 views
Rails 3.2.3 wants sqlite3 gem on mysql production env
I have a Rails 3.2.3 application which gets deployed with Capistrano. Until now, this workflow worked perfectly for several months now. But since the last deployment of the latest changes, the rake ...
0
votes
2answers
767 views
rake db:migrate RAILS_ENV=development
Why we get an error on the command rake db:migrate
Rails Error: Unable to access log file. Please ensure that /home/mahaloo/mahaloo/releases/20120329200051/log/development.log exists and is chmod ...
0
votes
3answers
984 views
“Gem bundler is not installed” in Capistrano deployment - Error message UPDATED
Here is the error caused by rake in Capistrano deployment. The error also causes the rollback and failure of the rails 3.1.3 deployment (with rvm for single user installed).
** [out :: ...
1
vote
1answer
2k views
Run remote rake task from capistrano, cap deploy bash: -c: line 1: syntax error: unexpected end of file
I followed the answer from @Coward in this topic: How do I run a rake task from Capistrano?
to add a customizing task rake:invoke in my deploy.rb to be able to invoke rake tasks remotely.
It works ...
3
votes
2answers
1k views
Rack error on server with each cap:deploy
Each time i run on my local machine cap:deploy i get next error when i open my web-page:
Ruby (Rack) application could not be started
Error message:
git://github.com/ctran/annotate_models.git (at ...
2
votes
3answers
2k views
Rails 3.1: Couldn't find rake
I try run via Capistrano my app. Also i use:
Ubuntu 10.04.1 LTS
Phusion Passenger
PostgreSQL 9
Nginx
Rails 3.1.3
Ruby 1.9.3
After i did
cap deploy:update
It creates folders and etc.
Then ...
0
votes
1answer
244 views
rake db:migrate aborted! on US-ASCII using rake 0.9.2.2 and rails 3.0.10
Recently I upgraded my gems and started adding new stuff to my app like authentication by third party social websites using omniauth gem. On development environment everything is fine and works like a ...
0
votes
1answer
456 views
Capistrano can't run rake
I am trying to run Capistrano and it can't run rake on my server. When I try to run cap deploy I get the following errors:
*** [err :: ] /usr/lib/ruby/1.8/rubygems.rb:779:in `report_activate_error': ...
1
vote
1answer
503 views
Rake cannot find gems in vendor/gems
I'm trying to publish a Rails 3.1 (upgraded from 3.0) application. After submitting the code I ran
bundle install --path vendor/gems RAILS_ENV=production
It worked. I've got a directory ...
5
votes
2answers
2k views
How can I run rake with --trace within capistrano?
I want capistrano to invoke rake with --trace so I can figure out why it's failing. How do I do this? set :rake 'rake --trace' doesn't work.
0
votes
1answer
518 views
installing Webistrano RAILS_ENV=production rake db:migrate fails on Mac OS 10.6.8
I've been trying to install Webistrano. I have installed all the dependencies required for it, including Capistrano, as described on the github wiki: ...
0
votes
1answer
928 views
Capistrano + RVM + Rake task
I have a project which
uses rvm ruby 1.9.2 (set in .rvmrc in project dir).
deploying with capistrano.
has a rake task I want to run remotely from my local machine by capistrano.
I've created a ...
0
votes
1answer
142 views
Capistrana will it be useful for executing remote rake task
I want to execute some rake task from remote machine.
Would Capistrano be useful for this case.
Here i am not going to do any deployment, so there will not be any code update.
I wish to send some ...
1
vote
1answer
440 views
rake is broken after setting up capistrano and deprec
Problem solved.
Deprec is not related to the application. Its function is to prepare the server to accept the application. Removing deprec from my gemfile solved this problem.
I can't answer my ...
1
vote
1answer
186 views
Capistrano error with successfully copied files
I'm using Capistrano to deploy an application that uses the theme_support plugin, and I added a method in my deployment recipe to automatically generate the theme cache during a deploy. When I deploy ...
2
votes
2answers
1k views
How do I use transactions within custom capistrano tasks?
I'm writing a custom capistrano task to minify my javascripts and want to handle the case where the minification fails by rolling back the deploy.
I've been through the documentation and thought I'd ...
1
vote
2answers
1k views
Why is Rails looking for SQLite3 on my production server?
My database.yml looks something like this:
# SQLite version 3.x
# gem install sqlite3-ruby (not necessary on OS X Leopard)
development:
adapter: sqlite3
database: db/development.sqlite3
pool: ...
1
vote
1answer
596 views
passing configure options to rake gems:build
On the server (where I am not root), I have compiled libxslt into /home/foo/sw.
So I can install my gem like so:
gem install nokogiri -- --with-xslt-dir=/home/foo/sw
However, this same technique ...
1
vote
1answer
88 views
Deploying rake task to server
I have a couple simple rake tasks hosted at github that I would like to push to a remote server. It's essentially just a directory with a few classes and a Rakefile. What would be the best and/or ...
1
vote
1answer
376 views
Use Capistrano for Rake tasks?
Is Capistrano only used for deploying Rails apps?
Basically I want a scripting framework to handle all server/client scripting for me.
Examples:
Updating Ubuntu, installing gems with dependencies ...
3
votes
2answers
9k views
Running migration on server when deploying with capistrano
I'm trying to deploy my rails application with capistrano, but I'm having some trouble running my migrations. In my development environment I just use sqlite as my database, but on my production ...
4
votes
2answers
366 views
Distribute CouchDB as part of a Rails app?
I am working on a Rails project and the Architect has asked me to investigate bundling CouchDB into to application so that it can be deployed by Capistrano across multiple platforms and managed by ...
0
votes
2answers
483 views
convert rails plugin with rake tasks and capistrano recipes into gem
I want to convert rails plugin into gem.
Is there any way to make gem to auto add rake tasks and capistrano recipes when mentioned in environment.rb using config.gem command?
0
votes
1answer
644 views
Rakefile not getting deployed with capistrano
I am getting this error when deploying with capistrano:
executing "cd /opt/my_app/dev/releases/20100103021722; rake RAILS_ENV=staging db:migrate"
servers: ["96.30.33.84"]
[96.30.33.84] ...
13
votes
4answers
8k views
db:schema:load vs db:migrate with capistrano
I have a rails app that I'm moving to another server and I figure I should use db:schema:load to create the mysql database because it's recommended. My problem is that I'm using capistrano to deploy ...
1
vote
3answers
641 views
CruiseControl.rb: running cruise rake task with current revision as parameter
when CruiseControl.rb wants to perform an integration test it looks for a rake task called "cruise" within the project and executes it.
Is there a way to hand over the current revision number to ...
9
votes
2answers
2k views
How is Capistrano related to Rake?
I'm starting to read up on Capistrano after using Rake tasks to deploy apps for a long time. It's really striking how similar it is to Rake. A lot of parallel commands (like cap -T) and a lot of ...
3
votes
2answers
2k views
Is there a better way to run a capistrano task from within rake?
I have a set of rake tasks where I need to invoke capistrano at some point. Edwin Goei's blog suggests shelling out to capistrano via "sh".
Is there a simpler way? It would seem you should be able ...
3
votes
2answers
406 views
Can I interact with Rails models within a Capistrano task?
I often used Rake tasks that are dependent upon the Rails environment task having loaded. I then interact with Rails Models within the Rake tasks. Can I do this in Capistrano?
42
votes
10answers
18k views
How do I run a rake task from Capistrano?
I already have a deploy.rb that can deploy my app on my production server.
My app contains a custom rake task (a .rake file in the lib/tasks directory).
I'd like to create a cap task that will ...

