-
-
Save icleversoft/9857998 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require_relative "task" | |
| desc "Send an invite" | |
| task :invite do |name, email| | |
| puts "Invitation sent to '#{name} <#{email}>'" | |
| end | |
| # Example: | |
| # | |
| # $ rake invite "Paul Engel" paul@engel.com | |
| # Invitation sent to 'Paul Engel <paul@engel.com>' | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Rake | |
| class Task | |
| class << self | |
| alias :original_define_task :define_task | |
| end | |
| def self.define_task(*args, &block) | |
| original_define_task *args do |task| | |
| if block_given? | |
| arguments = ARGV.select do |arg| | |
| !arg.include?(task.name) && original_define_task(arg.to_sym) do; end | |
| end | |
| block.call *arguments | |
| end | |
| end | |
| end | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment