votebot/MWClient.rb

8 lines
155 B
Ruby
Raw Normal View History

2017-01-15 08:18:33 +02:00
require 'mediawiki_api'
class MWClient < MediawikiApi::Client
def get_wikitext(title)
@conn.get '/index.php', action: 'raw', title: title
end
end