vote up 2 vote down star
1

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 could run 'rake mygemrake:task' inside my rails root dir after I have the gem installed.

flag

56% accept rate

2 Answers

vote up 1 vote down

You can't do that. At least, not with Rake. But that's what Sake is for. Datamapper and Merb have been using Sake with great success.

link|flag
vote up 1 vote down

Check out the rdoctask in rake for an example of how to define a task provided by a gem. The task is defined in ruby instead of the rake build language and can be required like so:

require 'rake'             # the gem
require 'rake/rdoctask'    # the task
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.