cerberus 0.6 → 0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (290) hide show
  1. data/Authors.txt +4 -0
  2. data/Changelog.txt +11 -0
  3. data/Copyright.txt +16 -0
  4. data/Rakefile +16 -25
  5. data/Readme.markdown +1 -3
  6. data/bin/cerberus +5 -0
  7. data/lib/cerberus/builder/bjam.rb +1 -3
  8. data/lib/cerberus/builder/maven2.rb +0 -1
  9. data/lib/cerberus/builder/rake.rb +1 -1
  10. data/lib/cerberus/builder/rspec.rb +0 -1
  11. data/lib/cerberus/builder/ruby_base.rb +0 -1
  12. data/lib/cerberus/component_lazy_loader.rb +6 -2
  13. data/lib/cerberus/config.example.yml +1 -0
  14. data/lib/cerberus/constants.rb +2 -2
  15. data/lib/cerberus/manager.rb +7 -1
  16. data/lib/cerberus/publisher/mail.rb +4 -4
  17. data/lib/cerberus/publisher/twitter.rb +0 -1
  18. data/lib/cerberus/scm/base.rb +19 -0
  19. data/lib/cerberus/scm/bzr.rb +62 -0
  20. data/lib/cerberus/scm/cvs.rb +2 -7
  21. data/lib/cerberus/scm/darcs.rb +2 -11
  22. data/lib/cerberus/scm/git.rb +6 -14
  23. data/lib/cerberus/scm/perforce.rb +4 -4
  24. data/lib/cerberus/scm/svn.rb +2 -7
  25. data/lib/cerberus/utils.rb +5 -0
  26. data/lib/vendor/irc/README +23 -0
  27. data/lib/vendor/irc/lib/IRC.rb +164 -0
  28. data/lib/vendor/irc/lib/IRCChannel.rb +33 -0
  29. data/lib/vendor/irc/lib/IRCConnection.rb +134 -0
  30. data/lib/vendor/irc/lib/IRCEvent.rb +91 -0
  31. data/lib/vendor/irc/lib/IRCUser.rb +23 -0
  32. data/lib/vendor/irc/lib/IRCUtil.rb +49 -0
  33. data/lib/vendor/irc/lib/eventmap.yml +247 -0
  34. data/lib/vendor/twitter/CHANGES +129 -0
  35. data/lib/vendor/twitter/MIT-LICENSE +20 -0
  36. data/lib/vendor/twitter/README +37 -0
  37. data/lib/vendor/twitter/TODO +7 -0
  38. data/lib/vendor/twitter/lib/twitter.rb +34 -0
  39. data/lib/vendor/twitter/lib/twitter/client.rb +24 -0
  40. data/lib/vendor/twitter/lib/twitter/client/account.rb +24 -0
  41. data/lib/vendor/twitter/lib/twitter/client/auth.rb +27 -0
  42. data/lib/vendor/twitter/lib/twitter/client/base.rb +93 -0
  43. data/lib/vendor/twitter/lib/twitter/client/blocks.rb +35 -0
  44. data/lib/vendor/twitter/lib/twitter/client/favorites.rb +53 -0
  45. data/lib/vendor/twitter/lib/twitter/client/friendship.rb +35 -0
  46. data/lib/vendor/twitter/lib/twitter/client/graph.rb +37 -0
  47. data/lib/vendor/twitter/lib/twitter/client/messaging.rb +79 -0
  48. data/lib/vendor/twitter/lib/twitter/client/profile.rb +29 -0
  49. data/lib/vendor/twitter/lib/twitter/client/search.rb +27 -0
  50. data/lib/vendor/twitter/lib/twitter/client/status.rb +51 -0
  51. data/lib/vendor/twitter/lib/twitter/client/timeline.rb +72 -0
  52. data/lib/vendor/twitter/lib/twitter/client/user.rb +65 -0
  53. data/lib/vendor/twitter/lib/twitter/config.rb +77 -0
  54. data/lib/vendor/twitter/lib/twitter/console.rb +31 -0
  55. data/lib/vendor/twitter/lib/twitter/core.rb +137 -0
  56. data/lib/vendor/twitter/lib/twitter/ext.rb +2 -0
  57. data/lib/vendor/twitter/lib/twitter/ext/stdlib.rb +52 -0
  58. data/lib/vendor/twitter/lib/twitter/extras.rb +39 -0
  59. data/lib/vendor/twitter/lib/twitter/meta.rb +56 -0
  60. data/lib/vendor/twitter/lib/twitter/model.rb +360 -0
  61. data/lib/vendor/twitter/lib/twitter/version.rb +19 -0
  62. data/lib/vendor/twitter/spec/twitter/client/account_spec.rb +28 -0
  63. data/lib/vendor/twitter/spec/twitter/client/auth_spec.rb +34 -0
  64. data/lib/vendor/twitter/spec/twitter/client/base_spec.rb +242 -0
  65. data/lib/vendor/twitter/spec/twitter/client/blocks_spec.rb +76 -0
  66. data/lib/vendor/twitter/spec/twitter/client/favorites_spec.rb +183 -0
  67. data/lib/vendor/twitter/spec/twitter/client/friendship_spec.rb +76 -0
  68. data/lib/vendor/twitter/spec/twitter/client/graph_spec.rb +67 -0
  69. data/lib/vendor/twitter/spec/twitter/client/messaging_spec.rb +135 -0
  70. data/lib/vendor/twitter/spec/twitter/client/profile_spec.rb +91 -0
  71. data/lib/vendor/twitter/spec/twitter/client/search_spec.rb +68 -0
  72. data/lib/vendor/twitter/spec/twitter/client/status_spec.rb +119 -0
  73. data/lib/vendor/twitter/spec/twitter/client/timeline_spec.rb +79 -0
  74. data/lib/vendor/twitter/spec/twitter/client/user_spec.rb +203 -0
  75. data/lib/vendor/twitter/spec/twitter/client_spec.rb +2 -0
  76. data/lib/vendor/twitter/spec/twitter/config_spec.rb +86 -0
  77. data/lib/vendor/twitter/spec/twitter/console_spec.rb +15 -0
  78. data/lib/vendor/twitter/spec/twitter/core_spec.rb +127 -0
  79. data/lib/vendor/twitter/spec/twitter/ext/stdlib_spec.rb +59 -0
  80. data/lib/vendor/twitter/spec/twitter/extras_spec.rb +46 -0
  81. data/lib/vendor/twitter/spec/twitter/meta_spec.rb +90 -0
  82. data/lib/vendor/twitter/spec/twitter/model_spec.rb +508 -0
  83. data/lib/vendor/twitter/spec/twitter/version_spec.rb +19 -0
  84. data/lib/vendor/xmpp4r/CHANGELOG +83 -0
  85. data/lib/vendor/xmpp4r/COPYING +340 -0
  86. data/lib/vendor/xmpp4r/LICENSE +59 -0
  87. data/lib/vendor/xmpp4r/README.rdoc +110 -0
  88. data/lib/vendor/xmpp4r/README_ruby19.txt +43 -0
  89. data/lib/vendor/xmpp4r/Rakefile +262 -0
  90. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/README +56 -0
  91. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/adventure.rb +23 -0
  92. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/adventuremuc.rb +136 -0
  93. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/cube.xml +15 -0
  94. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/tower.xml +69 -0
  95. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/world.rb +424 -0
  96. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/fileserve.conf +11 -0
  97. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/fileserve.rb +346 -0
  98. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/getonline.rb +56 -0
  99. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/gtkmucclient.rb +315 -0
  100. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/migrate.rb +88 -0
  101. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/minimuc.rb +266 -0
  102. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/pep-aggregator/index.xsl +235 -0
  103. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/pep-aggregator/pep-aggregator.rb +147 -0
  104. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/recvfile.rb +84 -0
  105. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/rosterdiscovery.rb +129 -0
  106. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/sendfile.conf +10 -0
  107. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/sendfile.rb +72 -0
  108. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr.rb +51 -0
  109. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_jabber.rb +43 -0
  110. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_test.rb +10 -0
  111. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/versionpoll.rb +90 -0
  112. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/xmpping.rb +146 -0
  113. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/xmppingrc.sample +14 -0
  114. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/change_password.rb +41 -0
  115. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/client.rb +70 -0
  116. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/component.rb +11 -0
  117. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/echo.rb +37 -0
  118. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/jabbersend.rb +41 -0
  119. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/mass_sender.rb +68 -0
  120. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/muc_owner_config.rb +12 -0
  121. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/mucinfo.rb +41 -0
  122. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/mucsimplebot.rb +82 -0
  123. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/register.rb +42 -0
  124. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/remove_registration.rb +18 -0
  125. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/roster.rb +44 -0
  126. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/rosterprint.rb +50 -0
  127. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/rosterrename.rb +34 -0
  128. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/rosterwatch.rb +171 -0
  129. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/send_vcard.rb +67 -0
  130. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/tune_client.rb +56 -0
  131. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/tune_server.rb +58 -0
  132. data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/versionbot.rb +75 -0
  133. data/lib/vendor/xmpp4r/lib/xmpp4r.rb +116 -0
  134. data/lib/vendor/xmpp4r/lib/xmpp4r/base64.rb +32 -0
  135. data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams.rb +15 -0
  136. data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/filetransfer.rb +319 -0
  137. data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/ibb/base.rb +257 -0
  138. data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/ibb/initiator.rb +31 -0
  139. data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/ibb/target.rb +47 -0
  140. data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb +152 -0
  141. data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb +86 -0
  142. data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb +198 -0
  143. data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb +65 -0
  144. data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb +73 -0
  145. data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb.orig +62 -0
  146. data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/iq/bytestreams.rb +170 -0
  147. data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/iq/si.rb +206 -0
  148. data/lib/vendor/xmpp4r/lib/xmpp4r/callbacks.rb +124 -0
  149. data/lib/vendor/xmpp4r/lib/xmpp4r/caps.rb +1 -0
  150. data/lib/vendor/xmpp4r/lib/xmpp4r/caps/c.rb +53 -0
  151. data/lib/vendor/xmpp4r/lib/xmpp4r/caps/helper/generator.rb +160 -0
  152. data/lib/vendor/xmpp4r/lib/xmpp4r/caps/helper/helper.rb +87 -0
  153. data/lib/vendor/xmpp4r/lib/xmpp4r/client.rb +317 -0
  154. data/lib/vendor/xmpp4r/lib/xmpp4r/command/helper/responder.rb +53 -0
  155. data/lib/vendor/xmpp4r/lib/xmpp4r/command/iq/command.rb +154 -0
  156. data/lib/vendor/xmpp4r/lib/xmpp4r/component.rb +103 -0
  157. data/lib/vendor/xmpp4r/lib/xmpp4r/connection.rb +219 -0
  158. data/lib/vendor/xmpp4r/lib/xmpp4r/dataforms.rb +5 -0
  159. data/lib/vendor/xmpp4r/lib/xmpp4r/dataforms/x/data.rb +297 -0
  160. data/lib/vendor/xmpp4r/lib/xmpp4r/debuglog.rb +42 -0
  161. data/lib/vendor/xmpp4r/lib/xmpp4r/delay.rb +5 -0
  162. data/lib/vendor/xmpp4r/lib/xmpp4r/delay/x/delay.rb +99 -0
  163. data/lib/vendor/xmpp4r/lib/xmpp4r/discovery.rb +7 -0
  164. data/lib/vendor/xmpp4r/lib/xmpp4r/discovery/helper/responder.rb +165 -0
  165. data/lib/vendor/xmpp4r/lib/xmpp4r/discovery/iq/discoinfo.rb +211 -0
  166. data/lib/vendor/xmpp4r/lib/xmpp4r/discovery/iq/discoitems.rb +147 -0
  167. data/lib/vendor/xmpp4r/lib/xmpp4r/errors.rb +281 -0
  168. data/lib/vendor/xmpp4r/lib/xmpp4r/feature_negotiation.rb +5 -0
  169. data/lib/vendor/xmpp4r/lib/xmpp4r/feature_negotiation/iq/feature.rb +28 -0
  170. data/lib/vendor/xmpp4r/lib/xmpp4r/framework/base.rb +55 -0
  171. data/lib/vendor/xmpp4r/lib/xmpp4r/framework/bot.rb +148 -0
  172. data/lib/vendor/xmpp4r/lib/xmpp4r/httpbinding.rb +5 -0
  173. data/lib/vendor/xmpp4r/lib/xmpp4r/httpbinding/client.rb +285 -0
  174. data/lib/vendor/xmpp4r/lib/xmpp4r/idgenerator.rb +37 -0
  175. data/lib/vendor/xmpp4r/lib/xmpp4r/iq.rb +221 -0
  176. data/lib/vendor/xmpp4r/lib/xmpp4r/jid.rb +167 -0
  177. data/lib/vendor/xmpp4r/lib/xmpp4r/message.rb +148 -0
  178. data/lib/vendor/xmpp4r/lib/xmpp4r/muc.rb +14 -0
  179. data/lib/vendor/xmpp4r/lib/xmpp4r/muc/helper/mucbrowser.rb +92 -0
  180. data/lib/vendor/xmpp4r/lib/xmpp4r/muc/helper/mucclient.rb +462 -0
  181. data/lib/vendor/xmpp4r/lib/xmpp4r/muc/helper/simplemucclient.rb +332 -0
  182. data/lib/vendor/xmpp4r/lib/xmpp4r/muc/iq/mucadmin.rb +23 -0
  183. data/lib/vendor/xmpp4r/lib/xmpp4r/muc/iq/mucadminitem.rb +20 -0
  184. data/lib/vendor/xmpp4r/lib/xmpp4r/muc/iq/mucowner.rb +15 -0
  185. data/lib/vendor/xmpp4r/lib/xmpp4r/muc/item.rb +143 -0
  186. data/lib/vendor/xmpp4r/lib/xmpp4r/muc/x/muc.rb +70 -0
  187. data/lib/vendor/xmpp4r/lib/xmpp4r/muc/x/mucuserinvite.rb +60 -0
  188. data/lib/vendor/xmpp4r/lib/xmpp4r/muc/x/mucuseritem.rb +36 -0
  189. data/lib/vendor/xmpp4r/lib/xmpp4r/presence.rb +232 -0
  190. data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub.rb +8 -0
  191. data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/configuration.rb +86 -0
  192. data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/event.rb +49 -0
  193. data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/item.rb +35 -0
  194. data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/items.rb +44 -0
  195. data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/node_config.rb +48 -0
  196. data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/publish.rb +24 -0
  197. data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/subscription.rb +62 -0
  198. data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/subscription_config.rb +67 -0
  199. data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/unsubscribe.rb +48 -0
  200. data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/helper/nodebrowser.rb +130 -0
  201. data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/helper/nodehelper.rb +156 -0
  202. data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/helper/servicehelper.rb +417 -0
  203. data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/iq/pubsub.rb +19 -0
  204. data/lib/vendor/xmpp4r/lib/xmpp4r/query.rb +15 -0
  205. data/lib/vendor/xmpp4r/lib/xmpp4r/rexmladdons.rb +151 -0
  206. data/lib/vendor/xmpp4r/lib/xmpp4r/roster.rb +7 -0
  207. data/lib/vendor/xmpp4r/lib/xmpp4r/roster/helper/roster.rb +519 -0
  208. data/lib/vendor/xmpp4r/lib/xmpp4r/roster/iq/roster.rb +215 -0
  209. data/lib/vendor/xmpp4r/lib/xmpp4r/roster/x/roster.rb +138 -0
  210. data/lib/vendor/xmpp4r/lib/xmpp4r/rpc.rb +2 -0
  211. data/lib/vendor/xmpp4r/lib/xmpp4r/rpc/helper/client.rb +123 -0
  212. data/lib/vendor/xmpp4r/lib/xmpp4r/rpc/helper/server.rb +74 -0
  213. data/lib/vendor/xmpp4r/lib/xmpp4r/rpc/helper/xmlrpcaddons.rb +67 -0
  214. data/lib/vendor/xmpp4r/lib/xmpp4r/rpc/iq/rpc.rb +23 -0
  215. data/lib/vendor/xmpp4r/lib/xmpp4r/sasl.rb +237 -0
  216. data/lib/vendor/xmpp4r/lib/xmpp4r/semaphore.rb +38 -0
  217. data/lib/vendor/xmpp4r/lib/xmpp4r/stream.rb +497 -0
  218. data/lib/vendor/xmpp4r/lib/xmpp4r/streamparser.rb +77 -0
  219. data/lib/vendor/xmpp4r/lib/xmpp4r/tune.rb +2 -0
  220. data/lib/vendor/xmpp4r/lib/xmpp4r/tune/helper/helper.rb +58 -0
  221. data/lib/vendor/xmpp4r/lib/xmpp4r/tune/tune.rb +113 -0
  222. data/lib/vendor/xmpp4r/lib/xmpp4r/vcard.rb +6 -0
  223. data/lib/vendor/xmpp4r/lib/xmpp4r/vcard/helper/vcard.rb +84 -0
  224. data/lib/vendor/xmpp4r/lib/xmpp4r/vcard/iq/vcard.rb +109 -0
  225. data/lib/vendor/xmpp4r/lib/xmpp4r/version.rb +7 -0
  226. data/lib/vendor/xmpp4r/lib/xmpp4r/version/helper/responder.rb +72 -0
  227. data/lib/vendor/xmpp4r/lib/xmpp4r/version/helper/simpleresponder.rb +44 -0
  228. data/lib/vendor/xmpp4r/lib/xmpp4r/version/iq/version.rb +105 -0
  229. data/lib/vendor/xmpp4r/lib/xmpp4r/x.rb +37 -0
  230. data/lib/vendor/xmpp4r/lib/xmpp4r/xhtml.rb +1 -0
  231. data/lib/vendor/xmpp4r/lib/xmpp4r/xhtml/html.rb +115 -0
  232. data/lib/vendor/xmpp4r/lib/xmpp4r/xmpp4r.rb +18 -0
  233. data/lib/vendor/xmpp4r/lib/xmpp4r/xmppelement.rb +168 -0
  234. data/lib/vendor/xmpp4r/lib/xmpp4r/xmppstanza.rb +162 -0
  235. data/lib/vendor/xmpp4r/setup.rb +1586 -0
  236. data/lib/vendor/xmpp4r/test/bytestreams/tc_ibb.rb +186 -0
  237. data/lib/vendor/xmpp4r/test/bytestreams/tc_socks5bytestreams.rb +113 -0
  238. data/lib/vendor/xmpp4r/test/caps/tc_helper.rb +156 -0
  239. data/lib/vendor/xmpp4r/test/dataforms/tc_data.rb +81 -0
  240. data/lib/vendor/xmpp4r/test/delay/tc_xdelay.rb +51 -0
  241. data/lib/vendor/xmpp4r/test/discovery/tc_responder.rb +91 -0
  242. data/lib/vendor/xmpp4r/test/lib/assert_equal_xml.rb +14 -0
  243. data/lib/vendor/xmpp4r/test/lib/clienttester.rb +120 -0
  244. data/lib/vendor/xmpp4r/test/muc/tc_muc_mucclient.rb +830 -0
  245. data/lib/vendor/xmpp4r/test/muc/tc_muc_simplemucclient.rb +114 -0
  246. data/lib/vendor/xmpp4r/test/muc/tc_mucowner.rb +50 -0
  247. data/lib/vendor/xmpp4r/test/pubsub/tc_helper.rb +662 -0
  248. data/lib/vendor/xmpp4r/test/pubsub/tc_nodeconfig.rb +54 -0
  249. data/lib/vendor/xmpp4r/test/pubsub/tc_subscriptionconfig.rb +41 -0
  250. data/lib/vendor/xmpp4r/test/roster/tc_helper.rb +514 -0
  251. data/lib/vendor/xmpp4r/test/roster/tc_iqqueryroster.rb +173 -0
  252. data/lib/vendor/xmpp4r/test/roster/tc_xroster.rb +73 -0
  253. data/lib/vendor/xmpp4r/test/rpc/tc_helper.rb +96 -0
  254. data/lib/vendor/xmpp4r/test/tc_callbacks.rb +129 -0
  255. data/lib/vendor/xmpp4r/test/tc_class_names.rb +146 -0
  256. data/lib/vendor/xmpp4r/test/tc_client.rb +30 -0
  257. data/lib/vendor/xmpp4r/test/tc_errors.rb +146 -0
  258. data/lib/vendor/xmpp4r/test/tc_idgenerator.rb +30 -0
  259. data/lib/vendor/xmpp4r/test/tc_iq.rb +113 -0
  260. data/lib/vendor/xmpp4r/test/tc_iqquery.rb +31 -0
  261. data/lib/vendor/xmpp4r/test/tc_jid.rb +204 -0
  262. data/lib/vendor/xmpp4r/test/tc_message.rb +116 -0
  263. data/lib/vendor/xmpp4r/test/tc_presence.rb +150 -0
  264. data/lib/vendor/xmpp4r/test/tc_rexml.rb +139 -0
  265. data/lib/vendor/xmpp4r/test/tc_stream.rb +229 -0
  266. data/lib/vendor/xmpp4r/test/tc_streamComponent.rb +95 -0
  267. data/lib/vendor/xmpp4r/test/tc_streamError.rb +131 -0
  268. data/lib/vendor/xmpp4r/test/tc_streamSend.rb +59 -0
  269. data/lib/vendor/xmpp4r/test/tc_streamparser.rb +112 -0
  270. data/lib/vendor/xmpp4r/test/tc_xmppstanza.rb +135 -0
  271. data/lib/vendor/xmpp4r/test/ts_xmpp4r.rb +53 -0
  272. data/lib/vendor/xmpp4r/test/tune/tc_helper_recv.rb +84 -0
  273. data/lib/vendor/xmpp4r/test/tune/tc_helper_send.rb +74 -0
  274. data/lib/vendor/xmpp4r/test/tune/tc_tune.rb +79 -0
  275. data/lib/vendor/xmpp4r/test/vcard/tc_helper.rb +49 -0
  276. data/lib/vendor/xmpp4r/test/vcard/tc_iqvcard.rb +62 -0
  277. data/lib/vendor/xmpp4r/test/version/tc_helper.rb +60 -0
  278. data/lib/vendor/xmpp4r/test/version/tc_iqqueryversion.rb +97 -0
  279. data/lib/vendor/xmpp4r/test/xhtml/tc_html.rb +41 -0
  280. data/lib/vendor/xmpp4r/tools/gen_requires.bash +31 -0
  281. data/lib/vendor/xmpp4r/tools/xmpp4r-gemspec-test.rb +11 -0
  282. data/lib/vendor/xmpp4r/xmpp4r.gemspec +291 -0
  283. data/test/jabber_publisher_test.rb +1 -1
  284. data/test/mail_publisher_test.rb +2 -2
  285. data/test/mock/twitter.rb +0 -1
  286. data/test/rspec_builder_test.rb +39 -2
  287. data/test/rss_publisher_test.rb +1 -1
  288. data/test/twitter_publisher_test.rb +1 -1
  289. metadata +268 -53
  290. data/lib/cerberus/publisher/gmailer.rb +0 -17
@@ -15,7 +15,7 @@ class RSSPublisherTest < Test::Unit::TestCase
15
15
 
16
16
  xml = REXML::Document.new(IO.read(rss_file.path))
17
17
 
18
- assert_equal '[RSS<App] Build still broken (#1235)', xml.elements["rss/channel/item/title/"].get_text.value
18
+ assert_equal '[RSS<App] Build still broken (1235)', xml.elements["rss/channel/item/title/"].get_text.value
19
19
  assert_match %r{<pre>last message\nthis is output\n--\nThis email generated by Cerberus tool ver\. \d.\d(.\d)?, http://cerberus.rubyforge.org/</pre>},
20
20
  xml.elements["rss/channel/item/description/"].get_text.value
21
21
  end
@@ -14,6 +14,6 @@ class TwitterPublisherTest < Test::Unit::TestCase
14
14
 
15
15
  statuses = Twitter::Client.statuses
16
16
  assert_equal 1, statuses.size
17
- assert_equal '[TestApp] Build still broken (#1232)', statuses.first
17
+ assert_equal '[TestApp] Build still broken (1232)', statuses.first
18
18
  end
19
19
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cerberus
3
3
  version: !ruby/object:Gem::Version
4
- version: "0.6"
4
+ version: "0.7"
5
5
  platform: ruby
6
6
  authors:
7
7
  - Craig P Jolicoeur
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-05-29 00:00:00 -04:00
12
+ date: 2009-08-05 00:00:00 -04:00
13
13
  default_executable: cerberus
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -42,46 +42,6 @@ dependencies:
42
42
  - !ruby/object:Gem::Version
43
43
  version: 0.7.3
44
44
  version:
45
- - !ruby/object:Gem::Dependency
46
- name: xmpp4r
47
- type: :runtime
48
- version_requirement:
49
- version_requirements: !ruby/object:Gem::Requirement
50
- requirements:
51
- - - ">="
52
- - !ruby/object:Gem::Version
53
- version: 0.3.1
54
- version:
55
- - !ruby/object:Gem::Dependency
56
- name: Ruby-IRC
57
- type: :runtime
58
- version_requirement:
59
- version_requirements: !ruby/object:Gem::Requirement
60
- requirements:
61
- - - ">="
62
- - !ruby/object:Gem::Version
63
- version: 1.0.7
64
- version:
65
- - !ruby/object:Gem::Dependency
66
- name: gmailer
67
- type: :runtime
68
- version_requirement:
69
- version_requirements: !ruby/object:Gem::Requirement
70
- requirements:
71
- - - ">="
72
- - !ruby/object:Gem::Version
73
- version: 0.1.7
74
- version:
75
- - !ruby/object:Gem::Dependency
76
- name: twitter4r
77
- type: :runtime
78
- version_requirement:
79
- version_requirements: !ruby/object:Gem::Requirement
80
- requirements:
81
- - - ">="
82
- - !ruby/object:Gem::Version
83
- version: 0.3.0
84
- version:
85
45
  description: Cerberus is a Continuous Integration software for Ruby projects. CI helps you keep your project in a good shape. Cerberus could be easily invoked from Cron (for Unix) or nnCron (for Windows) utilities.
86
46
  email: cpjolicoeur@gmail.com
87
47
  executables:
@@ -92,8 +52,6 @@ extra_rdoc_files: []
92
52
 
93
53
  files:
94
54
  - bin/cerberus
95
- - lib/cerberus
96
- - lib/cerberus/builder
97
55
  - lib/cerberus/builder/base.rb
98
56
  - lib/cerberus/builder/bjam.rb
99
57
  - lib/cerberus/builder/maven2.rb
@@ -110,27 +68,282 @@ files:
110
68
  - lib/cerberus/constants.rb
111
69
  - lib/cerberus/latch.rb
112
70
  - lib/cerberus/manager.rb
113
- - lib/cerberus/publisher
114
71
  - lib/cerberus/publisher/base.rb
115
72
  - lib/cerberus/publisher/campfire.rb
116
- - lib/cerberus/publisher/gmailer.rb
117
73
  - lib/cerberus/publisher/irc.rb
118
74
  - lib/cerberus/publisher/jabber.rb
119
75
  - lib/cerberus/publisher/mail.rb
120
76
  - lib/cerberus/publisher/netsmtp_tls_fix.rb
121
77
  - lib/cerberus/publisher/rss.rb
122
78
  - lib/cerberus/publisher/twitter.rb
123
- - lib/cerberus/scm
79
+ - lib/cerberus/scm/base.rb
80
+ - lib/cerberus/scm/bzr.rb
124
81
  - lib/cerberus/scm/cvs.rb
125
82
  - lib/cerberus/scm/darcs.rb
126
83
  - lib/cerberus/scm/git.rb
127
84
  - lib/cerberus/scm/perforce.rb
128
85
  - lib/cerberus/scm/svn.rb
129
86
  - lib/cerberus/utils.rb
87
+ - lib/vendor/irc/lib/eventmap.yml
88
+ - lib/vendor/irc/lib/IRC.rb
89
+ - lib/vendor/irc/lib/IRCChannel.rb
90
+ - lib/vendor/irc/lib/IRCConnection.rb
91
+ - lib/vendor/irc/lib/IRCEvent.rb
92
+ - lib/vendor/irc/lib/IRCUser.rb
93
+ - lib/vendor/irc/lib/IRCUtil.rb
94
+ - lib/vendor/irc/README
95
+ - lib/vendor/twitter/CHANGES
96
+ - lib/vendor/twitter/lib/twitter/client/account.rb
97
+ - lib/vendor/twitter/lib/twitter/client/auth.rb
98
+ - lib/vendor/twitter/lib/twitter/client/base.rb
99
+ - lib/vendor/twitter/lib/twitter/client/blocks.rb
100
+ - lib/vendor/twitter/lib/twitter/client/favorites.rb
101
+ - lib/vendor/twitter/lib/twitter/client/friendship.rb
102
+ - lib/vendor/twitter/lib/twitter/client/graph.rb
103
+ - lib/vendor/twitter/lib/twitter/client/messaging.rb
104
+ - lib/vendor/twitter/lib/twitter/client/profile.rb
105
+ - lib/vendor/twitter/lib/twitter/client/search.rb
106
+ - lib/vendor/twitter/lib/twitter/client/status.rb
107
+ - lib/vendor/twitter/lib/twitter/client/timeline.rb
108
+ - lib/vendor/twitter/lib/twitter/client/user.rb
109
+ - lib/vendor/twitter/lib/twitter/client.rb
110
+ - lib/vendor/twitter/lib/twitter/config.rb
111
+ - lib/vendor/twitter/lib/twitter/console.rb
112
+ - lib/vendor/twitter/lib/twitter/core.rb
113
+ - lib/vendor/twitter/lib/twitter/ext/stdlib.rb
114
+ - lib/vendor/twitter/lib/twitter/ext.rb
115
+ - lib/vendor/twitter/lib/twitter/extras.rb
116
+ - lib/vendor/twitter/lib/twitter/meta.rb
117
+ - lib/vendor/twitter/lib/twitter/model.rb
118
+ - lib/vendor/twitter/lib/twitter/version.rb
119
+ - lib/vendor/twitter/lib/twitter.rb
120
+ - lib/vendor/twitter/MIT-LICENSE
121
+ - lib/vendor/twitter/README
122
+ - lib/vendor/twitter/spec/twitter/client/account_spec.rb
123
+ - lib/vendor/twitter/spec/twitter/client/auth_spec.rb
124
+ - lib/vendor/twitter/spec/twitter/client/base_spec.rb
125
+ - lib/vendor/twitter/spec/twitter/client/blocks_spec.rb
126
+ - lib/vendor/twitter/spec/twitter/client/favorites_spec.rb
127
+ - lib/vendor/twitter/spec/twitter/client/friendship_spec.rb
128
+ - lib/vendor/twitter/spec/twitter/client/graph_spec.rb
129
+ - lib/vendor/twitter/spec/twitter/client/messaging_spec.rb
130
+ - lib/vendor/twitter/spec/twitter/client/profile_spec.rb
131
+ - lib/vendor/twitter/spec/twitter/client/search_spec.rb
132
+ - lib/vendor/twitter/spec/twitter/client/status_spec.rb
133
+ - lib/vendor/twitter/spec/twitter/client/timeline_spec.rb
134
+ - lib/vendor/twitter/spec/twitter/client/user_spec.rb
135
+ - lib/vendor/twitter/spec/twitter/client_spec.rb
136
+ - lib/vendor/twitter/spec/twitter/config_spec.rb
137
+ - lib/vendor/twitter/spec/twitter/console_spec.rb
138
+ - lib/vendor/twitter/spec/twitter/core_spec.rb
139
+ - lib/vendor/twitter/spec/twitter/ext/stdlib_spec.rb
140
+ - lib/vendor/twitter/spec/twitter/extras_spec.rb
141
+ - lib/vendor/twitter/spec/twitter/meta_spec.rb
142
+ - lib/vendor/twitter/spec/twitter/model_spec.rb
143
+ - lib/vendor/twitter/spec/twitter/version_spec.rb
144
+ - lib/vendor/twitter/TODO
145
+ - lib/vendor/xmpp4r/CHANGELOG
146
+ - lib/vendor/xmpp4r/COPYING
147
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/adventure.rb
148
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/adventuremuc.rb
149
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/cube.xml
150
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/README
151
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/tower.xml
152
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/world.rb
153
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/fileserve.conf
154
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/fileserve.rb
155
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/getonline.rb
156
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/gtkmucclient.rb
157
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/migrate.rb
158
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/minimuc.rb
159
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/pep-aggregator/index.xsl
160
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/pep-aggregator/pep-aggregator.rb
161
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/recvfile.rb
162
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/rosterdiscovery.rb
163
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/sendfile.conf
164
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/sendfile.rb
165
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr.rb
166
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_jabber.rb
167
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_test.rb
168
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/versionpoll.rb
169
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/xmpping.rb
170
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/xmppingrc.sample
171
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/change_password.rb
172
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/client.rb
173
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/component.rb
174
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/echo.rb
175
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/jabbersend.rb
176
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/mass_sender.rb
177
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/muc_owner_config.rb
178
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/mucinfo.rb
179
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/mucsimplebot.rb
180
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/register.rb
181
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/remove_registration.rb
182
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/roster.rb
183
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/rosterprint.rb
184
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/rosterrename.rb
185
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/rosterwatch.rb
186
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/send_vcard.rb
187
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/tune_client.rb
188
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/tune_server.rb
189
+ - lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/versionbot.rb
190
+ - lib/vendor/xmpp4r/lib/xmpp4r/base64.rb
191
+ - lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/filetransfer.rb
192
+ - lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/ibb/base.rb
193
+ - lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/ibb/initiator.rb
194
+ - lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/ibb/target.rb
195
+ - lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb
196
+ - lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb
197
+ - lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb
198
+ - lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb
199
+ - lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb
200
+ - lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb.orig
201
+ - lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/iq/bytestreams.rb
202
+ - lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/iq/si.rb
203
+ - lib/vendor/xmpp4r/lib/xmpp4r/bytestreams.rb
204
+ - lib/vendor/xmpp4r/lib/xmpp4r/callbacks.rb
205
+ - lib/vendor/xmpp4r/lib/xmpp4r/caps/c.rb
206
+ - lib/vendor/xmpp4r/lib/xmpp4r/caps/helper/generator.rb
207
+ - lib/vendor/xmpp4r/lib/xmpp4r/caps/helper/helper.rb
208
+ - lib/vendor/xmpp4r/lib/xmpp4r/caps.rb
209
+ - lib/vendor/xmpp4r/lib/xmpp4r/client.rb
210
+ - lib/vendor/xmpp4r/lib/xmpp4r/command/helper/responder.rb
211
+ - lib/vendor/xmpp4r/lib/xmpp4r/command/iq/command.rb
212
+ - lib/vendor/xmpp4r/lib/xmpp4r/component.rb
213
+ - lib/vendor/xmpp4r/lib/xmpp4r/connection.rb
214
+ - lib/vendor/xmpp4r/lib/xmpp4r/dataforms/x/data.rb
215
+ - lib/vendor/xmpp4r/lib/xmpp4r/dataforms.rb
216
+ - lib/vendor/xmpp4r/lib/xmpp4r/debuglog.rb
217
+ - lib/vendor/xmpp4r/lib/xmpp4r/delay/x/delay.rb
218
+ - lib/vendor/xmpp4r/lib/xmpp4r/delay.rb
219
+ - lib/vendor/xmpp4r/lib/xmpp4r/discovery/helper/responder.rb
220
+ - lib/vendor/xmpp4r/lib/xmpp4r/discovery/iq/discoinfo.rb
221
+ - lib/vendor/xmpp4r/lib/xmpp4r/discovery/iq/discoitems.rb
222
+ - lib/vendor/xmpp4r/lib/xmpp4r/discovery.rb
223
+ - lib/vendor/xmpp4r/lib/xmpp4r/errors.rb
224
+ - lib/vendor/xmpp4r/lib/xmpp4r/feature_negotiation/iq/feature.rb
225
+ - lib/vendor/xmpp4r/lib/xmpp4r/feature_negotiation.rb
226
+ - lib/vendor/xmpp4r/lib/xmpp4r/framework/base.rb
227
+ - lib/vendor/xmpp4r/lib/xmpp4r/framework/bot.rb
228
+ - lib/vendor/xmpp4r/lib/xmpp4r/httpbinding/client.rb
229
+ - lib/vendor/xmpp4r/lib/xmpp4r/httpbinding.rb
230
+ - lib/vendor/xmpp4r/lib/xmpp4r/idgenerator.rb
231
+ - lib/vendor/xmpp4r/lib/xmpp4r/iq.rb
232
+ - lib/vendor/xmpp4r/lib/xmpp4r/jid.rb
233
+ - lib/vendor/xmpp4r/lib/xmpp4r/message.rb
234
+ - lib/vendor/xmpp4r/lib/xmpp4r/muc/helper/mucbrowser.rb
235
+ - lib/vendor/xmpp4r/lib/xmpp4r/muc/helper/mucclient.rb
236
+ - lib/vendor/xmpp4r/lib/xmpp4r/muc/helper/simplemucclient.rb
237
+ - lib/vendor/xmpp4r/lib/xmpp4r/muc/iq/mucadmin.rb
238
+ - lib/vendor/xmpp4r/lib/xmpp4r/muc/iq/mucadminitem.rb
239
+ - lib/vendor/xmpp4r/lib/xmpp4r/muc/iq/mucowner.rb
240
+ - lib/vendor/xmpp4r/lib/xmpp4r/muc/item.rb
241
+ - lib/vendor/xmpp4r/lib/xmpp4r/muc/x/muc.rb
242
+ - lib/vendor/xmpp4r/lib/xmpp4r/muc/x/mucuserinvite.rb
243
+ - lib/vendor/xmpp4r/lib/xmpp4r/muc/x/mucuseritem.rb
244
+ - lib/vendor/xmpp4r/lib/xmpp4r/muc.rb
245
+ - lib/vendor/xmpp4r/lib/xmpp4r/presence.rb
246
+ - lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/configuration.rb
247
+ - lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/event.rb
248
+ - lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/item.rb
249
+ - lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/items.rb
250
+ - lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/node_config.rb
251
+ - lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/publish.rb
252
+ - lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/subscription.rb
253
+ - lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/subscription_config.rb
254
+ - lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/unsubscribe.rb
255
+ - lib/vendor/xmpp4r/lib/xmpp4r/pubsub/helper/nodebrowser.rb
256
+ - lib/vendor/xmpp4r/lib/xmpp4r/pubsub/helper/nodehelper.rb
257
+ - lib/vendor/xmpp4r/lib/xmpp4r/pubsub/helper/servicehelper.rb
258
+ - lib/vendor/xmpp4r/lib/xmpp4r/pubsub/iq/pubsub.rb
259
+ - lib/vendor/xmpp4r/lib/xmpp4r/pubsub.rb
260
+ - lib/vendor/xmpp4r/lib/xmpp4r/query.rb
261
+ - lib/vendor/xmpp4r/lib/xmpp4r/rexmladdons.rb
262
+ - lib/vendor/xmpp4r/lib/xmpp4r/roster/helper/roster.rb
263
+ - lib/vendor/xmpp4r/lib/xmpp4r/roster/iq/roster.rb
264
+ - lib/vendor/xmpp4r/lib/xmpp4r/roster/x/roster.rb
265
+ - lib/vendor/xmpp4r/lib/xmpp4r/roster.rb
266
+ - lib/vendor/xmpp4r/lib/xmpp4r/rpc/helper/client.rb
267
+ - lib/vendor/xmpp4r/lib/xmpp4r/rpc/helper/server.rb
268
+ - lib/vendor/xmpp4r/lib/xmpp4r/rpc/helper/xmlrpcaddons.rb
269
+ - lib/vendor/xmpp4r/lib/xmpp4r/rpc/iq/rpc.rb
270
+ - lib/vendor/xmpp4r/lib/xmpp4r/rpc.rb
271
+ - lib/vendor/xmpp4r/lib/xmpp4r/sasl.rb
272
+ - lib/vendor/xmpp4r/lib/xmpp4r/semaphore.rb
273
+ - lib/vendor/xmpp4r/lib/xmpp4r/stream.rb
274
+ - lib/vendor/xmpp4r/lib/xmpp4r/streamparser.rb
275
+ - lib/vendor/xmpp4r/lib/xmpp4r/tune/helper/helper.rb
276
+ - lib/vendor/xmpp4r/lib/xmpp4r/tune/tune.rb
277
+ - lib/vendor/xmpp4r/lib/xmpp4r/tune.rb
278
+ - lib/vendor/xmpp4r/lib/xmpp4r/vcard/helper/vcard.rb
279
+ - lib/vendor/xmpp4r/lib/xmpp4r/vcard/iq/vcard.rb
280
+ - lib/vendor/xmpp4r/lib/xmpp4r/vcard.rb
281
+ - lib/vendor/xmpp4r/lib/xmpp4r/version/helper/responder.rb
282
+ - lib/vendor/xmpp4r/lib/xmpp4r/version/helper/simpleresponder.rb
283
+ - lib/vendor/xmpp4r/lib/xmpp4r/version/iq/version.rb
284
+ - lib/vendor/xmpp4r/lib/xmpp4r/version.rb
285
+ - lib/vendor/xmpp4r/lib/xmpp4r/x.rb
286
+ - lib/vendor/xmpp4r/lib/xmpp4r/xhtml/html.rb
287
+ - lib/vendor/xmpp4r/lib/xmpp4r/xhtml.rb
288
+ - lib/vendor/xmpp4r/lib/xmpp4r/xmpp4r.rb
289
+ - lib/vendor/xmpp4r/lib/xmpp4r/xmppelement.rb
290
+ - lib/vendor/xmpp4r/lib/xmpp4r/xmppstanza.rb
291
+ - lib/vendor/xmpp4r/lib/xmpp4r.rb
292
+ - lib/vendor/xmpp4r/LICENSE
293
+ - lib/vendor/xmpp4r/Rakefile
294
+ - lib/vendor/xmpp4r/README.rdoc
295
+ - lib/vendor/xmpp4r/README_ruby19.txt
296
+ - lib/vendor/xmpp4r/setup.rb
297
+ - lib/vendor/xmpp4r/test/bytestreams/tc_ibb.rb
298
+ - lib/vendor/xmpp4r/test/bytestreams/tc_socks5bytestreams.rb
299
+ - lib/vendor/xmpp4r/test/caps/tc_helper.rb
300
+ - lib/vendor/xmpp4r/test/dataforms/tc_data.rb
301
+ - lib/vendor/xmpp4r/test/delay/tc_xdelay.rb
302
+ - lib/vendor/xmpp4r/test/discovery/tc_responder.rb
303
+ - lib/vendor/xmpp4r/test/lib/assert_equal_xml.rb
304
+ - lib/vendor/xmpp4r/test/lib/clienttester.rb
305
+ - lib/vendor/xmpp4r/test/muc/tc_muc_mucclient.rb
306
+ - lib/vendor/xmpp4r/test/muc/tc_muc_simplemucclient.rb
307
+ - lib/vendor/xmpp4r/test/muc/tc_mucowner.rb
308
+ - lib/vendor/xmpp4r/test/pubsub/tc_helper.rb
309
+ - lib/vendor/xmpp4r/test/pubsub/tc_nodeconfig.rb
310
+ - lib/vendor/xmpp4r/test/pubsub/tc_subscriptionconfig.rb
311
+ - lib/vendor/xmpp4r/test/roster/tc_helper.rb
312
+ - lib/vendor/xmpp4r/test/roster/tc_iqqueryroster.rb
313
+ - lib/vendor/xmpp4r/test/roster/tc_xroster.rb
314
+ - lib/vendor/xmpp4r/test/rpc/tc_helper.rb
315
+ - lib/vendor/xmpp4r/test/tc_callbacks.rb
316
+ - lib/vendor/xmpp4r/test/tc_class_names.rb
317
+ - lib/vendor/xmpp4r/test/tc_client.rb
318
+ - lib/vendor/xmpp4r/test/tc_errors.rb
319
+ - lib/vendor/xmpp4r/test/tc_idgenerator.rb
320
+ - lib/vendor/xmpp4r/test/tc_iq.rb
321
+ - lib/vendor/xmpp4r/test/tc_iqquery.rb
322
+ - lib/vendor/xmpp4r/test/tc_jid.rb
323
+ - lib/vendor/xmpp4r/test/tc_message.rb
324
+ - lib/vendor/xmpp4r/test/tc_presence.rb
325
+ - lib/vendor/xmpp4r/test/tc_rexml.rb
326
+ - lib/vendor/xmpp4r/test/tc_stream.rb
327
+ - lib/vendor/xmpp4r/test/tc_streamComponent.rb
328
+ - lib/vendor/xmpp4r/test/tc_streamError.rb
329
+ - lib/vendor/xmpp4r/test/tc_streamparser.rb
330
+ - lib/vendor/xmpp4r/test/tc_streamSend.rb
331
+ - lib/vendor/xmpp4r/test/tc_xmppstanza.rb
332
+ - lib/vendor/xmpp4r/test/ts_xmpp4r.rb
333
+ - lib/vendor/xmpp4r/test/tune/tc_helper_recv.rb
334
+ - lib/vendor/xmpp4r/test/tune/tc_helper_send.rb
335
+ - lib/vendor/xmpp4r/test/tune/tc_tune.rb
336
+ - lib/vendor/xmpp4r/test/vcard/tc_helper.rb
337
+ - lib/vendor/xmpp4r/test/vcard/tc_iqvcard.rb
338
+ - lib/vendor/xmpp4r/test/version/tc_helper.rb
339
+ - lib/vendor/xmpp4r/test/version/tc_iqqueryversion.rb
340
+ - lib/vendor/xmpp4r/test/xhtml/tc_html.rb
341
+ - lib/vendor/xmpp4r/tools/gen_requires.bash
342
+ - lib/vendor/xmpp4r/tools/xmpp4r-gemspec-test.rb
343
+ - lib/vendor/xmpp4r/xmpp4r.gemspec
130
344
  - test/bjam_builder_test.rb
131
345
  - test/config_test.rb
132
346
  - test/cron_string_test.rb
133
- - test/data
134
347
  - test/data/darcs.zip
135
348
  - test/data/git.zip
136
349
  - test/data/subversion.dump
@@ -140,7 +353,6 @@ files:
140
353
  - test/jabber_publisher_test.rb
141
354
  - test/mail_publisher_test.rb
142
355
  - test/maven2_builer_test.rb
143
- - test/mock
144
356
  - test/mock/irc.rb
145
357
  - test/mock/manager.rb
146
358
  - test/mock/marshmallow.rb
@@ -155,10 +367,13 @@ files:
155
367
  - License.txt
156
368
  - Readme.markdown
157
369
  - Changelog.txt
370
+ - Authors.txt
371
+ - Copyright.txt
158
372
  - Rakefile
159
- - doc/site
160
- has_rdoc: false
373
+ has_rdoc: true
161
374
  homepage: http://rubyforge.org/projects/cerberus
375
+ licenses: []
376
+
162
377
  post_install_message:
163
378
  rdoc_options: []
164
379
 
@@ -179,9 +394,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
179
394
  requirements: []
180
395
 
181
396
  rubyforge_project: cerberus
182
- rubygems_version: 1.3.1
397
+ rubygems_version: 1.3.4
183
398
  signing_key:
184
- specification_version: 2
399
+ specification_version: 3
185
400
  summary: Cerberus is a Continuous Integration tool that could be easily run from Cron.
186
401
  test_files:
187
402
  - test/bjam_builder_test.rb
@@ -1,17 +0,0 @@
1
- require 'cerberus/publisher/base'
2
-
3
- class Cerberus::Publisher::Gmailer < Cerberus::Publisher::Base
4
- def self.publish(state, manager, options)
5
- require 'gmailer'
6
-
7
- subject, body = Cerberus::Publisher::Base.formatted_message(state, manager, options)
8
-
9
- gopts = options[:publisher, :gmailer]
10
- recipients = gopts[:recipients]
11
- GMailer.connect(gopts) do |g|
12
- success = g.send(:to => recipients, :subject => subject, :body => body, :from => gopts[:recipients])
13
-
14
- raise 'Unable to send mail using Gmailer' unless success
15
- end
16
- end
17
- end