Web interface draft

This commit is contained in:
Gregory Eremin
2013-06-04 22:59:18 +04:00
parent 5a3b0b8754
commit 7404b2c696
54 changed files with 639 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
module Rake
class Task
alias :original_execute :execute
alias_method :original_execute, :execute
def execute(args)
RakeControl.wrap(name, comment) do
+2
View File
@@ -1,3 +1,5 @@
require 'rake'
require 'rake_control/version'
require 'rake_control/wrapper'
require File.expand_path('../rake/task', __FILE__)