Flowdock
method

create_rule

Importance_0
v1_9_3_392 - Show latest stable - 0 notes - Class: TaskManager
create_rule(*args, &block) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rake/task_manager.rb, line 17
    def create_rule(*args, &block)
      pattern, _, deps = resolve_args(args)
      pattern = Regexp.new(Regexp.quote(pattern) + '$') if String === pattern
      @rules << [pattern, deps, block]
    end
Register or log in to add new notes.