Skip to content

Instantly share code, notes, and snippets.

@omgitsads
Created July 24, 2012 16:32
Show Gist options
  • Save omgitsads/3171053 to your computer and use it in GitHub Desktop.
Save omgitsads/3171053 to your computer and use it in GitHub Desktop.
Scamp V2 plugin example
require 'scamp/plugin'
class MyPlugin < Scamp::Plugin
match /^ping$/, :say_pong
def say_pong context, msg
context.say "pong"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment