rake
                                
                                 rake copied to clipboard
                                
                                    rake copied to clipboard
                            
                            
                            
                        Rake runs everything that is named like a file/folder
rake foo
Don't know how to build task foo
rake Gemfile
... no output ... and does not fail
especially annoying with things like rake test doing nothing -> CI being green and nobody noticing ...
@grosser I understood your issue. Should we ignore only folder without file?
ignore all arguments that are not tasks ideally ... not sure what this file as argument bug/feature is used for ..
Whenever a requested task (name) is satisfied by no defined task, but only satisfied by a file (or directory) name, Rake could print an announcement (even without --verbose).
That UI feature change might clarify this behavior (which arguably is somewhat mysterious to some users). Would it provide sufficient information for the CI case?
For those whose Rakefiles contain file tasks, would the noise of such announcements be too problematic?
ignore all arguments that are not tasks ideally ... not sure what this file as argument bug/feature is used for ..
For an excellent introduction to this, see Avdi Grimm's Part 1: Files and Rules from his Rake series, mentioned here in the README.
Could not find anything helpful at this link.
I don't see any usecase for rake test doing nothing when there is no test task defined.
Do you ?
I created #234 which appears to be a dupe of this. #234 diagnoses the problem, so maybe this discussion should move over there?