Revisions
-
judofyr revised this gist
Nov 21, 2009 . 1 changed file with 3 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,10 @@ class Echo < Plugin author "Henrik Hodne (dvyjones)" permission :echo, :default => false help "Says whatever text you pass to it." def echo(line) say(line) end end -
sarahhodne created this gist
Nov 21, 2009 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ plugin do name "Echo" author "Henrik Hodne (dvyjones)" permission :echo, :default => false help "Says whatever text you pass to it." command(:echo, "*") do |line| say(line) end end