I\'m trying to write a rake task that will set up an environment mirroring my project. task :environment do
I want to use a Rake task to cache my sitemap so that requests for sitemap.xml won\'t take forever. Here\'s what I have so far:
I\'m new to Ruby, and I\'ve been trying to learn Rake, RSpec, and Cucumber.I found some code that will help me test my Rake tasks, but I\'m having trouble getting it开发者_Go百科 to work.I was told he
I\'m trying to use collectiveidea\'s delayed_job gem The installation instructions include Rake tasks are not automatically loaded from gems,开发者_StackOverflow中文版 so you’ll need to add
How can I run rake file for a nested project from the root directory? (2 cases: from console and from the root rakefile). Assume that I cannot mo开发者_如何学Cdify the nested rakefile and that it must
I\'m trying to figure out the best way to stitch together a fast, repeatable, unbreakable build process for the following environment.I\'ve got a plan for how to do it, but I\'d really appreciate a cr
I am writing a Rake script which consists of tasks with arguments. I figured out how to pass arguments and how to make a task dependent on other tasks.
I\'m writing a rakefile using Albacore for my .NET stuf开发者_StackOverflow社区f, and I\'m trying to figure out the easiest way to copy a project to another directory (artifacts) while excluding the .
Follow up to this question about GNU make: I\'ve got a directory, flac, containing .FLAC files. I\'ve got a corresponding directory, mp3 containing MP3 files. If a FLAC file is newer than the corresp
I have a controller action that generates a number of excel reports, this takes about 10 minutes to do. Sometimes I call it from my webapp, which is why it is an action.