Tagged Questions
0
votes
0answers
8 views
Why does my :git gem dependency bomb out 20% on heroku rake tasks?
About 20% of the time my (heroku) rake task bombs out with exception below. Does rake not load my dependencies right away? I am including a 'models' gem into my admin project:
Gemfile:
gem ...
1
vote
1answer
26 views
newrelic_rpm: undefined method `before_save' for #<Class:0x00000004a28b28>
Since I've updated newrelic_rpm gem from 3.5.8.72 to 3.6.1.88 on my Heroku app I've noticed newrelic is loading on my rake task giving me strange errors:
rake aborted!
undefined method `before_save' ...
11
votes
5answers
270 views
How to integrate a standalone python script into a Rails application?
I've got a program that has a small file structure going on and is then ran using
python do_work.py foo bar
I want my rails users to press a button and have this happen for them, with the result ...
0
votes
1answer
50 views
rake assets:precompile Connection Refused EC2
So all of a sudden, when I attempt to execute rake assets:precompile, it has stopped working.
$ RAILS_ENV=production rake assets:precompile --trace
$ RAILS_ENV=production rake assets:precompile ...
1
vote
0answers
140 views
Heroku: Error R99 (Platform error) when running `heroku run rake db:migrate`
I am running a Heroku app under multiple environments as described here. I am able to run under my original single environment fine, but when I push to one of the others and run heroku run rake ...
3
votes
1answer
56 views
Ruby on Rails deleted migrations still running on Heroku
So at one point in the development process I added a migration to add a column to my users table. This column added a "dollars" attribute. After that I decided to remove the "dollars" attribute by ...
0
votes
1answer
42 views
Heroku Scheduler.rake set up
Following the Railscasts am trying to set up a scheduled rake task to send an email to an administrator user:
desc 'Testing rake task to generate email'
task :overtime_report => :environment do
...
0
votes
1answer
103 views
Heroku run rake db:migrate results in no change in the database, app restarted several times
I have a problem with pushing my migrations to the production database.
The issue:
I've altered database schema by adding 1 column.
I've migrated it to the production database:
MacBook-Air-Mac:app ...
0
votes
0answers
18 views
Heroku scheduled rake task taks way too long
I have a rake task where I'm cycling through a lot of data to pre-populate a Memcached once a day so that my web site is much faster and only hits Memcached on the vast majority of web hits.
When i ...
0
votes
1answer
64 views
Can you control which Rake tasks Heroku runs on a git push?
The question is, what defines what Rake tasks will be automatically run on a deploy?
I'm new to RoR and I'm confused as to whether this would be one of those magical Rails things where you can define ...
1
vote
1answer
74 views
Heroku Rake Task Does Not Understand Rand Method
I have a rake task I created and inside it I have the line
number = rand(1..10)
When I run this on my development machine everything is ok, however, when I run it on Heroku I'm returned an error
...
0
votes
2answers
363 views
Jobs with Resque gives “Don't know how to build task 'jobs:work'” on Heroku
I followed the tutorial at https://devcenter.heroku.com/articles/queuing-ruby-resque to queue and run background jobs in a Rails app. After queueing the jobs, it doesn't seem to run any of the jobs ...
0
votes
1answer
65 views
heroku getting server errors - where can I find them in the log?
Ruby on Rails app called 'product9'
For one particular page for a new feature I am getting
We're sorry, but something went wrong.
I use
heroku logs --app product9 -n200
to look at the logs but ...
0
votes
1answer
96 views
Heroku toolbelt not working with rake tasks
I have switched to using heroku toolbelt without issue on the command line. However, my rake tasks now fail:
=> Running "heroku run rake --trace db:migrate --app MYAPPNAME"
...
1
vote
1answer
156 views
Heroku run rake db:seed Couldn't drop database error
Rails app that seeds fine locally won't seed on Heroku.
It will do a successful heroku pg:reset HEROKU_POSTGRESQL_BLACK_URL
It will do a successful heroku run db:migrate
It will do a successful ...
0
votes
2answers
184 views
Heroku scheduler “Don't know how to build task 'update_lines'”
I have an app running on Heroku. I want to use the Scheduler add-on. I have followed instructions at https://devcenter.heroku.com/articles/scheduler to no avail.
I have the following in ...
1
vote
1answer
110 views
Intermittent PostgreSQL error: missing FROM-clause
I have a Rails app running on Heroku which intermittently throws Postgres 'missing FROM-clause' errors from UPDATEs executed by a Rake task.
An example UPDATE statement is:
UPDATE ...
0
votes
1answer
115 views
Updating rake gem to 10.0.3 outputs errors when pushing to Heroku?
In my Rails app, I just updated the rake gem from 0.9.2.2. to 10.0.3, and rack from 1.4.1 to 1.4.3.
Prior to updating the gems, when I did a git push to Heroku my output would just look like this:
...
1
vote
2answers
179 views
Heroku rake tasks failing for Sinatra app with string arguments
I've just deployed a Sinatra app to heroku and the app contains two rake tasks:
task :create_db , [:db_id , :db_name]
task :destroy_db , [:db_id, :token]
When I run
heroku run rake -T
in the ...
0
votes
1answer
545 views
Rake aborted! Don't know how to build task 'deploy'
I am trying to deploy changes to my staging server (on heroku) and I keep on getting the following error message:
Matthews-MacBook-Air-2:iGiveMore WorkWell$ rake deploy staging --trace
rake ...
5
votes
1answer
57 views
What is an “Implicit Database Sequence”?
I pushed a Ruby on Rails test application up to Heroku and, after running the command heroku run rake db:migrate, received a notification that says:
NOTICE: CREATE TABLE will create implicit ...
1
vote
1answer
31 views
Temporarily disabling Heroku accounts plugin
I have searched for a difinitive answer, but can't find one anywhere.
I created an SSH key for my app under one heroku account. It places the SSH in the default place. Everything was great, until I ...
0
votes
1answer
35 views
Heroku Cedar rake version
What version of Rake does Heroku Cedar use?
My gemfile is at version 10.0.2 which the deployment code confirms is bundling on Heroku:
Installing rake (10.0.2)
But the app won't start, and running ...
0
votes
3answers
201 views
uninitialized constant ModelObserver - Rake task on Heroku
Rake task performs ActiveRecord model operations. I added ActiveRecord::Base in the rake task and that works locally, but not on Heroku resulting in this error:
uninitialized constant ...
0
votes
0answers
264 views
How do I use the Clockwork Rails scheduler Gem?
I'm having problems with the syntax for the Clockwork scheduler process. I'm actually having similar issues to what is discussed in this thread but never fully answered(How do I use Rails clockwork ...
1
vote
0answers
35 views
The deprecated Rake API on Heroku
"heroku rake" access will be turned of on October 29.
And they say in their final notice email that:
To ensure you're able to continue running Rake commands against your app, please install the ...
0
votes
2answers
298 views
Can Push to Heroku But Can't Run Migration
I can push a Rails app to Heroku with ...
git push heroku
but when I try to migrate with ...
heroku run rake db:migrate
I get ...
Running rake db:migrate attached to terminal... ...
0
votes
1answer
65 views
Any heroku/rails approach to prevent accident db data destruction?
I am at a point where I have multiple production heroku apps and several more in development.
For the apps in active development, i often run commands like heroku run rake db:setup, rake db:seed to ...
0
votes
1answer
104 views
Heroku / Rake overwriting RAILS_ENV [duplicate]
Possible Duplicate:
Heroku automatically changing RAILS_ENV and RACK_ENV variables to “production” on every deploy
I am currently trying to write a Rake script that will run the ...
0
votes
4answers
447 views
Heroku - doesn't work “rake” command: PG::Error: ERROR: relation “roles” does not exist
When I run heroku run rake db:migrate, I'll get this error:
rake aborted!
PG::Error: ERROR: relation "roles" does not exist
LINE 4: WHERE a.attrelid = '"roles"'::regclass
...
1
vote
0answers
69 views
RestClient and ENV troubles with Heroku
I have an app on Heroku. Locally I am using Foreman and have a .ENV file for storing config vars. For this example let's say my API key is 123456789 and my Heroku app name is acme
The following rake ...
0
votes
2answers
72 views
heroku run rake db:migrate works correctly when typed into console, but not when run via a rake task
I have the following task:
task :migrate_test => :environment do
puts 'Running database migrations ...'
puts `heroku run rake db:migrate --app my-app`
end
When I run heroku run rake ...
0
votes
1answer
645 views
Heroku run rake db.migrate / Error: A connection attempt failed
I am experiencing problems with the "heroku run rake db:migrate" command.
It complains about an " ! Heroku client internal error", see below for the entire thing. Git push and heroku create work ...
1
vote
1answer
240 views
Heroku Scheduler rake task aborts
I'm pretty new to Rails and for the first time, I want to use Heroku Scheduler to run periodical tasks in my rails application. As advised in the Tutorial, I created the following rake tasks in ...
0
votes
1answer
145 views
Heroku rake db:migrate aborted
I have an app which is working fine in development, but when I pushed it to heroku and tried to run "heroku run rake db:migrate", the rake aborted with the following message:
rake aborted!
PG::Error: ...
0
votes
0answers
53 views
Heroku Deploy: Unable to load Rake Tasks for CI Server
I'm hosting one of my web apps on Heroku. When I deploy using git by running git push heroku master I get this in the log:
Your bundle is complete! It was installed into ./vendor/bundle
...
0
votes
1answer
94 views
Why isn't task scheduler working but running rake manually working
I have an app running on heroku and once an hour I need to run a rake task called get_instagram_photos. I am scraping instagram and then adding the info to the database. If I run the following ...
6
votes
1answer
486 views
Error when doing rake db:migrate on Heroku
when doing
heroku run rake db:migrate
all migrations are performed and then, at the end I always get following message:
/app/vendor/bundle/ruby/1.9.1/bin/rake: No such file or directory - pg_dump ...
0
votes
2answers
144 views
Combining rake tasks for rails/heroku not working
I've seen from this (http://stackoverflow.com/questions/1890709/combining-many-rake-tasks-into-one-rake-task) that you can combine rake tasks like this:
desc 'This rebuilds development db'
task ...
0
votes
0answers
85 views
clear heroku rake pending migrations
I'm learning rails and working on a fun project with a MySQL database that was configured directly not through migrations. There are several migrations listed as outstanding when i run heroku run rake ...
0
votes
2answers
425 views
Send mail via rake task : Missing host to link to
I know this has been seen many times, but I don't get what I do wrong. I'm trying to send mails via a rake task, and I got this error
Missing host to link to! Please provide the :host parameter, ...
0
votes
0answers
61 views
creating rake file for existing mysql db - pushing to heroku
I have a rails app that i intend to push to heroku. But i did not build the database using the standard Rake command. I just used a mysql admin tool to create the DB structure and accessed it from my ...
3
votes
1answer
83 views
Is it safe to store passwords in a rake task?
I'm using this gem to access google docs in my app.
https://github.com/gimite/google-drive-ruby
I login to my google account like this -
session = GoogleDrive.login("username@gmail.com", ...
2
votes
4answers
472 views
Rails Background Process (Heroku Rails 3+)
I'm am going to set up some functionality for my app that is Rails 3.2.3 and on Heroku. The idea is to have a task, or job (or whatever you want to call it) run every day, to make sure user ...
1
vote
1answer
105 views
Replacement for Heroku Scheduler
Heroku's Scheduler is great. For tasks running daily, hourly or at 10 minute intervals I think it's excellent and simple.
I have a (very fast running) process I want to run every 10 seconds. I have ...
0
votes
0answers
243 views
Rake Task to Restart Heroku Server
I'm trying to create a rake task that restarts my heroku servier. I've found this post, which has helped immensely: http://railspikes.com/2010/2/13/rake-task-for-deploying-to-heroku.
I've cobbled ...
0
votes
1answer
17 views
heroku Rake db:migrate fails - undefined method `pushconfig'
I get the error message below. Any suggestions?
undefined method `pushconfig' for #<FirstApp::Application:0x000000027bb658>
0
votes
1answer
1k views
rake aborts, don't know how to build task 'jobs:work'
I'm trying to get going on my first Ruby (v1.9.3p194) project. I'm hosting on Heroku, and using Sinatra along with ActiveRecord. I'm trying to integrate delayed_job into my project, and running into ...
2
votes
1answer
1k views
How do I use Rails clockwork gem to run rake tasks?
What is the syntax for calling rake tasks from clockwork? I've tried all kinds of syntax, and nothing seems to work. (I'm specifically interested in clockwork because Heroku's supporting it.)
Here's ...
0
votes
1answer
141 views
Limit rakefile settings to specific enviorment
I have a problem, my rake file looks like this:
require File.expand_path('../config/application', __FILE__)
require 'cucumber'
require "cucumber/rake/task"
Whois::Application.load_tasks
...



