Class: Cinch::Plugins::Wikipedia

Inherits:
Object
  • Object
show all
Includes:
Cinch::Plugin
Defined in:
lib/cinch/plugins/wikipedia.rb,
lib/cinch/plugins/wikipedia/version.rb

Overview

Versioning information

Constant Summary collapse

VERSION =
'1.0.6'

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Wikipedia

Returns a new instance of Wikipedia.



18
19
20
21
# File 'lib/cinch/plugins/wikipedia.rb', line 18

def initialize(*args)
  super
  @max_length = config[:max_length] || 300
end

Instance Method Details

#execute(m, term) ⇒ Object



23
24
25
# File 'lib/cinch/plugins/wikipedia.rb', line 23

def execute(m, term)
  m.reply wiki(term)
end