nadoka 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. data/.gitignore +5 -0
  2. data/ChangeLog.old +1553 -0
  3. data/Gemfile +4 -0
  4. data/README.org +31 -0
  5. data/Rakefile +1 -0
  6. data/bin/nadoka +13 -0
  7. data/lib/rss_check.rb +206 -0
  8. data/lib/tagparts.rb +206 -0
  9. data/nadoka.gemspec +29 -0
  10. data/nadoka.rb +123 -0
  11. data/nadokarc +267 -0
  12. data/ndk/bot.rb +241 -0
  13. data/ndk/client.rb +288 -0
  14. data/ndk/config.rb +571 -0
  15. data/ndk/error.rb +61 -0
  16. data/ndk/logger.rb +311 -0
  17. data/ndk/server.rb +784 -0
  18. data/ndk/server_state.rb +324 -0
  19. data/ndk/version.rb +44 -0
  20. data/plugins/autoawaybot.nb +66 -0
  21. data/plugins/autodumpbot.nb +227 -0
  22. data/plugins/autoop.nb +56 -0
  23. data/plugins/backlogbot.nb +88 -0
  24. data/plugins/checkbot.nb +64 -0
  25. data/plugins/cronbot.nb +20 -0
  26. data/plugins/dictbot.nb +53 -0
  27. data/plugins/drbcl.rb +39 -0
  28. data/plugins/drbot.nb +93 -0
  29. data/plugins/evalbot.nb +49 -0
  30. data/plugins/gonzuibot.nb +41 -0
  31. data/plugins/googlebot.nb +345 -0
  32. data/plugins/identifynickserv.nb +43 -0
  33. data/plugins/mailcheckbot.nb +0 -0
  34. data/plugins/marldiabot.nb +99 -0
  35. data/plugins/messagebot.nb +96 -0
  36. data/plugins/modemanager.nb +150 -0
  37. data/plugins/opensearchbot.nb +156 -0
  38. data/plugins/opshop.nb +23 -0
  39. data/plugins/pastebot.nb +46 -0
  40. data/plugins/roulettebot.nb +33 -0
  41. data/plugins/rss_checkbot.nb +121 -0
  42. data/plugins/samplebot.nb +24 -0
  43. data/plugins/sendpingbot.nb +17 -0
  44. data/plugins/shellbot.nb +59 -0
  45. data/plugins/sixamobot.nb +77 -0
  46. data/plugins/tenkibot.nb +111 -0
  47. data/plugins/timestampbot.nb +62 -0
  48. data/plugins/titlebot.nb +226 -0
  49. data/plugins/translatebot.nb +301 -0
  50. data/plugins/twitterbot.nb +138 -0
  51. data/plugins/weba.nb +209 -0
  52. data/plugins/xibot.nb +113 -0
  53. data/rice/irc.rb +780 -0
  54. metadata +102 -0
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nadoka
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.8.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Kazuhiro NISHIYAMA
9
+ - SASADA Koichi
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2012-02-29 00:00:00.000000000 Z
14
+ dependencies: []
15
+ description: Nadoka is a tool for monitoring and logging IRC conversations and responding
16
+ to specially formatted requests. You define and customize these responses in Ruby.
17
+ Nadoka is conceptually similar to Madoka, an older proxy written in Perl.
18
+ email:
19
+ - kzhr.nsym@gmail.com
20
+ executables:
21
+ - nadoka
22
+ extensions: []
23
+ extra_rdoc_files: []
24
+ files:
25
+ - .gitignore
26
+ - ChangeLog.old
27
+ - Gemfile
28
+ - README.org
29
+ - Rakefile
30
+ - bin/nadoka
31
+ - lib/rss_check.rb
32
+ - lib/tagparts.rb
33
+ - nadoka.gemspec
34
+ - nadoka.rb
35
+ - nadokarc
36
+ - ndk/bot.rb
37
+ - ndk/client.rb
38
+ - ndk/config.rb
39
+ - ndk/error.rb
40
+ - ndk/logger.rb
41
+ - ndk/server.rb
42
+ - ndk/server_state.rb
43
+ - ndk/version.rb
44
+ - plugins/autoawaybot.nb
45
+ - plugins/autodumpbot.nb
46
+ - plugins/autoop.nb
47
+ - plugins/backlogbot.nb
48
+ - plugins/checkbot.nb
49
+ - plugins/cronbot.nb
50
+ - plugins/dictbot.nb
51
+ - plugins/drbcl.rb
52
+ - plugins/drbot.nb
53
+ - plugins/evalbot.nb
54
+ - plugins/gonzuibot.nb
55
+ - plugins/googlebot.nb
56
+ - plugins/identifynickserv.nb
57
+ - plugins/mailcheckbot.nb
58
+ - plugins/marldiabot.nb
59
+ - plugins/messagebot.nb
60
+ - plugins/modemanager.nb
61
+ - plugins/opensearchbot.nb
62
+ - plugins/opshop.nb
63
+ - plugins/pastebot.nb
64
+ - plugins/roulettebot.nb
65
+ - plugins/rss_checkbot.nb
66
+ - plugins/samplebot.nb
67
+ - plugins/sendpingbot.nb
68
+ - plugins/shellbot.nb
69
+ - plugins/sixamobot.nb
70
+ - plugins/tenkibot.nb
71
+ - plugins/timestampbot.nb
72
+ - plugins/titlebot.nb
73
+ - plugins/translatebot.nb
74
+ - plugins/twitterbot.nb
75
+ - plugins/weba.nb
76
+ - plugins/xibot.nb
77
+ - rice/irc.rb
78
+ homepage: https://github.com/nadoka/nadoka
79
+ licenses: []
80
+ post_install_message:
81
+ rdoc_options: []
82
+ require_paths:
83
+ - lib
84
+ required_ruby_version: !ruby/object:Gem::Requirement
85
+ none: false
86
+ requirements:
87
+ - - ! '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
+ none: false
92
+ requirements:
93
+ - - ! '>='
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ requirements: []
97
+ rubyforge_project: nadoka
98
+ rubygems_version: 1.8.11
99
+ signing_key:
100
+ specification_version: 3
101
+ summary: IRC logger, monitor and proxy program ("bot")
102
+ test_files: []