The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
27 views

rake db:test:prepare does not setup test databse

I am using Rails 4.0.0.rc1 with sqlite3 and trying to setup the test database for testing. bundle exec rake db:test:prepare did not create the tables in the test database. After following this ...
0
votes
1answer
41 views

Run rake db:drop without failure if database doesn't exist

This comment says: db:drop can run without failure when db does not exist This is exactly what I need: I need to run db:drop but without throwing an exception or halt my whole process if the ...
0
votes
1answer
53 views

Accessing model attributes within a rake task

I was wondering how to access a Models attributes and then run in a rake task using some methods, from what i have read methods have to be declared outside of the task, but gaining access to the ...
0
votes
0answers
32 views

Mysql Stored Procedure in Rake Tasks, Task ends way before Mysql Procedure, why?

Consider the following piece of Ruby code as a rake task, cols = "a" cat = "b" b = "c" con = ActiveRecord::Base.establish_connection(:adapter => "mysql2", ...
1
vote
1answer
36 views

How to skip some test folder when running rake test

I have the following configuration for running tests of a gem: require 'rake/testtask' Rake::TestTask.new(:test) do |t| t.libs << 'lib' t.libs << 'test' t.pattern = ...
0
votes
1answer
22 views

Rake - Adding to default task

I am using a third party gem that gives me the ability to execute some tests using the rake command: rake jasminerice:run Is it possible to include the task as part of default rake task? (i.e. when ...
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 ...
1
vote
2answers
78 views

How to publish my ruby gem to my own repository?

I have written a ruby gem and I would like to have a rake task for publishing the gem to my own GemInABox repository : http://my-gem-repo.com. What is the simplest way of achieving this goal? Also, ...
7
votes
0answers
194 views

Rake dependency not executing but invoke works

I've been trying to run rake db:test:clone_structure, but it keeps failing to rebuild the database. I finally looked at the task itself: task :clone_structure => [ "db:structure:dump", ...
0
votes
1answer
76 views

rake db:load doesn't work

I'm totaly noob in Ruby, and I can't execute the command rake db:load. Sorry for stupid question, but I need help. The same error is thrown on rake db:seed root@root:/var/www/dir# rake db:load ...
0
votes
1answer
108 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
42 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
40 views

rake task return on calling task

I would like to return from a rake task in the calling task. Does it possible? Something like in this example, i would like to be able to call task one and one independantly but also one and two ...
0
votes
1answer
55 views

Can I run Solr server without running rake command for rails application?

Is there any alternate way for running solr server without running rake command for rails application like providing all those solr related classes into single jar and then use that jar. Please ...
0
votes
1answer
17 views

Rake - capture :task_name as an option?

I am watching a Peepcode screencast Play by Play: Jim Weirich. He executes a rake task that appears to pass the final task name as an option. See how the task :demo creates a "demo" folder. How ...
1
vote
0answers
178 views

Use environment variables in Rake task

task :some_task, :environment do |t, args| puts Rails.env #=> development, production, etc puts ENV #=> {} end I set some environment variables (either via a local .env, or via Heroku ...
0
votes
0answers
61 views

Facebook error response (code 606): Queries for these filter_keys: “nf” require a non-zero viewer that has granted read_stream permission

I don't know why, but i am getting this error when i run the rake task for facebook. I have used same permissions in the api from the scope provider :facebook, FACEBOOK_CONSUMER_KEY, ...
0
votes
2answers
41 views

How to get help on a specific rake task?

Is there a standard help command for individual rake tasks? rake -h displays the options for rake. rake -D describes the rake tasks. rake mytask runs mytask. Is there something like rake -h ...
0
votes
0answers
25 views

Rails gem $LOAD_PATH Is NOT Correctly Set When Called from Capistrano::CLI

I have my project with structure like this: . ├── Gemfile # Gemfile1, does NOT have the gem `whenever` ├── Gemfile.lock ├── website │ ├── app │ ├── Capfile │ ├── config # ...
0
votes
0answers
17 views

ROR + Fetching Data using Rake Job For Different Type Of Database

In my rails project, I have to fetch values from some remote machine and remote machine have sql server as database. Here I am using TinyTds gem for communication. But in future, as the number of ...
0
votes
1answer
100 views

Getting Heroku to precompile assets to Amazon aws s3

Almost there with my issue of getting AWS S3 to serve my heroku app its static assets Everything works locally, i run my rake task and then the assets get precompiled to AWS ( though there is never ...
0
votes
2answers
355 views

Import CSV to existing sqlite database table

I've searched all over this forum for solution to the above problem, but everything I tried didn't work. Basically, i have a model Library, with corresponding libraries table in my sqlite3 database. I ...
0
votes
1answer
84 views

Debugging why a create method is not saving to the model

I have this method which after a rake task should save my data to the model, I am trying to update 2 columns at a time, which shouldnt be a problem def update_fixtures #rake task method ...
0
votes
1answer
35 views

Invoking rake with whenever

I just started using Rails Whenever plugin. I have rake file cron. with task: task :cron => :environment do puts "Task invoked!" end And in schedule.rb I have this: every 2.minutes do ...
0
votes
1answer
118 views

elasticsearch stops indexing new documents after a while, using Tire

I have my website running, with ElasticSearch, using Tire. In the background, I have a rake task that is looping over thousands of objects and creating one record for each of them. At first, the ...
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 => ...
0
votes
0answers
47 views

Rake failing in crontab w/ wheneverize

I have the following line in my crontab which is generated by wheneverize * * * * * /bin/bash -l -c 'cd /usr/share/nginx/ruby/apps/coord/releases/20130307003536 && RAILS_ENV=production bundle ...
0
votes
0answers
50 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
2answers
62 views

Removing duplicates with rake task

There's a lot of similiar questions like this, but couldn't find good answer for me. I have EntryVote model with fields user_id, entry_id and some others. I want to create simple rake task to remove ...
0
votes
2answers
148 views

rake aborted! uninitialized constant User::UserGroup

I am having a strange problem where my rake task is running on my local machine but not in production. Getting the following error when try the same in PRODUCTION rake aborted!uninitialized ...
2
votes
1answer
154 views

Where to put helper functions for rake tasks and test files in Ruby on Rails?

In my Rails application I have a file sample_data.rb inside /lib/tasks as well as a bunch of test files inside my /spec directory. All these files often share common functionality such as: def ...
0
votes
3answers
87 views

Rake task not adding CSV to database

I'm trying to add rows of a CSV to records in a table and everything seems to be working fine besides the fact that nothing actually shows up. Here is my Rake task: namespace :csv do desc "Import ...
1
vote
1answer
95 views

Rake task on Heroku: STDIN.gets.strip - “Enter” key behaves as pressed twice

I made an interactive rake task to do administrative job. This task gets input through STDIN.gets.strip and locally behaves as planned: I enter some value, press Enter and the task runs further ...
0
votes
0answers
46 views

After deployment i want to run a cap task and then rake task

After deploying in server using after 'deploy', 'application:symlinks' i have been running a cap task 'symlinks'. Yeah it works well and fine. But what i need now is to run another rake task ...
0
votes
1answer
31 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, ...
0
votes
1answer
178 views

Neo4j rake aborted! No such file or directory - wget http://dist.neo4j.org/neo4j-community-1.7-unix.tar.gz

Trying to install and run a simple Neo4j app from Max Demarzi's "d3_js_intro" app on GitHub. Issuing the command rake neo4j:install, I get the message shown below. Questions: Q: What is the root ...
0
votes
1answer
88 views

Faker "Don't Know How to Build Task?

I checked out the questions that have already been asked on this subject, "There are many", but I do not find a solution. I have a fairly large task and the files name is ...
0
votes
4answers
73 views

If i close my terminal would a rake task started on Heroku continue to run

I have a script which in need to run on my data. I have made a rake task for that. If i start the rake task by using heroku run rake my_task:my_action and after a while my internet disconnects. What ...
0
votes
1answer
93 views

rake task with multiple parameters - I got stuck

The rake task itself: desc "This task creates a new user" task :create_user, [:email, :password] => :environment do |t, args| trole = Role.find_by_name('translator') User.create( :email ...
0
votes
1answer
108 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" ...
0
votes
2answers
42 views

How to set two foreign keys with a Rake Task in Ruby on Rails?

I have a rake task to create a number of invoices in my Rails application: def make_invoices Project.all.each do |project| i = project.invoices.create!( :number => random_number, ...
1
vote
1answer
160 views

Rake db:populate error: undefined method file_changed

Here is my rake task file: namespace :db do desc "fill database with sample data" task :populate => :environment do puts "populating with sample data" make_users ...
0
votes
0answers
185 views

Faker Gem to populate DB Data

I need to populate my databases with some dummy data. Due to which I have used Faker Gem to populate the database using rake tasks. Here is the data I need to fill { "company":{ "id":2, ...
1
vote
1answer
37 views

How do I find the filesystem location of another rake task from a rake task?

I am basically trying to convert a solution to this question into a rake task: How do I find the source file for a rake task? I want to type, e.g.: rake meta:where[test] And get the path where the ...
0
votes
0answers
129 views

wrong number of arguments (1 for 0) in Rake task when importing Twilio call log

I have got this rake task to import call log from Twilio. But when I run this task I'm getting a weird error which I can't seem to fix. I guess the problem is around the create! part. I have tried ...
2
votes
3answers
175 views

Removing whitespaces in a CSV file

I have a string with extra whitespace: First,Last,Email ,Mobile Phone ,Company,Title ,Street,City,State,Zip,Country, Birthday,Gender ,Contact Type I want to parse this line and remove the ...
1
vote
1answer
255 views

Rake::TestTask not running minitest files

I'm using minitest for one of my projects, and I can't seem to get the Rake TestTask to actually run the files. require 'rake' require 'rake/testtask' task :mytest do Rake::TestTask.new do |t| ...
0
votes
1answer
173 views

bundle exec rake test does nothing

I am trying to get my heads "dirty" with TDD and for some reason when I run bundle exec rake test on the command line, nothing happens. Here is my RakeFile: require 'rake/testtask' ...
0
votes
1answer
85 views

rake task: Undefined method for Class

I have added a new task to my RakeFile (I know the new way of doing it is to add your task to lib/tasks, but other tasks are in the RakeFile and I dont wish to refactor just yet.) The task that I ...
0
votes
2answers
174 views

Rails - Update attributes using rake task. Need help troubleshooting model method code

I am trying to use a rake task that will run every night (using Heroku Scheduler) and update some attributes if some certain criteria is met. A little logic about the application: The application ...

1 2 3 4 5