├── .gitignore ├── LICENCE.txt ├── README.mkd ├── irc_reudy.rb ├── lib └── reudy │ ├── attention_decider.rb │ ├── bot_irc_client.rb │ ├── gdbm.rb │ ├── irc-client.rb │ ├── message_log.rb │ ├── michiru.rb │ ├── pstore.rb │ ├── response_estimator.rb │ ├── reudy.rb │ ├── reudy_common.rb │ ├── similar_searcher.rb │ ├── tango-mecab.rb │ ├── tango-mgm.rb │ ├── thought_view.rb │ ├── word_associator.rb │ ├── word_searcher.rb │ ├── wordset.rb │ └── wtml_manager.rb ├── lingr_reudy.rb ├── manual ├── reudyman.html ├── reudywin.html └── style.css ├── public ├── log.yml └── setting.yml ├── stdio_reudy.rb └── twitter_reudy.rb /.gitignore: -------------------------------------------------------------------------------- 1 | public/* 2 | -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/README.mkd -------------------------------------------------------------------------------- /irc_reudy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/irc_reudy.rb -------------------------------------------------------------------------------- /lib/reudy/attention_decider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/attention_decider.rb -------------------------------------------------------------------------------- /lib/reudy/bot_irc_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/bot_irc_client.rb -------------------------------------------------------------------------------- /lib/reudy/gdbm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/gdbm.rb -------------------------------------------------------------------------------- /lib/reudy/irc-client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/irc-client.rb -------------------------------------------------------------------------------- /lib/reudy/message_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/message_log.rb -------------------------------------------------------------------------------- /lib/reudy/michiru.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/michiru.rb -------------------------------------------------------------------------------- /lib/reudy/pstore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/pstore.rb -------------------------------------------------------------------------------- /lib/reudy/response_estimator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/response_estimator.rb -------------------------------------------------------------------------------- /lib/reudy/reudy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/reudy.rb -------------------------------------------------------------------------------- /lib/reudy/reudy_common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/reudy_common.rb -------------------------------------------------------------------------------- /lib/reudy/similar_searcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/similar_searcher.rb -------------------------------------------------------------------------------- /lib/reudy/tango-mecab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/tango-mecab.rb -------------------------------------------------------------------------------- /lib/reudy/tango-mgm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/tango-mgm.rb -------------------------------------------------------------------------------- /lib/reudy/thought_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/thought_view.rb -------------------------------------------------------------------------------- /lib/reudy/word_associator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/word_associator.rb -------------------------------------------------------------------------------- /lib/reudy/word_searcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/word_searcher.rb -------------------------------------------------------------------------------- /lib/reudy/wordset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/wordset.rb -------------------------------------------------------------------------------- /lib/reudy/wtml_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lib/reudy/wtml_manager.rb -------------------------------------------------------------------------------- /lingr_reudy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/lingr_reudy.rb -------------------------------------------------------------------------------- /manual/reudyman.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/manual/reudyman.html -------------------------------------------------------------------------------- /manual/reudywin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/manual/reudywin.html -------------------------------------------------------------------------------- /manual/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/manual/style.css -------------------------------------------------------------------------------- /public/log.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/public/log.yml -------------------------------------------------------------------------------- /public/setting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/public/setting.yml -------------------------------------------------------------------------------- /stdio_reudy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/stdio_reudy.rb -------------------------------------------------------------------------------- /twitter_reudy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmasaki/Reudy19/HEAD/twitter_reudy.rb --------------------------------------------------------------------------------