-
-
Save icleversoft/9857998 to your computer and use it in GitHub Desktop.
This file contains 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" [email protected] | |
# Invitation sent to 'Paul Engel <[email protected]>' | |
# |
This file contains 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