cerberus 0.6 → 0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/Authors.txt +4 -0
- data/Changelog.txt +11 -0
- data/Copyright.txt +16 -0
- data/Rakefile +16 -25
- data/Readme.markdown +1 -3
- data/bin/cerberus +5 -0
- data/lib/cerberus/builder/bjam.rb +1 -3
- data/lib/cerberus/builder/maven2.rb +0 -1
- data/lib/cerberus/builder/rake.rb +1 -1
- data/lib/cerberus/builder/rspec.rb +0 -1
- data/lib/cerberus/builder/ruby_base.rb +0 -1
- data/lib/cerberus/component_lazy_loader.rb +6 -2
- data/lib/cerberus/config.example.yml +1 -0
- data/lib/cerberus/constants.rb +2 -2
- data/lib/cerberus/manager.rb +7 -1
- data/lib/cerberus/publisher/mail.rb +4 -4
- data/lib/cerberus/publisher/twitter.rb +0 -1
- data/lib/cerberus/scm/base.rb +19 -0
- data/lib/cerberus/scm/bzr.rb +62 -0
- data/lib/cerberus/scm/cvs.rb +2 -7
- data/lib/cerberus/scm/darcs.rb +2 -11
- data/lib/cerberus/scm/git.rb +6 -14
- data/lib/cerberus/scm/perforce.rb +4 -4
- data/lib/cerberus/scm/svn.rb +2 -7
- data/lib/cerberus/utils.rb +5 -0
- data/lib/vendor/irc/README +23 -0
- data/lib/vendor/irc/lib/IRC.rb +164 -0
- data/lib/vendor/irc/lib/IRCChannel.rb +33 -0
- data/lib/vendor/irc/lib/IRCConnection.rb +134 -0
- data/lib/vendor/irc/lib/IRCEvent.rb +91 -0
- data/lib/vendor/irc/lib/IRCUser.rb +23 -0
- data/lib/vendor/irc/lib/IRCUtil.rb +49 -0
- data/lib/vendor/irc/lib/eventmap.yml +247 -0
- data/lib/vendor/twitter/CHANGES +129 -0
- data/lib/vendor/twitter/MIT-LICENSE +20 -0
- data/lib/vendor/twitter/README +37 -0
- data/lib/vendor/twitter/TODO +7 -0
- data/lib/vendor/twitter/lib/twitter.rb +34 -0
- data/lib/vendor/twitter/lib/twitter/client.rb +24 -0
- data/lib/vendor/twitter/lib/twitter/client/account.rb +24 -0
- data/lib/vendor/twitter/lib/twitter/client/auth.rb +27 -0
- data/lib/vendor/twitter/lib/twitter/client/base.rb +93 -0
- data/lib/vendor/twitter/lib/twitter/client/blocks.rb +35 -0
- data/lib/vendor/twitter/lib/twitter/client/favorites.rb +53 -0
- data/lib/vendor/twitter/lib/twitter/client/friendship.rb +35 -0
- data/lib/vendor/twitter/lib/twitter/client/graph.rb +37 -0
- data/lib/vendor/twitter/lib/twitter/client/messaging.rb +79 -0
- data/lib/vendor/twitter/lib/twitter/client/profile.rb +29 -0
- data/lib/vendor/twitter/lib/twitter/client/search.rb +27 -0
- data/lib/vendor/twitter/lib/twitter/client/status.rb +51 -0
- data/lib/vendor/twitter/lib/twitter/client/timeline.rb +72 -0
- data/lib/vendor/twitter/lib/twitter/client/user.rb +65 -0
- data/lib/vendor/twitter/lib/twitter/config.rb +77 -0
- data/lib/vendor/twitter/lib/twitter/console.rb +31 -0
- data/lib/vendor/twitter/lib/twitter/core.rb +137 -0
- data/lib/vendor/twitter/lib/twitter/ext.rb +2 -0
- data/lib/vendor/twitter/lib/twitter/ext/stdlib.rb +52 -0
- data/lib/vendor/twitter/lib/twitter/extras.rb +39 -0
- data/lib/vendor/twitter/lib/twitter/meta.rb +56 -0
- data/lib/vendor/twitter/lib/twitter/model.rb +360 -0
- data/lib/vendor/twitter/lib/twitter/version.rb +19 -0
- data/lib/vendor/twitter/spec/twitter/client/account_spec.rb +28 -0
- data/lib/vendor/twitter/spec/twitter/client/auth_spec.rb +34 -0
- data/lib/vendor/twitter/spec/twitter/client/base_spec.rb +242 -0
- data/lib/vendor/twitter/spec/twitter/client/blocks_spec.rb +76 -0
- data/lib/vendor/twitter/spec/twitter/client/favorites_spec.rb +183 -0
- data/lib/vendor/twitter/spec/twitter/client/friendship_spec.rb +76 -0
- data/lib/vendor/twitter/spec/twitter/client/graph_spec.rb +67 -0
- data/lib/vendor/twitter/spec/twitter/client/messaging_spec.rb +135 -0
- data/lib/vendor/twitter/spec/twitter/client/profile_spec.rb +91 -0
- data/lib/vendor/twitter/spec/twitter/client/search_spec.rb +68 -0
- data/lib/vendor/twitter/spec/twitter/client/status_spec.rb +119 -0
- data/lib/vendor/twitter/spec/twitter/client/timeline_spec.rb +79 -0
- data/lib/vendor/twitter/spec/twitter/client/user_spec.rb +203 -0
- data/lib/vendor/twitter/spec/twitter/client_spec.rb +2 -0
- data/lib/vendor/twitter/spec/twitter/config_spec.rb +86 -0
- data/lib/vendor/twitter/spec/twitter/console_spec.rb +15 -0
- data/lib/vendor/twitter/spec/twitter/core_spec.rb +127 -0
- data/lib/vendor/twitter/spec/twitter/ext/stdlib_spec.rb +59 -0
- data/lib/vendor/twitter/spec/twitter/extras_spec.rb +46 -0
- data/lib/vendor/twitter/spec/twitter/meta_spec.rb +90 -0
- data/lib/vendor/twitter/spec/twitter/model_spec.rb +508 -0
- data/lib/vendor/twitter/spec/twitter/version_spec.rb +19 -0
- data/lib/vendor/xmpp4r/CHANGELOG +83 -0
- data/lib/vendor/xmpp4r/COPYING +340 -0
- data/lib/vendor/xmpp4r/LICENSE +59 -0
- data/lib/vendor/xmpp4r/README.rdoc +110 -0
- data/lib/vendor/xmpp4r/README_ruby19.txt +43 -0
- data/lib/vendor/xmpp4r/Rakefile +262 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/README +56 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/adventure.rb +23 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/adventuremuc.rb +136 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/cube.xml +15 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/tower.xml +69 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/adventure/world.rb +424 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/fileserve.conf +11 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/fileserve.rb +346 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/getonline.rb +56 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/gtkmucclient.rb +315 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/migrate.rb +88 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/minimuc.rb +266 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/pep-aggregator/index.xsl +235 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/pep-aggregator/pep-aggregator.rb +147 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/recvfile.rb +84 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/rosterdiscovery.rb +129 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/sendfile.conf +10 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/sendfile.rb +72 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr.rb +51 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_jabber.rb +43 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_test.rb +10 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/versionpoll.rb +90 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/xmpping.rb +146 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/advanced/xmppingrc.sample +14 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/change_password.rb +41 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/client.rb +70 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/component.rb +11 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/echo.rb +37 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/jabbersend.rb +41 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/mass_sender.rb +68 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/muc_owner_config.rb +12 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/mucinfo.rb +41 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/mucsimplebot.rb +82 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/register.rb +42 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/remove_registration.rb +18 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/roster.rb +44 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/rosterprint.rb +50 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/rosterrename.rb +34 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/rosterwatch.rb +171 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/send_vcard.rb +67 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/tune_client.rb +56 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/tune_server.rb +58 -0
- data/lib/vendor/xmpp4r/data/doc/xmpp4r/examples/basic/versionbot.rb +75 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r.rb +116 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/base64.rb +32 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams.rb +15 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/filetransfer.rb +319 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/ibb/base.rb +257 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/ibb/initiator.rb +31 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/ibb/target.rb +47 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb +152 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb +86 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb +198 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb +65 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb +73 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb.orig +62 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/iq/bytestreams.rb +170 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/bytestreams/iq/si.rb +206 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/callbacks.rb +124 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/caps.rb +1 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/caps/c.rb +53 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/caps/helper/generator.rb +160 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/caps/helper/helper.rb +87 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/client.rb +317 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/command/helper/responder.rb +53 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/command/iq/command.rb +154 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/component.rb +103 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/connection.rb +219 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/dataforms.rb +5 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/dataforms/x/data.rb +297 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/debuglog.rb +42 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/delay.rb +5 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/delay/x/delay.rb +99 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/discovery.rb +7 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/discovery/helper/responder.rb +165 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/discovery/iq/discoinfo.rb +211 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/discovery/iq/discoitems.rb +147 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/errors.rb +281 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/feature_negotiation.rb +5 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/feature_negotiation/iq/feature.rb +28 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/framework/base.rb +55 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/framework/bot.rb +148 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/httpbinding.rb +5 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/httpbinding/client.rb +285 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/idgenerator.rb +37 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/iq.rb +221 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/jid.rb +167 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/message.rb +148 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/muc.rb +14 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/muc/helper/mucbrowser.rb +92 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/muc/helper/mucclient.rb +462 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/muc/helper/simplemucclient.rb +332 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/muc/iq/mucadmin.rb +23 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/muc/iq/mucadminitem.rb +20 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/muc/iq/mucowner.rb +15 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/muc/item.rb +143 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/muc/x/muc.rb +70 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/muc/x/mucuserinvite.rb +60 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/muc/x/mucuseritem.rb +36 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/presence.rb +232 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub.rb +8 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/configuration.rb +86 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/event.rb +49 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/item.rb +35 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/items.rb +44 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/node_config.rb +48 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/publish.rb +24 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/subscription.rb +62 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/subscription_config.rb +67 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/children/unsubscribe.rb +48 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/helper/nodebrowser.rb +130 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/helper/nodehelper.rb +156 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/helper/servicehelper.rb +417 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/pubsub/iq/pubsub.rb +19 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/query.rb +15 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/rexmladdons.rb +151 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/roster.rb +7 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/roster/helper/roster.rb +519 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/roster/iq/roster.rb +215 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/roster/x/roster.rb +138 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/rpc.rb +2 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/rpc/helper/client.rb +123 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/rpc/helper/server.rb +74 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/rpc/helper/xmlrpcaddons.rb +67 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/rpc/iq/rpc.rb +23 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/sasl.rb +237 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/semaphore.rb +38 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/stream.rb +497 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/streamparser.rb +77 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/tune.rb +2 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/tune/helper/helper.rb +58 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/tune/tune.rb +113 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/vcard.rb +6 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/vcard/helper/vcard.rb +84 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/vcard/iq/vcard.rb +109 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/version.rb +7 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/version/helper/responder.rb +72 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/version/helper/simpleresponder.rb +44 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/version/iq/version.rb +105 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/x.rb +37 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/xhtml.rb +1 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/xhtml/html.rb +115 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/xmpp4r.rb +18 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/xmppelement.rb +168 -0
- data/lib/vendor/xmpp4r/lib/xmpp4r/xmppstanza.rb +162 -0
- data/lib/vendor/xmpp4r/setup.rb +1586 -0
- data/lib/vendor/xmpp4r/test/bytestreams/tc_ibb.rb +186 -0
- data/lib/vendor/xmpp4r/test/bytestreams/tc_socks5bytestreams.rb +113 -0
- data/lib/vendor/xmpp4r/test/caps/tc_helper.rb +156 -0
- data/lib/vendor/xmpp4r/test/dataforms/tc_data.rb +81 -0
- data/lib/vendor/xmpp4r/test/delay/tc_xdelay.rb +51 -0
- data/lib/vendor/xmpp4r/test/discovery/tc_responder.rb +91 -0
- data/lib/vendor/xmpp4r/test/lib/assert_equal_xml.rb +14 -0
- data/lib/vendor/xmpp4r/test/lib/clienttester.rb +120 -0
- data/lib/vendor/xmpp4r/test/muc/tc_muc_mucclient.rb +830 -0
- data/lib/vendor/xmpp4r/test/muc/tc_muc_simplemucclient.rb +114 -0
- data/lib/vendor/xmpp4r/test/muc/tc_mucowner.rb +50 -0
- data/lib/vendor/xmpp4r/test/pubsub/tc_helper.rb +662 -0
- data/lib/vendor/xmpp4r/test/pubsub/tc_nodeconfig.rb +54 -0
- data/lib/vendor/xmpp4r/test/pubsub/tc_subscriptionconfig.rb +41 -0
- data/lib/vendor/xmpp4r/test/roster/tc_helper.rb +514 -0
- data/lib/vendor/xmpp4r/test/roster/tc_iqqueryroster.rb +173 -0
- data/lib/vendor/xmpp4r/test/roster/tc_xroster.rb +73 -0
- data/lib/vendor/xmpp4r/test/rpc/tc_helper.rb +96 -0
- data/lib/vendor/xmpp4r/test/tc_callbacks.rb +129 -0
- data/lib/vendor/xmpp4r/test/tc_class_names.rb +146 -0
- data/lib/vendor/xmpp4r/test/tc_client.rb +30 -0
- data/lib/vendor/xmpp4r/test/tc_errors.rb +146 -0
- data/lib/vendor/xmpp4r/test/tc_idgenerator.rb +30 -0
- data/lib/vendor/xmpp4r/test/tc_iq.rb +113 -0
- data/lib/vendor/xmpp4r/test/tc_iqquery.rb +31 -0
- data/lib/vendor/xmpp4r/test/tc_jid.rb +204 -0
- data/lib/vendor/xmpp4r/test/tc_message.rb +116 -0
- data/lib/vendor/xmpp4r/test/tc_presence.rb +150 -0
- data/lib/vendor/xmpp4r/test/tc_rexml.rb +139 -0
- data/lib/vendor/xmpp4r/test/tc_stream.rb +229 -0
- data/lib/vendor/xmpp4r/test/tc_streamComponent.rb +95 -0
- data/lib/vendor/xmpp4r/test/tc_streamError.rb +131 -0
- data/lib/vendor/xmpp4r/test/tc_streamSend.rb +59 -0
- data/lib/vendor/xmpp4r/test/tc_streamparser.rb +112 -0
- data/lib/vendor/xmpp4r/test/tc_xmppstanza.rb +135 -0
- data/lib/vendor/xmpp4r/test/ts_xmpp4r.rb +53 -0
- data/lib/vendor/xmpp4r/test/tune/tc_helper_recv.rb +84 -0
- data/lib/vendor/xmpp4r/test/tune/tc_helper_send.rb +74 -0
- data/lib/vendor/xmpp4r/test/tune/tc_tune.rb +79 -0
- data/lib/vendor/xmpp4r/test/vcard/tc_helper.rb +49 -0
- data/lib/vendor/xmpp4r/test/vcard/tc_iqvcard.rb +62 -0
- data/lib/vendor/xmpp4r/test/version/tc_helper.rb +60 -0
- data/lib/vendor/xmpp4r/test/version/tc_iqqueryversion.rb +97 -0
- data/lib/vendor/xmpp4r/test/xhtml/tc_html.rb +41 -0
- data/lib/vendor/xmpp4r/tools/gen_requires.bash +31 -0
- data/lib/vendor/xmpp4r/tools/xmpp4r-gemspec-test.rb +11 -0
- data/lib/vendor/xmpp4r/xmpp4r.gemspec +291 -0
- data/test/jabber_publisher_test.rb +1 -1
- data/test/mail_publisher_test.rb +2 -2
- data/test/mock/twitter.rb +0 -1
- data/test/rspec_builder_test.rb +39 -2
- data/test/rss_publisher_test.rb +1 -1
- data/test/twitter_publisher_test.rb +1 -1
- metadata +268 -53
- data/lib/cerberus/publisher/gmailer.rb +0 -17
data/test/rss_publisher_test.rb
CHANGED
@@ -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 (
|
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 (
|
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.
|
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
|
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
|
-
|
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.
|
397
|
+
rubygems_version: 1.3.4
|
183
398
|
signing_key:
|
184
|
-
specification_version:
|
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
|