X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=REQUIREMENTS;h=d367cb8b177496d470ce1efa6474b6103822d2e9;hb=6cf365c49ce5fbe24c0a4ff0663550390b501fea;hp=7b3473418c65c6240458751f7712627c0322b3ab;hpb=d8f47b0899f9ba055735250e91ac861e8adde447;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/REQUIREMENTS b/REQUIREMENTS index 7b347341..d367cb8b 100644 --- a/REQUIREMENTS +++ b/REQUIREMENTS @@ -2,22 +2,42 @@ Ruby modules needed for rbot ============================ Core requirements - bdb (berkley db) http://www.ruby-lang.org/en/raa-list.rhtml?name=bdb - (which requires libdb2 or better, from - www.sleepycat.com) - net/http 1.1+ - socket - uri + tokyocabinet for "tc" DB adaptor + http://1978th.net/tokyocabinet/ + you can install Ruby bindings via "gem install tokyocabinet", + but this still requires libtokyocabinet to be installed system-wide + you can install those requirement in debian like this: + sudo aptitude install libtokyocabinet9 libtokyocabinet-dev zlib1g-dev libbz2-dev + sqlite3 for "sqlite" DB adaptor + install with gem install sqlite, + this also requires development libraries on the system to be present. + mechanize install it using gem install mechanize + +Useful but fallback provided + ruby-gettext 1.8.0+ http://www.yotabanana.com/hiki/ruby-gettext.html?ruby-gettext + optional; if installed rbot can use localized messages + htmlentities http://htmlentities.rubyforge.org/ + optional; if installed rbot will use it to decode + HTML entities; if missing, an internal table with + the most common HTML entities will be used instead + hpricot http://code.whytheluckystiff.net/hpricot/ + optional, if installed rbot will used it to find + the first paragraph in HTML files; if missing, + regular expressions will be used instead + Plugin requirements (these are all optional, if you don't have them, the plugins just won't function) -babelfish, wserver: - net/http 1.2+ +twitter: + oauth, oauth2 + +shortenurls: + shorturl -slashdot, freshmeat, rss: - REXML +time: + tzinfo External programs needed for rbot ================================= @@ -25,6 +45,15 @@ External programs needed for rbot Plugin requirements (These are all optional) +cal plugin: + cal(1) + +figlet plugin: + figlet(6) + +fortune plugin: + fortune(6) + host plugin: host(1) @@ -32,3 +61,18 @@ spell plugin: ispell(1) +Running rbot on win32 +===================== + +OMYGOD no! + + http://www.fefe.de/nowindows/ + + +Further instructions +==================== + +For further instructions, check https://github.com/4poc/rbot/wiki/Install-Guide +For tips on handling the persistent plugin storage, backup, restore +and migration, check: https://github.com/4poc/rbot/wiki/Registry-Migration-Notes +