Tagged Questions
Rake is a Ruby build utility similar to make(1), with build commands defined in pure Ruby.
119
votes
8answers
22k 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 ...
112
votes
13answers
43k 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 ...
87
votes
5answers
24k 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 ...
79
votes
5answers
23k 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`
...
71
votes
5answers
15k 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 ...
71
votes
10answers
22k views
A cron job for rails: best practices?
What's the best way to run scheduled tasks in a Rails environment? Script/runner? Rake?
63
votes
7answers
12k 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 ...
62
votes
5answers
16k 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 => ...
51
votes
5answers
14k views
Bundle / Rake error
This is kinda weird - i do not think i changed any code in this particular application (but i was working on another app and performing some gem updates there)
When i started running the rake cron on ...
48
votes
2answers
7k 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 ...
39
votes
6answers
8k views
You have already activated rake 0.9.0, but your Gemfile requires rake 0.8.7
I'm trying to run rails project,
I get
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
If I do: "bundle install"
but
I'm getting
You have already ...
32
votes
5answers
13k 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
6k views
Rake “already initialized constant” 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 ...
31
votes
4answers
14k 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 ...
26
votes
7answers
12k 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 ...
21
votes
5answers
5k 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 ...
21
votes
4answers
12k 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 ...
20
votes
10answers
4k 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 ...
20
votes
8answers
9k 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 ...
19
votes
2answers
4k views
rake gems:refresh_specs error on unpacked gems
Following the great advice of Chris Wanstrath, I decided to vendor everything.
However, whenever I run a rake task now I get an error for each of my unpacked gems stating
config.gem: Unpacked gem ...
17
votes
2answers
3k views
Rails 3 app deployment, Bundler & Rake issues
Deploying a Rails3 app, and am having some issues getting rake to find the gems installed by 'bundle install --deployment':
$ rake db:migrate
(in /home/jrdev/rails/testapp)
rake aborted!
!!! Missing ...
17
votes
6answers
7k 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 ...
16
votes
6answers
7k 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' ...
16
votes
3answers
2k views
How do I return early from a rake task?
I have a rake task where I do some checks at the beginning, if one of the checks fails I would like to return early from the rake task, I don't want to execute any of the remaining code.
I thought ...
15
votes
2answers
2k 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 ...
15
votes
2answers
990 views
How do I use “gets” on a rake task?
I get an error whenever I try to use the function gets within a rake task. Is there a way to make it work?
The error says, "no such file or directory - (rake task name)"
13
votes
3answers
9k views
Can't find rake on Ruby Rails Install
Microsoft Windows [Version 6.0.6002]
Copyright (c) 2006 Microsoft Corporation. All rights reserved.
C:\Windows\system32>gem install rake
Successfully installed rake-0.8.7
1 gem installed
...
13
votes
3answers
3k views
including rake tasks in gems
1) Is there a 'best' place for rake tasks inside of gems? I've seen them in /tasks, /lib/tasks, and I've seen them written as *.rb and *.rake -- not sure which (if any) is 'correct'
2) How do I ...
13
votes
2answers
2k 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 ...
12
votes
5answers
9k views
rake: command not found
I'm trying to install rails on Ubuntu 9.10.
gem list --local
*** LOCAL GEMS ***
actionmailer (2.3.4, 2.3.2)
actionpack (2.3.4, 2.3.2)
activerecord (2.3.4, 2.3.2)
activeresource (2.3.4, 2.3.2)
...
11
votes
2answers
848 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 ...
11
votes
4answers
11k views
Ruby on Rails: no such file to load — openssl on RedHat Linux Enterprise
I am trying to do 'rake db:migrate' and getting the error message 'no such file to load -- openssl'. Both 'openssl' and 'openssl-devel' packages are installed. Others on Debian or Ubuntu seem to be ...
10
votes
2answers
2k views
What does bundle exec rake db:migrate mean?
I'm learning Ruby on Rails:
What does bundle exec rake db:migrate mean? I understand that bundle takes care of maintaining things in the Gemfile. I know what the word "exec" means. I understand ...
10
votes
4answers
2k views
Confused with rake error in Rails 3
Noob trying to decipher what to do with the following error:
rake aborted!
You have already activated rake 0.9.1, but your Gemfile requires rake 0.8.7. Consider using bundle exec.
Any help is ...
10
votes
5answers
2k 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 ...
10
votes
2answers
4k 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 ...
10
votes
2answers
509 views
Loading message and test results appears after running rake task in Rails application
The following output appears after running some rake tasks:
Loaded suite /usr/bin/rake
Started
Finished in 0.00042 seconds.
0 tests, 0 assertions, 0 failures, 0 errors
This output is not useful ...
10
votes
3answers
3k views
Run rake task in controller
I'd like to run a rake task in my controller. Is there any way to do this?
Thanks,
Sophy,
10
votes
5answers
2k views
Make rake task from gem available everywhere?
So I'm writing a small gem and I have a '/tasks' dir in it with some specific rake tasks. How do I make those tasks available automatically everywhere, where the gem is required? For example I wish I ...
10
votes
1answer
4k views
How do I rake tasks within a ruby script?
I've got 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 ...
9
votes
2answers
3k views
Rails 3 rake task can't find model in production
My simple rake task, stored in lib/tasks/items_spider.rake runs just fine in development. All it does is call spider! on the Item model.
namespace :items do
desc "Spider the web for data, hoorah"
...
9
votes
4answers
7k views
Rake can't be found
hey i played around with bundler and some gems and now i can't use rake anymore
if i do a simple db:migrate i get this error:
mac:app antpaw$ rake db:migrate
...
9
votes
3answers
1k views
Test Rake Tasks
I am developing a ROR app that relies on many custom Rake tasks.
What is the best way to test them?
9
votes
4answers
5k 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
...
8
votes
26answers
18k 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 ...
8
votes
2answers
932 views
Ruby: In unix find if user who executed the program is root
I'm writing a rake script and would like to detect (using Ruby rather than bash if possible) if the user who executed the rake script has root privileges.
If it is not root then I would like to ...
8
votes
4answers
2k views
Rake and current directory
How do I get the directory where the rakefile.rb is located?
I want to use this as my root directory to locate everything off.
Cheers
7
votes
2answers
434 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.
...
7
votes
2answers
685 views
Rails3 Devise undefined method `confirmation_url'
I've seemingly set up Devise for my User authentication, with the :confirmable option set.
Everything seems to run fine when I run it in the browser, I sign up, go to the confirmation url shown in ...
7
votes
3answers
2k views
Given a typical Rails 3 environment, why am I unable to execute any tests?
I'm working on writing simple unit tests for a Rails 3 project, but I'm unable to actually execute any tests.
Case in point, attempting to run the test auto-generated by Rails fails:
require ...