rake icon indicating copy to clipboard operation
rake copied to clipboard

A make-like build utility for Ruby.

Results 96 rake issues
Sort by recently updated
recently updated
newest added

Hello, our customer would like to have optional timestamps for rake output and I would like to contribute this feature if this is feasible. I did some research and it...

Rails version `4.2.7.1` ``` bundle exec rake test test/somewhere/file.rb -t ** Invoke test (first_time) ** Execute test ** Invoke test:single (first_time) ** Execute test:single Running via Spring preloader in process...

I'm not 100% certain on whether this change is desirable or self-evidently so. But I definitely had to do a double-take when I looked at the method definition and saw...

I think the current implementation of the file task makes perfect sense: just trigger a series of actions based on a file's status, in case you don't necessarily want to...

And if not, would this be a good idea for a pull request?

This PR allows regexp capturing and backreferencing to `task_pattern` in rules. ``` ruby rule task_pattern => source do |task| # action end ``` - `Regexp.last_match` (`$~`) will be set in...

In Rake v13.0.1, e.g.: `rake test test/controllers/some_test.rb` runs only the tests in `some_test.rb` `rake test ./test/controllers/some_test.rb` Seems to completely ignore the arg, and runs all tests. Expected to be equivalent...

Hello! First off I want to apologize, I'm not a ruby whiz but I'll try to document this the best I can. I ran into the following error when trying...

Hi, I'm a fan of Rake and love how it helps to ensure my Ruby projects build more reliably on different platforms! One thing I am curious about with Rake...

I need before and after hooks for all rake tasks. ``` task :my_before_hook, [:name] => :environment do |_t, args| puts "Rake task #{args[:name]} started" end task :my_after_hook, [:name] => :environment...