ruby / rake

A make-like build utility for Ruby.

Home Page:https://ruby.github.io/rake

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Perhaps prevent Rake from interpretting tasks beyond --

konsolebox opened this issue · comments

I extract task arguments directly from ARGV, beyond the -- string.

For example I do:

rake update_date -- _posts/xyz.markdown

And in the code I have the :update_date task extract the filename after --.

But to prevent Rake from interpreting arguments beyond --, I have to rerun it with with_aplication.

unless $_args_filtered || ARGV.empty?
  $_args_filtered = true
  app_args = ARGV.dup.take_while{ |a| a != "--" }

  unless app_args.size == ARGV.size
    Dir.chdir Rake.original_dir

    Rake.with_application do |application|
      application.run(app_args)
    end

    exit
  end
end

This is something I'd like to avoid if possible.