Ruby build utility similar to make with build commands defined in pure Ruby.
2
votes
0answers
61 views
Rake migrate Error - database doesn't exist
I have a padrino project that uses data mapper and postgres. When I run padrino rake dm:create it says that the database is created. However, when I run padrino rake dm:auto:migrate, I get the error - ...
7
votes
0answers
193 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", ...
1
vote
0answers
56 views
How to run all ruby files in specified directory with rake
I have installed, Ruby 1.8.7, ci_reporter 1.8.4, test unit 2.5.4, rake 10.0.3.
My testA.rb, testB.rb ... testZ.rb :
require 'includeA.rb'
require 'includeB.rb'
require 'includeC.rb'
require ...
0
votes
0answers
31 views
Rake-pipeline: Concat task not working as expected
I have a folder which contains all the third party libs which I use for my client namely:
jquery-1.9.0.min.js
handlebars.js
...... etc
I have written a task to concat all these files into one ...
-3
votes
1answer
146 views
rake says “cannot load such file — spec”
I am using:
Ubuntu 12.10
Rails 3.2.12
ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux]
rake rake-10.0.4
When I run rake db:create I get this error message:
rake aborted!
cannot load such ...
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
1answer
44 views
Show SQL generated by pending migrations in rails without updating the database
I'd like to have a way to produce the actual sql (ie: if I pasted into a mysql console, it would work) that will be generated by a rake db:migrate without actually updating the target database.
rake ...
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
0answers
15 views
Making rake tasks visible?
I have a rake task that modifies my database called "task :restructure_database". When I run the code within the task line by line in rails console, I can see the database being modified. But when I ...
0
votes
0answers
81 views
rake aborted! undefined method `isthreadsafe' for class `Module' (pg gem)
Still pretty new to rails and postgresql. Anytime I run a rake command I get the following trace:
rake aborted!
undefined method `isthreadsafe' for class `Module'
...
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
0answers
104 views
Rakefile not rebuilding dependency files when 'import'ed, though 'rule' is defined for them
I have written a regular Rakefile for compiling a C program. To solve the header dependency promblem, I imported dependency files corresponding to each C source file and defined a rule for rebuilding ...
1
vote
1answer
51 views
How to kill fastcgi-mono-server4.exe from a rake file?
I'm working on automated deployment using Rake of a mono asp.net website to ubuntu server with nginx.
As far as I've discovered fastcgi-mono-server4.exe can't be stopped gracefully and must be ...
2
votes
0answers
1k views
ROR can't fine rake 10.0.4 despite being in vendor/cache
So this is annoying. When I put
bundle exec rake db:migrate
into terminal, the following error occurs:
Could not find rake-10.0.4 in any of the sources
Run `bundle install` to install missing ...
0
votes
1answer
43 views
separate some selenum scripts by a space character to run them ruby rake
I'm using Ruby Rake to run a Selenium Webdriver script on Ruby Terminal window. So, I have the code in rakefile.rb as below:
task :default do
if ENV['scripts']
scripts = ...
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
0answers
36 views
Got test error when i tried to do a pull request
I tried to do a pull request to a repo. The document who i edit in was in html.
But i got the messaged "The Travis build failed" and i check the Travis CI report, and this is the report error:
$ rake
...
0
votes
1answer
62 views
Change a RDoc template for generating Rails app documentation
I have just added some documentation to my Rails 3.2.13 app. I can generate the documentation just fine (running RDoc 3.12.2) by using a rake task:
# lib/tasks/documentation.rake
...
0
votes
1answer
35 views
How do I include gems in Rake files without specifying them in a Gemfile?
I am trying to write my first Rake file. It looks something like this:
lib\tasks\routes_check.rake:
require 'curb'
task :route_test do
puts "checking routes"
end
Running rake route_test fails ...
1
vote
0answers
32 views
Error while running the solr:server_win rake command
I am getting the following error while running the rake command for solr:start_win. I hve also installed sunspot_rails gem.
Please help us on this.
C:\Documents and ...
0
votes
1answer
59 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
87 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
3answers
55 views
Rspec or Rake which one is better [closed]
i have one simple question rspec or rake which one is better and more reliable.
Regards,
AB
1
vote
0answers
47 views
How do I call Nodejs in Windows environment from a Rake task to compile some LESS files?
What it is the correct way to call nodejs from a Rake task? I want to compile some LESS files into CSS. I have the cssless compiler installed globally.
0
votes
1answer
108 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
1answer
57 views
rake db:schema:dump
$ rake db:schema:dump
rake aborted !
it says..
couldn't parse YAML at line 31 column 11
then gives a link to environment file in config folder
environment.rb:5 in <'top (required)'>
...
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 ...
0
votes
1answer
69 views
Rake before task hook
Is there a straight forward way to modify a Rake task to run some bit of code before running the existing task? I'm looking for something equivalent to enhance, that runs at the beginning rather than ...
0
votes
0answers
61 views
Rspec spec & Rake spec gives different result
This seems to be mostly asked question, i have an application when run in both rake and rspec the output seems to be different. When rspec spec -p command is used 0 failures message is displayed while ...
0
votes
0answers
30 views
Any new build framework to consider? [closed]
Looking for a solution to manage .net builds as well as php via script.
psake - windows only
rake and albacore - cross platform. Liking this the most right now
ant/nant - XML yuck
msbuild - XML yuck
...
0
votes
2answers
171 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
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 ...
-4
votes
1answer
44 views
Rails (rake) default ID field
When creating a table on my pgslq db with rake, rails allways create an "id" field as primary key.
My issue is that i need to have the id field with a custom name. How can i specify the database ...
0
votes
0answers
18 views
How to mark rake process?
If I run two rake tasks:
$ bundle exec rake app_worker
$ bundle exec rake core_worker
and then print process list:
$ ps -ef | grep ruby
alex 2518 1409 0 Mar25 pts/0 00:04:35 ...
1
vote
1answer
35 views
Unable to make a rake-tasks file and make it work properly
I decided to create a rake tasks for my Sinatra project and not to use the ready ones.
#Rakefile
require 'rake/testtask'
require 'rake/clean'
Dir.glob("tasks/*.rake").each { |r| import r }
...
0
votes
1answer
77 views
undefined method `searcher' for Gem:Module
When I am running bundle exec rake db:initial_setup, an error occurs:
rake aborted! undefined method `searcher' for Gem:Module.
How can I fix this?
And here is the output of bundle exec rake ...
0
votes
2answers
28 views
Running multiple specs defined by input file
Given that I have an external file that will control which specs are being ran.
control.xls
test_id|description|file_path |run
1 |Test 1 |./spec/test1_spec.rb|yes
2 |Test 2 ...
1
vote
1answer
146 views
rake undefined method `fields' for nil:NilClass on database seed
When i try to do
rake db:reset
or
rake db:drop
rake db:create
rake db:schema:load
rake db:seed
I randomly get a NoMethodError: undefined method 'fields' for nil:NilClass when the seed occurs.
...
4
votes
5answers
244 views
Rails cron job runs every day to create database record 2 years from now. How to account for leap years?
Basically I have an app where a user can select a timeslot for any day from now until 2 years from now. i'm creating a rake task that runs every day to add a record to my database for 2 years from now ...
0
votes
0answers
114 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!
...
1
vote
2answers
49 views
Rails 3 dynamic time based jobs
In my Rails 3 application, users are given a small package that they will only be able to hold for a short amount of time e.g 20 mins. The package's ownership is stored in a table with a users ...
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 ...
1
vote
1answer
28 views
rake neo4j:create error rake aborted
>sudo rake neo4j:create --trace [ 6:18PM]
rake aborted!
Don't know how to build task 'neo4j:create'
...
1
vote
1answer
42 views
assets missing when launching/debugging Rails from RubyMine
I'm trying to test an opensource Ruby on Rails site (pophealth). I've got a VM running Ubuntu 12.10 and RubyMine. It took a while to get all of the gems working right but they are working well now. ...
1
vote
1answer
165 views
Getting error trying to use Jekyll rake command
I am trying to learn Jekyll and if I enter the following command
rake post title="Hello World"
I get the following error:
rake post title="My First Post"
...
1
vote
1answer
74 views
Why is rspec so slow under rake? ruby_noexec_wrapper?
I'd been having problems with my spec code taking a lot longer than expected to run, but when I tried to run them under rspec-prof, the problem seemed to go away. Eventually I tracked the difference ...
0
votes
1answer
80 views
Passing options and parameters to Test/Unit via Rake::TestTask
So I've been trying to figure this out, and the best solution I can came up with his global variables - but that seems so dirty and 1974 - Am I missing a feature of Rake/ Test::Unit?
I have a Rake ...
0
votes
1answer
81 views
Rake task not running from within worker
I don't understand why my rake task is not running from within a resque worker. Running
rake :send_this_email
from the console works fine, I just want to run it as a cron job (as follows) but ...
3
votes
2answers
39 views
How do I detect in rails if I am running a rake command?
In Rails, you might want your environment to do different things on startup depending on if you are running a rake task or not. For instance, my use case was having several hundred MB of cache loaded ...
0
votes
1answer
147 views
rake assets:precompile fails
I have an Rails app that is working fine in development. I'm developing it in RubyMine but I test and run it from the Terminal (files are stored/run on a Ubuntu workstation that I access with Terminal ...


