Tagged Questions
0
votes
1answer
122 views
stack level too deep error when running any rake task
I'm upgrading an application from Rails 3.0 to Rails 3.1. The tests run ok, as the unicorn server. However, when I run any rake task (being 'rake routes' or even 'rake about'), it returns 'stack level ...
1
vote
1answer
45 views
How to write task which run multiple tasks with args?
I would like to run task for each model like below:
task all: :environment do
resources = [ Question,
Answer,
Link,
Event,
PastEvent,
...
0
votes
0answers
103 views
rake db:seed causes stack level too deep, why?
When I try to run rake db:seed --trace I get this error:
rake aborted!
stack level too deep
as below:
/home/sam/.rvm/rubies/ruby-1.9.3-p0/bin/ruby -e ...
0
votes
1answer
1k views
rake aborted! no such file to load — rush
I am using using rails 2.3.5 , ruby 1.8.7 (2010-08-16 patchlevel 302) [i386-mingw32]
I am on windows machine,
The project has no .gem file, so i use rake gems:install, and rake db:create
upto the ...
4
votes
2answers
3k views
Could not find rake-0.9.2.2 in any of the sources
This is an odd one. I'm getting this error when I run rake to do tests but not when I migrate. I'm running RVM, the shell dump below should give any information you need.
Any help would be greatly ...
1
vote
4answers
285 views
Rails Migration - what's the point of self.up and self.down
I was wondering what those meant:
class ChangeTimeColumns < ActiveRecord::Migration
def self.up
end
def self.down
end
end
as sometimes Rails just creates a migration like this:
class ...
0
votes
0answers
84 views
call rake task with rsync from Rails
I have a rails app that kicks off a rake task. Inside that rake task I have an rsync that doesn't work when deployed.
Sys admin guy says it's because the apache/passenger user doesn't have a shell ...
0
votes
1answer
48 views
Invoke a model method within a rake task
My question is very simple but I could not find a correct answer for it. I have a rake task which invokes a model method.
task :post do
BufferPreference.post
end
It doesn't work and throws the ...
0
votes
2answers
653 views
DeviseCreateUsers: migrating create_table(:users) rake aborted
I encountered the following error while running rake db:migrate --trace. my rails version - rails 3.2.0. And i am trying to run the project https://github.com/ninetwentyfour/Hospitium. I am newbie to ...
2
votes
2answers
417 views
How do I create a rake task for a Rails engine which is not exposed to the host application?
# lib/tasks/test.rake
task :hello do
puts 'hello'
end
$ rake app:hello
To run the task I need to prefix it with "app:" and it runs in the context of the dummy app. It is also exposed to the host ...
1
vote
1answer
236 views
Load only part of environment for rake task?
I've seen a bunch of articles relating to loading the entire Rails environment for a task. However, I'm concerned that this is unnecessary because I only use two models for my task (plus the 'resque' ...
1
vote
1answer
1k views
why would I get `no such file to load — ruby-debug` in production rake task?
I have a rake task that looks like so (crontab):
cd /data/TheApp/current && bundle exec rake nightly_tasks[3]
--trace --silent 2>> /data/TheApp/shared/log/tasks_prod_errors.log
...
0
votes
0answers
179 views
After running rake assets:precompile jquery hide/show snippet breaks
I have developed all my code in development using jquery. In custom.js i have the following code that executes when a link is clicked to show content and then click again to hide the content
...
1
vote
1answer
316 views
Schema file does not reflect table removal migrations
I removed several tables in my Rails database by running rails generate migration RemoveObjects and then ran rake db:migrate to complete the migration, however I am not seeing the change reflected in ...
1
vote
0answers
337 views
Issue rake assets:precompile with Rails 3.2
I am using Rails 3.2 , but when i use rake assets:precompile it generates this error. Cant not figure out why this error is been generated. and how to fix it.
cp -r ...
0
votes
1answer
282 views
Rake assets:precompile aborts after CSS3 animation
Two questions:
1) How can I get rake assets:precompile to work with the CSS3 animations I have in my application.css?
In application.css:
@-webkit-keyframes greenPulse {
from { background-color: ...
4
votes
1answer
1k views
Reprocessing images in Carrierwave
Let's say my model has and image with :thumb and the client wants :tiny and :nano thumbnails.
How do I reprocess all the existing images using a rake task?
I've found a rask that I thought would do ...
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 ...
0
votes
2answers
101 views
Trouble Importing Data into Rails, Strange Looping
I am trying to import data into rails (3.1) and I have created this rake task to parse a CSV file (generated by Excel on Mac)
desc "Import users."
task :import_users => :environment do
...
0
votes
1answer
400 views
Rake task to access models
I'm trying to access a model called Book from a rake task like so
task :create_epubs => :environment do
include Rails.application.routes.url_helpers # brings ActionDispatch::Routing::UrlFor
...
2
votes
1answer
737 views
Correct location for data import file in Rails 3.1 (custom rake task)
I am trying to run this custom rake task to import data into my Rails 3.1 app:
desc "Import users."
task :import_users => :environment do
File.open("users.txt", "r").each do |line|
...
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 ...
2
votes
1answer
113 views
How to create an SAPI / API in ruby on rails?
I found some posts below,but that can not work for my case.
How to create a REST API for a Ruby application?
Ruby on Rails with REST API
But they all telling to use Sinatra instead of Rails ...
0
votes
0answers
361 views
Rake tasks with models rail
I am having an an issue with this rake task on Rails 3.1.3 on Heroku:
task :update => :environment do
# Get the Assignments
@a = Assignment.all
# Change the dates
for a in @a
...
2
votes
1answer
667 views
Installing migrations from engine won't work
I created a new engine in Rails 3.1.3 and apparently there's that rake task that copies over all migrations. I tried following rake abc:install:migrations which threw:
rake aborted!
Don't know how to ...
0
votes
1answer
189 views
Load files from Gem in Rake task
Using Bundler, Rails 3.1.0 and RVM-gemsets I want to load files from a defined Gem.
Gem.datadir(gem_name) seems to be the right candidate but does not seem to work with RVM-gemsets.
Addition:
In my ...
0
votes
1answer
53 views
Rails gems installed but the rake task is still giving an error
I have Rails 3.1.3 installed on my machine with Rake 0.9.2 . When I do gem list, I see both installed with the correct version but when I run rake db:migrate I get the error saying
Missing the ...
0
votes
1answer
255 views
RAIL_ENV=production rake db:schema:load aborted with rails 3.1.0 and ubuntu 10.04
Trying to update the production mysql database by doing: rvmsudo RAILS_ENV=production rake db:schema:load on ubuntu 10.04 with rails 3.1.0. The purpose of update is to add a table. The mysql db ...
0
votes
0answers
457 views
Adding initial Data to Database in Rails 3.1.3 doesnt work with Rake Tasks (Bootstrap) nor Rake Migration [closed]
Trying to follow this Help ( How (and whether) to populate rails application with initial data ) with Rake Boostrap Tasks, i got this Error:
name@CURIUM ~/Documents/developing/rubyonrails/checklist ...
2
votes
2answers
1k views
rake assets:precompile not working (Rails 3.1.3 edition)
After review, this question has been asked many, many, many times. Yet I still don't grok why rake assets:precompile fails.
I can view the following results from my browser using local server (e.g. ...
20
votes
1answer
2k views
Use bundle exec rake or just rake?
I learned Rails using just the rake command like rake db:migrate; however, I just read that use should be using the bundle exec rake ... instead of just plain rake and now I am confused about which to ...
2
votes
2answers
364 views
new records insertion into database table in my case
I am developing a Rails v2.3 appliction which is a service to search projects' information where projects info are stored in database.
There is an existing projects table in the database like ...
8
votes
2answers
3k views
newbie: error message when 'rake -T'
I am using Ruby Enterprise Edition for my project. When I check all my rake task by run the command rake -T , I got the following error message:
You have already activated rake 0.9.2.2, but your ...
2
votes
2answers
441 views
rake error when load production db schema
Here is the error running rake for loading production db schema (mysql 5.1.45):
$ rake db:schema:load RAILS_ENV=production --trace
** Invoke db:schema:load (first_time)
** Invoke environment ...
1
vote
2answers
328 views
Newbie, about Rake task syntax
In Rake task definition, like following:
desc 'SOME description'
task :some_task => :environment do
# DO SOMETHING
end
What does the :some_task in task :some_task => :environment ...
1
vote
1answer
638 views
ruby rake with rails missing constant with production but works in development environment
I have a rake task that runs ok in the dev env, but not in prod.
task :sample_test_quote => :environment do
QuoterTester.test
end
QuoterTester is a model class with a class method test.
...
1
vote
1answer
2k views
Passenger + Rails 3.1.1 = Could not find rake-0.9.2 in any of the sources (Bundler::GemNotFound)
I know there are already some threads about this error, but none of them solved my problem.
I started a new rails app with rails 3.1.1 and RVM Ruby 1.9.2-p180.
It works when I use rails server and go ...
10
votes
2answers
2k views
undefined method `sass' for #<Rails::Application::Configuration on Heroku
I've looked around a bit and didn't find similar errors reported.
I don't recall having modified my production.rb. And for good measure, here's my application.rb
Here's the stack trace from Heroku.
...
1
vote
1answer
256 views
Rails + Heroku :: rake task inside cron task
Questions
1) When running cron tasks at Heroku, does Heroku have a time limit that cron tasks should last only X minutes or can the cron task run for whatever time it needs to complete processing?
...
0
votes
1answer
190 views
rails rake (3.1) why do all rake tasks error out with 'stack level too deep'
Possible conflict with Rake extension maybe?
md:~/Dropbox_not_syncd/webs/3/tdd/rubyists$ rake db:drop
/home/durrantm/.rvm/gems/ruby-1.9.2-p180/gems/rake-0.9.2/lib/rake/version.rb:4: warning: already ...
1
vote
0answers
695 views
Rails 3.1 rake assets:precompile failing
Anyone seen this before? If not, any good tips on debugging rake issues w/ no stack trace would be appreciated!
My site's running fine in dev, since assets are not compiled, but the compilation of ...
0
votes
1answer
357 views
Rake 0.9.2 issue with rakedb:migrate
I'm setting up my new Macbook (Lion OSX) with my rails environment and have hit a odd problem that I can't figure out what the issue is.
When I am running rake db:setup or rake db:migrate I am ...
1
vote
1answer
267 views
How do I use railties to install files other than migrations (for e.g. config files)
I'm using Rails 3.1 and I am able to use railties to install migrations (by doing rake railties:install:migrations FROM=plugin_name). However, I have a couple of config files (.yml, etc.) that I need ...
1
vote
1answer
2k views
You have already activated rake 0.8.7, but your Gemfile requires rake 0.9.2. Consider using bundle exec.
I Just moved to site 5 after creating my application offline. I am having problems with rake. When i try to run cd ~/MYAPP/; rake db:migrate --trace RAILS_ENV='production'
I get the following error
...
1
vote
1answer
259 views
rspec / rake issue - Rake::DSL global methods are clobbering my model somehow
I'm working through the upgrade to 3.1, and hit a snag.
I have a model (using Mongoid) that is having it's 'link' method overwritten by Rake, apparently. I'm getting this message:
WARNING: Global ...
1
vote
2answers
125 views
Rake db:create doesn't end
Hey guys I recently installed mysql2 on Windows using this command: gem install mysql2 -v 0.2.7 and added the mysql2 gem to my project's gemfile. I then ran bundle install with no problems, but when I ...
1
vote
1answer
746 views
Rake and Uninitialized Constants
I have spent hours upon days trying to resolve this.
Rake is throwing the following error:
dcarpenter$ rake
rake aborted!
uninitialized constant ActionView::Helpers::JavaScriptProxy
I ...
0
votes
0answers
295 views
Rails Migrations - can't convert nil into String
Is anybody else getting these errors consistently during migrations? Every time I try to migrate, I get that error for the last migration. I have to delete my development database and schema, create ...
2
votes
3answers
1k views
can't activate mysql2 (~> 0.3.6), already activated mysql2-0.3.2 in Rails 3.1
I'm just trying to get the most basic of basic shell of a rails app running under 3.1, and I'm getting this weird error when I run bundle exec rake db:migrate-
Please install the mysql2 adapter: `gem ...
15
votes
2answers
4k views
What is the new format for rake tasks? (task :t, arg, :needs => [deps] versus task :t, [args] => [deps])
I'm using Rails 3.1 beta with Ruby 1.9.2 and rake 0.9.2, and have a bunch of rake tasks I've written. Here is an example:
namespace :data do
desc "dump the nodes and edges for a graph"
task ...