public
Description: Go plugins used by sbraford. Feel free to clone individually or as a whole.
Homepage:
Clone URL: git://github.com/sbraford/go-plugins.git
go-plugins / hello.rb
100644 10 lines (7 sloc) 0.114 kb
1
2
3
4
5
6
7
8
9
10
class Hello < Go::Plugin
  call_with 'hello'
  usage 'hello'
  
  def run
    puts "hello, world!"
  end
    
end