Tagged Questions
0
votes
1answer
17 views
Upgrade to Rails 3 and lost ability to run Active Record database migrations
I have a corporate web application that, for various reasons, has Active Record connections to SQL Server as well as Mongoid Documents. There has been resistance to updating to Rails 3 until now (yes, ...
0
votes
1answer
9 views
“file too short” on bundle install
I'm getting occasional "file too short" messages when running bundle exec rake:
rake aborted!
/var/lib/jenkins/.rvm/gems/ruby-1.9.3-p327/bundler/gems/amatch-0f95f4ce269f/lib/amatch_ext.so: file ...
0
votes
1answer
7 views
Drop table in Rake task in Rails app
I would like to arbitrarily drop all tables in my Rails app via a Rake task.
This is for testing/staging purposes, and rolling back migrations doesn't seem appropriate/necessary here.
I've got to:
...
1
vote
1answer
14 views
Could not find table by rake routes on production server
When checking routes on production server with rake routes, there is an error of Could not find table 'authentify_engine_configs' which is a table in the database. What could cause this error? The ...
0
votes
1answer
14 views
thinking-sphinx3 duplicate feedback
At some point during installation of thinking-sphinx 3 all rake commands relating to thinking-sphinx tasks return two lines of feedback. Example
MacBook-Pro-di-jerdvo:saim jerdvo$ rake ts:configure
...
0
votes
0answers
13 views
How do I keep compiled assets when rake fails so I can debug?
I have a bug that I am trying to track down, but it is proving difficult. When I run:
$ bundle exec rake assets:precompile
I get the following error:
rake aborted!
Invalid CSS after "}": expected ...
1
vote
1answer
57 views
rake db:create:all FATAL : password authentication failed
I am trying to follow this railscast tutorial. Now I am in the step, where you create the database with rake db:create:all, but I got this error message :
FATAL: password authentication failed for ...
0
votes
1answer
29 views
difference between console email and rake email attachments
I'm generating an invoice pdf via wicket_pdf and this works. This pdf will be used as attachment in an email in a later step of process.
# user.rb
def send_last_invoice_email!(invoice)
...
0
votes
1answer
41 views
rake db:migrate rake aborted! unable to determine name from existing gemspec
I am trying to rake db:migrate. I cloned a repository and tried to rake db:migrate, but get this error :
rake aborted!
Unable to determine name from existing gemspec. Use :name => 'gemname' in ...
-5
votes
1answer
40 views
Ruby on rails Routing error — displaying my table [closed]
Routing Error
No route matches {:action=>"[#, #, #, #, #, #, #, #, #]", :controller=>"domain"}
Try running rake routes for more information on available routes.
0
votes
0answers
34 views
Rails 3: unit test works with ruby but not rake
I have the following class in a Rails 3 app:
class AssetAttribute < ActiveRecord::Base
...
def self.ANNOTATION
self.find_by_table_name('annotations')
end
...
end
In another class, I ...
0
votes
0answers
38 views
I need to run a rake file from or after my controller file has finished in rails
I have a controller class in ruby on rails and it takes the input from a user off of a form webpage. I need my rake file to run after this file is finished, either at the end of the controller file I ...
0
votes
1answer
50 views
Rake Abort! 'rake/rdoctask' is obsolete
rake aborted!
ERROR: 'rake/rdoctask' is obsolete and no longer supported. Use 'rdoc/task' (available in RDoc 2.4.2+) instead.
Other questions suggest to modify the RakeFile, but in Rails 3.1.0 my ...
1
vote
1answer
81 views
rake aborted! Operation not permitted - Carrierwave Delete tmp files that failed validation
I am using Carrierwave, s3 and fog to upload videos. I added in a file_size_validator file so that videos can't be larger than 5mb.
My understanding of how Carrierwave works (please advise if ...
0
votes
0answers
37 views
“Get Available Generators List” warning in RubyMine. How do I get rid of this?
I am using RubyMine 5.4.1 and was creating a new rails 3.2.9 application using ruby 1.9.3-p0, and received the below warning. I believe bundler was running install at the time. The warning header ...
1
vote
2answers
42 views
Rake test failed - RunTimeError
I ran rake test and got the following error:
/Users/username/.rvm/gems/ruby-2.0.0-p0/gems/activerecord-3.2.7/lib/active_record/connection_adapters/postgresql_adapter.rb:1213:in `initialize': could ...
0
votes
0answers
26 views
recreating database without impact to production
I have a rake task that selectively copies data from legacy database into my rails DB.
namespace :db do
desc "Copy date from Remedy db to local sqlite db"
task :copy_data => :environment ...
0
votes
0answers
123 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 ...
0
votes
1answer
97 views
Rake task with minitest-spec-rails gem
I have been using the minitest-rails gem, and everything works great when I run:
rake minitest:models
However, I recently switched to the minitest-spec-rails gem, and when I run that same command ...
0
votes
2answers
37 views
Run all models tests using rake task
Trying to use a rake task to run only tests in the test/models directory. Using minitest.
I have a rake task that will run all test
require "rake/testtask"
Rake::TestTask.new(:test => ...
0
votes
1answer
41 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
57 views
link_to paths not linking after adding bootstrap
I have a rails application that is built on the SAAS stripe application that is hosted here:
http://railsapps.github.com/rails-recurly-subscription-saas/
I added twitter bootstrap to this and my ...
0
votes
1answer
84 views
rails 3 resque-scheduler no queues being registered
I am currently trying to set up resque-scheduler for my rails 3 application. In my simple test application, I am trying to expire a token which is in my User model 10 seconds after it has been set.
...
0
votes
2answers
158 views
How to debug a “TypeError: can't convert nil into String” with the traceback of rake tests?
There are a lot of rake tests failing in a ruby on rails project [1], all with same error (can't convert nil into String), and I don't have any idea why is this happening neither how I should debug ...
0
votes
0answers
112 views
ruby 1.9.3 db:migrate issues
So I am trying to migrate a database I created and I keep getting this string of errors. Not sure what to do! Thanks
Camerons-MacBook-Air:depot Cameron$ rake db:migrate
rake aborted!
...
0
votes
1answer
164 views
rake aborted! cannot load such file — omniauth while installation devise
I am new to rails authentication and using devise for the purpose.
I am following this tutorial for installation - http://blog.blazingcloud.net/2011/01/08/devise-authentication-in-rails-3/
Following ...
0
votes
1answer
31 views
Scheduling rake task with cron
I'm trying to set daily cron job to update my site stats, but it looks like it doesn't work.
Cron entry (for deployer user):
0 0 * * * cd /var/www/my_site/current && rake ...
0
votes
2answers
66 views
rails Routing Error No route matches [POST] “/controller/new”
I am new to rails and i am trying to create a simple bookmark table:
def up
create_table :bookmarks do |t|
t.string :path, :null => false
t.integer :user_id, :null => ...
0
votes
1answer
27 views
Run a rake task rails
I am trying to get a rake task to run, basically a screen grab and then post the data to a model. I have a task but not sure on how to get it to run
namespace :grab do
task :fixtures => ...
1
vote
1answer
111 views
Rails: Assets precompile failure
On one of my linux servers when I run...
bundle exec rake assets:precompile RAILS_ENV=production --trace
I'm getting the following error...
** Invoke assets:precompile (first_time)
** Execute ...
0
votes
1answer
45 views
I'm not able to create controller in Rails3? [closed]
C:\Sites\guestbook>rails generate controller entries
...
3
votes
2answers
297 views
Thinking Sphinx — no indexes found in config file
Trying to use Thinking Sphinx for search. Followed this Railscast by homebrew installing TS and MySQL (though I'm using pg in my app, it's apparently required), adding these lines to my gemfile:
gem ...
0
votes
0answers
49 views
Rake task imports one line only of txt file
I wrote many simple rake files to import txt files to my mysql.
Everything work perfectly except one model.
I have no errors so I don't know what happening.
The rake imports the first line only. ...
0
votes
0answers
54 views
rails can not compile assets in production mode
I'm not able to compile assets in production mode, I'm using the command
rake assets:precompile --trace RAILS_ENV=production
and i get this error:
** Invoke assets:precompile:all (first_time)
** ...
0
votes
1answer
28 views
ActiveRecord giving wrong results in Rake task
I have created my first Rails Rake task which imports some data. It uses the URL to identify if the page needs to be updated or inserted. I am however having som really weird issue with some records ...
0
votes
1answer
79 views
Rails - rake test fails
Using the following statement:
rails generate scaffold Product title:string description:text image_url:string price:decimal
and editing a little bit the generated migration I've got the following ...
0
votes
0answers
110 views
Mysql2 error on an empty database, on running rake tasks
I have an empty database, created using rake db:create, when I run a rake db:migrate against it, I get mysql2 error. I'm running on rails 3.2.8, ruby - 1.9.3. I also tried by creating a new rails ...
7
votes
2answers
429 views
“Command failed with status ()” when precompiling assets
I am having similiar problems like a lot of users when compiling assets on their productive box. The only difference is that I can't get any hint out of the trace to solve the problem.
rake ...
1
vote
1answer
49 views
db:reset resets the database; what's the simplest way to do that for one table only?
I'd like to be able to:
Clear out one table, including resetting the primary key(s)
Use db:seed to refill that table with new data
Keep all other tables the same, with data intact
I understand ...
0
votes
1answer
29 views
is it possible to run rake tasks from another server in rails
I have a bookmarking website developed in ruby on rails 3.0.7 and many rake file are running every time to get bookmarked URLs details and added users informations. Since rake are running every time, ...
1
vote
1answer
44 views
rake assets precompile aborted with rails 3.2.11
I have to run rake assets:precompile command before deploying in rackspace server, recently upgraded rails version from 3.2.9 to 3.2.11 due to the security patch and Upgraded JSON GEM.
I get the ...
0
votes
1answer
49 views
Running remove_column not working in rails migration
I have a very simple migration:
class RemoveAuthorIdFromBooks < ActiveRecord::Migration
def change
remove_column :books, :author_id
end
end
But I get the following error:
...
0
votes
1answer
119 views
Error: migrate SQLite to Postgres
I developed my app with the standard configuration (SQLite 3). I want do deploy on heroku and have to change to postgresql.
But I get this error, when trying to migrate my db-schema.
rake db:migrate
...
0
votes
0answers
69 views
rake repeats the same test many times
I'm adding a new (plain old) ruby class to my Rails app. I have a minimal unit test for the class:
require 'minitest_helper'
class ReportOptionTest < MiniTest::Unit::TestCase
def setup
...
0
votes
1answer
54 views
Rake task - undefined method
I tinkering my way into creating a rake task that grabs the amount of checkins for a given page throw facebook-graph. I usign the koala gem and rails.
I do this by creating a rake task:
task ...
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
...
2
votes
1answer
322 views
therubyracer or nodejs, which should I use?
I am following the ruby on rails getting started guide on a new install of Ubuntu 12.10. I'm up to running rake db:create but I get the following error:
rake aborted!
Could not find a JavaScript ...
0
votes
0answers
42 views
rake db:create command is not working. Why? [duplicate]
Possible Duplicate:
Library not loaded: libmysqlclient.16.dylib error when trying to run ‘rails server’ on OS X 10.6 with mysql2 gem
I am new to Ruby on rails. I am running this command ...
1
vote
1answer
82 views
How do you add a folder to rake stats?
I've added some folders (lib, spec, cells, etc.) to my Rails app and would like to add them to the rake stats list. Is it possible to add new folders?
0
votes
1answer
104 views
RubyOnRails: How to make rake task to parse Twitter JSON?
I am trying to write a rake task to parse a file containing lots and lots of twitter updates in json format.
The json file looks like this:
{ "_id" : { "$oid" : "50f82aeab4aa879861000000" }, "text" ...






