Ruby build utility similar to make with build commands defined in pure Ruby.
170
votes
18answers
70k views
Ruby on Rails and Rake problems: uninitialized constant Rake::DSL
I'm having a really frustrating issue: Rake is being dumb.
Here's how the problem comes about:
$ rails new test_app
$ rails generate scaffold new_scaffold field1:string field2:text
Both of those ...
151
votes
13answers
42k views
A cron job for rails: best practices?
What's the best way to run scheduled tasks in a Rails environment? Script/runner? Rake?
120
votes
7answers
23k views
Why does Ruby 1.9.2 remove “.” from LOAD_PATH, and what's the alternative?
The latest changesets to Ruby 1.9.2 no longer make the current directory . part of your LOAD_PATH. I have a non-trivial number of Rakefiles that assume that . is part of the LOAD_PATH, so this broke ...
127
votes
8answers
27k views
Undefined method 'task' using Rake 0.9.0
I just updated Rake to the latest version (0.9.0.beta.4) and the rake command ends up with the following error message:
rake aborted!
undefined method `task' for ...
276
votes
7answers
63k views
How do I pass command line arguments to a rake task?
I've got a rake task that I am making that needs to insert a value into multiple databases.
I'd like to be able to pass this value into the rake task from the command line, or from another rake ...
147
votes
6answers
38k views
How to run Rake tasks from within Rake tasks?
I have a Rakefile that compiles the project in two ways, according to the global variable $build_type, which can be :debug or :release (the results go in separate directories):
task :build => ...
93
votes
5answers
35k views
How to fix the uninitialized constant Rake::DSL problem on Heroku?
I am getting errors similar to the ones in these questions, except mine are occuring on Heroku:
2011-05-30T09:03:29+00:00 heroku[worker.1]: Starting process with command: `rake jobs:work`
...
34
votes
3answers
8k views
Rake “already initialized constant WFKV_” warning
Trying to run rake cucumber:ok and am getting this error:
/Users/dev/.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/rack-1.3.4/lib/rack/backports/uri/common_192.rb:53: warning: already ...
23
votes
5answers
12k views
How do I force RAILS_ENV in a rake task?
I have this little rake task:
namespace :db do
namespace :test do
task :reset do
ENV['RAILS_ENV'] = "test"
Rake::Task['db:drop'].invoke
Rake::Task['db:create'].invoke
...
42
votes
10answers
18k views
How do I run a rake task from Capistrano?
I already have a deploy.rb that can deploy my app on my production server.
My app contains a custom rake task (a .rake file in the lib/tasks directory).
I'd like to create a cap task that will ...
18
votes
25answers
22k views
uninitialized constant MysqlCompat::MysqlRes (using mms2r gem)
moved a rails app of mine onto a new server and had to install a few gem dependencies. However, after installing the mysql gem I get the error, uninitialized constant MysqlCompat::MysqlRes, whenever ...
97
votes
2answers
15k views
Do rails rake tasks provide access to ActiveRecord models?
I am trying to create a custom rake task, but it seems I dont have access to my models. I thought this was something implicitly included with rails task.
I have the following code in ...
83
votes
5answers
20k views
Global access to Rake DSL methods is deprecated
I am working through the Ruby on Rails 3 tutorial book and typed the following on the command line:
rake db:migrate
which produced the following warning.
WARNING: Global access to Rake DSL methods ...
39
votes
8answers
19k views
Rails task: script/runner or rake?
For ad hoc Rails tasks we have a few implementation alternatives, chief among which would seem to be
script/runner some_useful_thing
and
rake some:other_useful_thing
Which option should I ...
13
votes
2answers
1k views
Where should my non-model/non-controller code live?
I've written a rails app that follows the regular directory structure (model code in models, controller code in controllers).
But I'm now working on a new feature and for that I have written some ...
8
votes
3answers
4k views
Problem to run comand rake
Im trying run the comand rake but i not getting. When I run "rake db:create:all" of the following message:
/Users/junior/.rvm/gems/ruby-1.9.2-p290@global/gems/rake-0.9.2/lib/rake/version.rb:4: ...
119
votes
5answers
40k views
Purge or recreate a Ruby on Rails database
I have a dev Ruby on Rails database full of data. I want to delete everything and rebuild the database. I'm thinking of using something like:
rake db:recreate
Is this possible?
54
votes
4answers
15k views
What does bundle exec rake mean?
What does bundle exec rake db:migrate mean? Or just bundle exec rake <command> in general?
I understand that bundle takes care of maintaining things in the Gemfile. I know what the word "exec" ...
24
votes
11answers
7k views
Rails 3.0 & Ruby 1.9.2rc: Rake commands return 'already initialized constant' & stack level too deep errors. Any ideas
I'm trying to run Rails 3 beta 4 & Ruby 1.9.2rc on Ubuntu 10.04. It worked initially, but after doing my first bundle install/package, I now get the following errors in all rails projects. Even a ...
46
votes
7answers
15k views
Better ruby markdown interpreter?
I'm trying to find a markdown interpreter class/module that I can use in a rakefile.
So far I've found maruku, but I'm a bit wary of beta releases.
Has anyone had any issues with maruku? Or, do you ...
3
votes
1answer
925 views
No such file or directory - git ls-files — WINDOWS
I am trying to find a way to add Git to the Windows path. Whenever I try to run RakeFiles from either JetBrains' neat IDE, RubyMine or from GitBash itself, I get the error that this title is posted ...
43
votes
6answers
34k views
Rails DB Migration - How To Drop a Table?
I added a table that I thought I was going to need, but now no longer plan on using it. How should I remove that table?
I've already ran migrations, so the table is in my database. I figure rails ...
33
votes
4answers
24k views
How can I generate a git diff of what's changed since the last time I pulled?
I'd like to script, preferably in rake, the following actions into a single command:
Get the version of my local git repository.
Git pull the latest code.
Git diff from the version I extracted in ...
33
votes
4answers
19k views
uninitialized constant Rake::DSL in Ruby Gem
I have been working on updating my gem (whm_xml at https://github.com/ivanoats/whm_xml_api_ruby ) to make it work with ruby 1.9.2, latest rubygems, latest bundler, latest rdoc, latest rake. It works ...
33
votes
4answers
11k views
Running ruby debug in rspec?
I'm trying to get ruby debugger running in one of my specs:
describe User do
it "should be valid" do
debugger
User.new.should be_valid
end
end
When I run rspec though, I get:
* ...
9
votes
2answers
4k views
How to prevent Rake test to call task db:test:prepare
Every time I want to run Rake test the task db:test:prepare is being called and it rebuilds my test environment database from schema.rb and migrations. What I would like to achive is to disable the ...
17
votes
6answers
8k views
Rake 0.9.0 'undefined method 'task' '
Gemfile only contains rails 3.0.7 and sqlite3, all of a sudden rake will not run on any apps.The error started when running 'rake db:migrate'
Full trace output:
rake aborted!
undefined method `task' ...
12
votes
4answers
2k views
slow rails stack
When I run
rails server
or
rake -T
or some other rails script, it takes a lot of time, approx 1 minute.
What is the best way to determine what exactly is so slow ?
How can the speed be ...
4
votes
5answers
5k views
Rake aborted! Uninitialized constant Rake::DSL on Heroku
When trying to rake db:migrate on Heroku. I'm getting the following error.
rake aborted!
uninitialized constant Rake::DSL
From what I've gathered this seems to be a bug with Rake 0.9.2. If I do ...
4
votes
3answers
5k views
How to write Rake task to import data to Rails app?
Goal: Using a CRON task (or other schedule event) update rails database with nightly export of data from an existing system.
All data is created/updated/deleted in an existing system. The website ...
5
votes
3answers
1k views
How to Rename or Move Rails's README_FOR_APP
When I run rake doc:app in my Rails application root, the API docs are generated using /doc/README_FOR_APP as the home page. I would like to add a .rdoc extention to that file so it is properly ...
0
votes
3answers
336 views
Result of `rake routes` in ruby script
rake routes is very slow (30s in my computer) but I need it for routing spec.
So, is there a way to get all routes like rake routes? (or how rake routes works?)
I use Rails 3 and all I have seen is ...
0
votes
2answers
131 views
Inserting an array using Sequel gem in PostgreSQL
i created a table with the following schema in code
DB.create_table :Pokemon do
primary_key :id
String :first_name
String :last_name
String :email
String :zipcode
String :company_name
...
73
votes
5answers
31k views
Rails Rake: How to pass in arguments to a task with :environment
So I am able to pass in arguments as follows
desc "Testing args"
task: :hello, :user, :message do |t, args|
args.with_defaults(:message => "Thanks for logging on")
puts "Hello #{args[:user]}. ...
31
votes
3answers
5k views
Rake vs Thor for automation scripts?
I want to automate things like:
Creating a new Rails app with pre-selected database, git initialize it, create heroku project, commit all files, etc.
Upload all files in folder to another computer ...
33
votes
6answers
12k views
Why is rake db:migrate:reset not listed in rake -T?
Why are some rake tasks not listed by rake -T? Like db:migrate:reset? I can execute it without a problem, but why is it not listed there? Is there a way to get a real full list of rake tasks?
% rake ...
38
votes
3answers
7k views
Default task for namespace in Rake
Given something like:
namespace :my_tasks do
task :foo do
do_something
end
task :bar do
do_something_else
end
task :all => [:foo, :bar]
end
How do I make :all be the default ...
19
votes
3answers
7k views
How do I rake tasks within a ruby script?
I have a Rakefile with a rake task that I would normally call from the commandline (rake blog:post Title).
I'd like to write a ruby script that calls that rake task multiple times, but the only ...
12
votes
5answers
6k views
Error installing gems that use native extensions on Ubuntu, Ruby 1.9.2 via RVM
I get an error while trying to install the ffi gem:
~ - 16:54>gem i ffi
Building native extensions. This could take a while...
ERROR: Error installing ffi:
ERROR: Failed to build gem ...
18
votes
3answers
4k views
Seeding file uploads with CarrierWave, Rails 3
I'm trying to seed a database in Rails 3 with images using CarrierWave, however nothing I try seems to work short of having to upload them all by hand.
pi = ProductImage.new(:product => product)
...
13
votes
3answers
5k views
Create seed file from data already in the database
I'm using Rails 3.0.3 and have data for my "categories" table already in the database, but want to create a seed file from it. Is there any rake task that will generate the seeds.rb format for me from ...
43
votes
7answers
15k views
puts vs logger in rails rake tasks
In a rake task if I use puts command then I see the output on console. However I will not see that message in log file when app is deployed on production.
However if I say Rails.logger.info then in ...
12
votes
5answers
13k views
Rails and PostgreSQL: Role postgres does not exist
I have installed postgresql on my Mac OS Lion, and am working on a rails app. I use RVM to keep everything separate from my other rails apps.
For some reason when I try to migrate the db for the ...
12
votes
2answers
3k views
Why is Rake not able to invoke multiple tasks consecutively?
I have a Rake task which I have simplified below.
I'm using Ruby 1.9 on Windows.
Perhaps you would like to guess the outcome of calling the Rake task "list_all_levels" below? It should be:
"Hello ...
11
votes
3answers
3k views
How can I migrate my database with rails to the first revision without dropping the database first?
I have a database set up for my Rails installation and some migrations set up. I would like to be able to reset my database back down to having no tables/constraints/etc., but can't find a reasonable ...
10
votes
4answers
1k views
Rails exception notifier in rake tasks
I have a simple rails application with a few controller and some rake tasks. A couple of tasks are executed by cron configured with whenever gem.
One of my task is executed daily and sometime it ...
9
votes
3answers
8k views
no such file to load — rdoc/task
When I run
rake db:create
I receive this error
rake aborted!
no such file to load -- rdoc/task
(See full trace by running task with --trace)
Here is the --trace
...
6
votes
4answers
5k views
Use older version of Rake
I have Rake version 0.9.1 but I need to use 0.8.7 for a project, and I'm fairly certain I have both version installed but it always uses 0.9.1 by default. Is there a way to specify which version of ...
6
votes
4answers
1k views
Best rails solution for a mailer that runs every minute
I have an application that checks a database every minute for any emails that are supposed to be sent out at that time. I was thinking about making this a rake task that would be run by a cron job ...
0
votes
2answers
1k views
Specify custom primary key in migration
I have a data structure:
t.integer :userID
t.string :apikey
t.integer :characterID
The userID should be the primary key (name is not important, it can default to :id). However, I don't want ...