mack-notifier 0.8.1 → 0.8.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/gems.rb +13 -0
- data/lib/gems/tmail-1.2.3.1/ext/Makefile +20 -0
- data/lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail/MANIFEST +4 -0
- data/lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail/depend +1 -0
- data/lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail/extconf.rb +33 -0
- data/lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail/tmailscanner.c +583 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail.rb +5 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/Makefile +18 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/address.rb +426 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/attachments.rb +46 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/base64.rb +46 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/compat.rb +41 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/config.rb +67 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/core_extensions.rb +63 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/encode.rb +581 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/header.rb +960 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/index.rb +9 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/interface.rb +1125 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/loader.rb +3 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/mail.rb +578 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/mailbox.rb +495 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/main.rb +6 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/mbox.rb +3 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/net.rb +248 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/obsolete.rb +132 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/parser.rb +1476 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/parser.y +381 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/port.rb +379 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/quoting.rb +118 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/require_arch.rb +58 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/scanner.rb +49 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/scanner_r.rb +261 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/stringio.rb +280 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/utils.rb +337 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/version.rb +39 -0
- data/lib/gems/tmail-1.2.3.1/meta/MANIFEST +128 -0
- data/lib/gems/tmail-1.2.3.1/meta/VERSION +1 -0
- data/lib/gems/tmail-1.2.3.1/meta/project.yaml +30 -0
- data/lib/gems/tmail-1.2.3.1/meta/unixname +1 -0
- data/lib/gems/validatable-1.6.7/README +118 -0
- data/lib/gems/validatable-1.6.7/lib/child_validation.rb +15 -0
- data/lib/gems/validatable-1.6.7/lib/errors.rb +74 -0
- data/lib/gems/validatable-1.6.7/lib/included_validation.rb +9 -0
- data/lib/gems/validatable-1.6.7/lib/macros.rb +283 -0
- data/lib/gems/validatable-1.6.7/lib/object_extension.rb +21 -0
- data/lib/gems/validatable-1.6.7/lib/requireable.rb +26 -0
- data/lib/gems/validatable-1.6.7/lib/understandable.rb +31 -0
- data/lib/gems/validatable-1.6.7/lib/validatable.rb +19 -0
- data/lib/gems/validatable-1.6.7/lib/validatable_class_methods.rb +85 -0
- data/lib/gems/validatable-1.6.7/lib/validatable_instance_methods.rb +106 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_acceptance_of.rb +11 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_confirmation_of.rb +15 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_each.rb +14 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_format_of.rb +13 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_length_of.rb +25 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_numericality_of.rb +16 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_presence_of.rb +13 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_true_for.rb +13 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validation_base.rb +88 -0
- data/lib/gems/validatable-1.6.7/rakefile.rb +50 -0
- data/lib/gems/validatable-1.6.7/test/all_tests.rb +1 -0
- data/lib/gems/validatable-1.6.7/test/functional/validatable_test.rb +437 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_acceptance_of_test.rb +16 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_confirmation_of_test.rb +56 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_each_test.rb +14 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_format_of_test.rb +34 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_length_of_test.rb +64 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_numericality_of_test.rb +57 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_presence_of_test.rb +16 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_true_for_test.rb +27 -0
- data/lib/gems/validatable-1.6.7/test/test_helper.rb +33 -0
- data/lib/gems/validatable-1.6.7/test/unit/errors_test.rb +64 -0
- data/lib/gems/validatable-1.6.7/test/unit/understandable_test.rb +19 -0
- data/lib/gems/validatable-1.6.7/test/unit/validatable_test.rb +38 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_acceptance_of_test.rb +21 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_confirmation_of_test.rb +64 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_format_of_test.rb +34 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_length_of_test.rb +75 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_numericality_of_test.rb +52 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_presence_of_test.rb +25 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_true_for_test.rb +29 -0
- data/lib/gems/validatable-1.6.7/test/unit/validation_base_test.rb +52 -0
- data/lib/gems/xmpp4r-0.4/CHANGELOG +83 -0
- data/lib/gems/xmpp4r-0.4/COPYING +340 -0
- data/lib/gems/xmpp4r-0.4/LICENSE +59 -0
- data/lib/gems/xmpp4r-0.4/README.rdoc +110 -0
- data/lib/gems/xmpp4r-0.4/README_ruby19.txt +43 -0
- data/lib/gems/xmpp4r-0.4/Rakefile +262 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/README +56 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/adventure.rb +23 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/adventuremuc.rb +136 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/cube.xml +15 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/tower.xml +69 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/world.rb +424 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/fileserve.conf +11 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/fileserve.rb +346 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/getonline.rb +56 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/gtkmucclient.rb +315 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/migrate.rb +88 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/minimuc.rb +266 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/pep-aggregator/index.xsl +235 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/pep-aggregator/pep-aggregator.rb +147 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/recvfile.rb +84 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/rosterdiscovery.rb +129 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/sendfile.conf +10 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/sendfile.rb +72 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr.rb +51 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_jabber.rb +43 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_test.rb +10 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/versionpoll.rb +90 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/xmpping.rb +146 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/xmppingrc.sample +14 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/change_password.rb +41 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/client.rb +70 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/component.rb +11 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/echo.rb +37 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/jabbersend.rb +41 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/mass_sender.rb +68 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/muc_owner_config.rb +12 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/mucinfo.rb +41 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/mucsimplebot.rb +82 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/register.rb +42 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/remove_registration.rb +18 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/roster.rb +44 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/rosterprint.rb +50 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/rosterrename.rb +34 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/rosterwatch.rb +171 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/send_vcard.rb +67 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/tune_client.rb +56 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/tune_server.rb +58 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/versionbot.rb +75 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r.rb +116 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/base64.rb +32 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams.rb +15 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/filetransfer.rb +319 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/ibb/base.rb +257 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/ibb/initiator.rb +31 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/ibb/target.rb +47 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb +152 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb +86 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb +198 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb +65 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb +73 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb.orig +62 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/iq/bytestreams.rb +170 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/iq/si.rb +206 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/callbacks.rb +124 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/caps.rb +1 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/caps/c.rb +53 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/caps/helper/generator.rb +160 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/caps/helper/helper.rb +87 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/client.rb +317 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/command/helper/responder.rb +53 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/command/iq/command.rb +154 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/component.rb +103 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/connection.rb +219 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/dataforms.rb +5 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/dataforms/x/data.rb +297 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/debuglog.rb +42 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/delay.rb +5 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/delay/x/delay.rb +99 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery.rb +7 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery/helper/responder.rb +165 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery/iq/discoinfo.rb +211 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery/iq/discoitems.rb +147 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/errors.rb +281 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/feature_negotiation.rb +5 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/feature_negotiation/iq/feature.rb +28 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/framework/base.rb +55 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/framework/bot.rb +148 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/httpbinding.rb +5 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/httpbinding/client.rb +285 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/idgenerator.rb +37 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/iq.rb +221 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/jid.rb +167 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/message.rb +148 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc.rb +14 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/helper/mucbrowser.rb +92 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/helper/mucclient.rb +462 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/helper/simplemucclient.rb +332 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/iq/mucadmin.rb +23 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/iq/mucadminitem.rb +20 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/iq/mucowner.rb +15 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/item.rb +143 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/x/muc.rb +70 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/x/mucuserinvite.rb +60 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/x/mucuseritem.rb +36 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/presence.rb +232 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub.rb +8 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/configuration.rb +86 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/event.rb +49 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/item.rb +35 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/items.rb +44 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/node_config.rb +48 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/publish.rb +24 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/subscription.rb +62 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/subscription_config.rb +67 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/unsubscribe.rb +48 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/helper/nodebrowser.rb +130 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/helper/nodehelper.rb +156 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/helper/servicehelper.rb +417 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/iq/pubsub.rb +19 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/query.rb +15 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rexmladdons.rb +151 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/roster.rb +7 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/roster/helper/roster.rb +519 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/roster/iq/roster.rb +215 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/roster/x/roster.rb +138 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc.rb +2 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/helper/client.rb +123 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/helper/server.rb +74 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/helper/xmlrpcaddons.rb +67 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/iq/rpc.rb +23 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/sasl.rb +237 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/semaphore.rb +38 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/stream.rb +497 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/streamparser.rb +77 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/tune.rb +2 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/tune/helper/helper.rb +58 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/tune/tune.rb +113 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/vcard.rb +6 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/vcard/helper/vcard.rb +84 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/vcard/iq/vcard.rb +109 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/version.rb +7 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/version/helper/responder.rb +72 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/version/helper/simpleresponder.rb +44 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/version/iq/version.rb +105 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/x.rb +37 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/xhtml.rb +1 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/xhtml/html.rb +115 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/xmpp4r.rb +18 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/xmppelement.rb +168 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/xmppstanza.rb +162 -0
- data/lib/gems/xmpp4r-0.4/setup.rb +1586 -0
- data/lib/gems/xmpp4r-0.4/test/bytestreams/tc_ibb.rb +186 -0
- data/lib/gems/xmpp4r-0.4/test/bytestreams/tc_socks5bytestreams.rb +113 -0
- data/lib/gems/xmpp4r-0.4/test/caps/tc_helper.rb +156 -0
- data/lib/gems/xmpp4r-0.4/test/dataforms/tc_data.rb +81 -0
- data/lib/gems/xmpp4r-0.4/test/delay/tc_xdelay.rb +51 -0
- data/lib/gems/xmpp4r-0.4/test/discovery/tc_responder.rb +91 -0
- data/lib/gems/xmpp4r-0.4/test/lib/assert_equal_xml.rb +14 -0
- data/lib/gems/xmpp4r-0.4/test/lib/clienttester.rb +120 -0
- data/lib/gems/xmpp4r-0.4/test/muc/tc_muc_mucclient.rb +830 -0
- data/lib/gems/xmpp4r-0.4/test/muc/tc_muc_simplemucclient.rb +114 -0
- data/lib/gems/xmpp4r-0.4/test/muc/tc_mucowner.rb +50 -0
- data/lib/gems/xmpp4r-0.4/test/pubsub/tc_helper.rb +662 -0
- data/lib/gems/xmpp4r-0.4/test/pubsub/tc_nodeconfig.rb +54 -0
- data/lib/gems/xmpp4r-0.4/test/pubsub/tc_subscriptionconfig.rb +41 -0
- data/lib/gems/xmpp4r-0.4/test/roster/tc_helper.rb +514 -0
- data/lib/gems/xmpp4r-0.4/test/roster/tc_iqqueryroster.rb +173 -0
- data/lib/gems/xmpp4r-0.4/test/roster/tc_xroster.rb +73 -0
- data/lib/gems/xmpp4r-0.4/test/rpc/tc_helper.rb +96 -0
- data/lib/gems/xmpp4r-0.4/test/tc_callbacks.rb +129 -0
- data/lib/gems/xmpp4r-0.4/test/tc_class_names.rb +146 -0
- data/lib/gems/xmpp4r-0.4/test/tc_client.rb +30 -0
- data/lib/gems/xmpp4r-0.4/test/tc_errors.rb +146 -0
- data/lib/gems/xmpp4r-0.4/test/tc_idgenerator.rb +30 -0
- data/lib/gems/xmpp4r-0.4/test/tc_iq.rb +113 -0
- data/lib/gems/xmpp4r-0.4/test/tc_iqquery.rb +31 -0
- data/lib/gems/xmpp4r-0.4/test/tc_jid.rb +204 -0
- data/lib/gems/xmpp4r-0.4/test/tc_message.rb +116 -0
- data/lib/gems/xmpp4r-0.4/test/tc_presence.rb +150 -0
- data/lib/gems/xmpp4r-0.4/test/tc_rexml.rb +139 -0
- data/lib/gems/xmpp4r-0.4/test/tc_stream.rb +229 -0
- data/lib/gems/xmpp4r-0.4/test/tc_streamComponent.rb +95 -0
- data/lib/gems/xmpp4r-0.4/test/tc_streamError.rb +131 -0
- data/lib/gems/xmpp4r-0.4/test/tc_streamSend.rb +59 -0
- data/lib/gems/xmpp4r-0.4/test/tc_streamparser.rb +112 -0
- data/lib/gems/xmpp4r-0.4/test/tc_xmppstanza.rb +135 -0
- data/lib/gems/xmpp4r-0.4/test/ts_xmpp4r.rb +53 -0
- data/lib/gems/xmpp4r-0.4/test/tune/tc_helper_recv.rb +84 -0
- data/lib/gems/xmpp4r-0.4/test/tune/tc_helper_send.rb +74 -0
- data/lib/gems/xmpp4r-0.4/test/tune/tc_tune.rb +79 -0
- data/lib/gems/xmpp4r-0.4/test/vcard/tc_helper.rb +49 -0
- data/lib/gems/xmpp4r-0.4/test/vcard/tc_iqvcard.rb +62 -0
- data/lib/gems/xmpp4r-0.4/test/version/tc_helper.rb +60 -0
- data/lib/gems/xmpp4r-0.4/test/version/tc_iqqueryversion.rb +97 -0
- data/lib/gems/xmpp4r-0.4/test/xhtml/tc_html.rb +41 -0
- data/lib/gems/xmpp4r-0.4/tools/gen_requires.bash +31 -0
- data/lib/gems/xmpp4r-0.4/tools/xmpp4r-gemspec-test.rb +11 -0
- data/lib/gems/xmpp4r-0.4/xmpp4r.gemspec +291 -0
- data/lib/gems/xmpp4r-simple-0.8.8/CHANGELOG +73 -0
- data/lib/gems/xmpp4r-simple-0.8.8/COPYING +281 -0
- data/lib/gems/xmpp4r-simple-0.8.8/README +59 -0
- data/lib/gems/xmpp4r-simple-0.8.8/lib/xmpp4r-simple.rb +492 -0
- data/lib/gems/xmpp4r-simple-0.8.8/test/test_xmpp4r_simple.rb +242 -0
- data/lib/mack-notifier.rb +1 -3
- metadata +398 -46
@@ -0,0 +1,242 @@
|
|
1
|
+
# Jabber::Simple - An extremely easy-to-use Jabber client library.
|
2
|
+
# Copyright 2006 Blaine Cook <blaine@obvious.com>, Obvious Corp.
|
3
|
+
#
|
4
|
+
# Jabber::Simple is free software; you can redistribute it and/or modify
|
5
|
+
# it under the terms of the GNU General Public License as published by
|
6
|
+
# the Free Software Foundation; either version 2 of the License, or
|
7
|
+
# (at your option) any later version.
|
8
|
+
#
|
9
|
+
# Jabber::Simple is distributed in the hope that it will be useful,
|
10
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
11
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
12
|
+
# GNU General Public License for more details.
|
13
|
+
#
|
14
|
+
# You should have received a copy of the GNU General Public License
|
15
|
+
# along with Jabber::Simple; if not, write to the Free Software
|
16
|
+
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
17
|
+
#
|
18
|
+
$:.unshift "#{File.dirname(__FILE__)}/../lib"
|
19
|
+
|
20
|
+
require 'test/unit'
|
21
|
+
require 'timeout'
|
22
|
+
require 'xmpp4r-simple'
|
23
|
+
|
24
|
+
class JabberSimpleTest < Test::Unit::TestCase
|
25
|
+
|
26
|
+
def setup
|
27
|
+
@@connections ||= {}
|
28
|
+
|
29
|
+
if @@connections.include?(:client1)
|
30
|
+
@client1 = @@connections[:client1]
|
31
|
+
@client2 = @@connections[:client2]
|
32
|
+
@client1.accept_subscriptions = true
|
33
|
+
@client2.accept_subscriptions = true
|
34
|
+
@jid1_raw = @@connections[:jid1_raw]
|
35
|
+
@jid2_raw = @@connections[:jid2_raw]
|
36
|
+
@jid1 = @jid1_raw.strip.to_s
|
37
|
+
@jid2 = @jid2_raw.strip.to_s
|
38
|
+
return true
|
39
|
+
end
|
40
|
+
|
41
|
+
logins = []
|
42
|
+
begin
|
43
|
+
logins = File.readlines(File.expand_path("~/.xmpp4r-simple-test-config")).map! { |login| login.split(" ") }
|
44
|
+
raise StandardError unless logins.size == 2
|
45
|
+
rescue => e
|
46
|
+
puts "\nConfiguration Error!\n\nYou must make available two unique Jabber accounts in order for the tests to pass."
|
47
|
+
puts "Place them in ~/.xmpp4r-simple-test-config, one per line like so:\n\n"
|
48
|
+
puts "user1@example.com/res password"
|
49
|
+
puts "user2@example.com/res password\n\n"
|
50
|
+
raise e
|
51
|
+
end
|
52
|
+
|
53
|
+
@@connections[:client1] = Jabber::Simple.new(*logins[0])
|
54
|
+
@@connections[:client2] = Jabber::Simple.new(*logins[1])
|
55
|
+
|
56
|
+
@@connections[:jid1_raw] = Jabber::JID.new(logins[0][0])
|
57
|
+
@@connections[:jid2_raw] = Jabber::JID.new(logins[1][0])
|
58
|
+
|
59
|
+
# Force load the client and roster, just to be safe.
|
60
|
+
@@connections[:client1].roster
|
61
|
+
@@connections[:client2].roster
|
62
|
+
|
63
|
+
# Re-run this method to setup the local instance variables the first time.
|
64
|
+
setup
|
65
|
+
end
|
66
|
+
|
67
|
+
def test_ensure_the_jabber_clients_are_connected_after_setup
|
68
|
+
assert @client1.client.is_connected?
|
69
|
+
assert @client2.client.is_connected?
|
70
|
+
end
|
71
|
+
|
72
|
+
def test_inspect_should_be_custom
|
73
|
+
assert_equal "Jabber::Simple #{@jid1_raw}", @client1.inspect
|
74
|
+
end
|
75
|
+
|
76
|
+
def test_inspect_contact_should_be_custom
|
77
|
+
assert_equal "Jabber::Contact #{@jid2}", @client1.contacts(@jid2).inspect
|
78
|
+
end
|
79
|
+
|
80
|
+
def test_remove_users_from_our_roster_should_succeed
|
81
|
+
@client2.remove(@jid1)
|
82
|
+
@client1.remove(@jid2)
|
83
|
+
|
84
|
+
sleep 3
|
85
|
+
|
86
|
+
assert_equal false, @client1.subscribed_to?(@jid2)
|
87
|
+
assert_equal false, @client2.subscribed_to?(@jid1)
|
88
|
+
end
|
89
|
+
|
90
|
+
def test_add_users_to_our_roster_should_succeed_with_automatic_approval
|
91
|
+
@client1.remove(@jid2)
|
92
|
+
@client2.remove(@jid1)
|
93
|
+
|
94
|
+
assert_before 60 do
|
95
|
+
assert_equal false, @client1.subscribed_to?(@jid2)
|
96
|
+
assert_equal false, @client2.subscribed_to?(@jid1)
|
97
|
+
end
|
98
|
+
|
99
|
+
@client1.new_subscriptions
|
100
|
+
@client1.add(@jid2)
|
101
|
+
|
102
|
+
assert_before 60 do
|
103
|
+
assert @client1.subscribed_to?(@jid2)
|
104
|
+
assert @client2.subscribed_to?(@jid1)
|
105
|
+
end
|
106
|
+
|
107
|
+
new_subscriptions = @client1.new_subscriptions
|
108
|
+
assert_equal 1, new_subscriptions.size
|
109
|
+
assert_equal @jid2, new_subscriptions[0][0].jid.strip.to_s
|
110
|
+
end
|
111
|
+
|
112
|
+
def test_sent_message_should_be_received
|
113
|
+
# First clear the client's message queue, just in case.
|
114
|
+
assert_kind_of Array, @client2.received_messages
|
115
|
+
|
116
|
+
# Next ensure that we're not subscribed, so that we can test the deferred message queue.
|
117
|
+
@client1.remove(@jid2)
|
118
|
+
@client2.remove(@jid1)
|
119
|
+
sleep 2
|
120
|
+
|
121
|
+
# Deliver the messages; this should be received by the other client.
|
122
|
+
@client1.deliver(@jid2, "test message")
|
123
|
+
|
124
|
+
sleep 2
|
125
|
+
|
126
|
+
# Fetch the message; allow up to ten seconds for the delivery to occur.
|
127
|
+
messages = []
|
128
|
+
begin
|
129
|
+
Timeout::timeout(20) {
|
130
|
+
loop do
|
131
|
+
messages = @client2.received_messages
|
132
|
+
break unless messages.empty?
|
133
|
+
sleep 1
|
134
|
+
end
|
135
|
+
}
|
136
|
+
rescue Timeout::Error
|
137
|
+
flunk "Timeout waiting for message"
|
138
|
+
end
|
139
|
+
|
140
|
+
# Ensure that the message was received intact.
|
141
|
+
assert_equal @jid1, messages.first.from.strip.to_s
|
142
|
+
assert_equal "test message", messages.first.body
|
143
|
+
end
|
144
|
+
|
145
|
+
def test_presence_updates_should_be_received
|
146
|
+
|
147
|
+
@client2.add(@client1)
|
148
|
+
@client1.add(@client2)
|
149
|
+
|
150
|
+
assert_before(60) { assert @client2.subscribed_to?(@jid1) }
|
151
|
+
assert_before(60) { assert_equal 0, @client2.presence_updates.size }
|
152
|
+
|
153
|
+
@client1.status(:away, "Doing something else.")
|
154
|
+
|
155
|
+
new_statuses = []
|
156
|
+
assert_before(60) do
|
157
|
+
new_statuses = @client2.presence_updates
|
158
|
+
assert_equal 1, new_statuses.size
|
159
|
+
end
|
160
|
+
|
161
|
+
new_status = new_statuses.first
|
162
|
+
assert_equal @jid1, new_status[0]
|
163
|
+
assert_equal "Doing something else.", new_status[2]
|
164
|
+
assert_equal :away, new_status[1]
|
165
|
+
end
|
166
|
+
|
167
|
+
def test_disable_auto_accept_subscription_requests
|
168
|
+
@client1.remove(@jid2)
|
169
|
+
@client2.remove(@jid1)
|
170
|
+
|
171
|
+
assert_before(60) do
|
172
|
+
assert_equal false, @client1.subscribed_to?(@jid2)
|
173
|
+
assert_equal false, @client2.subscribed_to?(@jid1)
|
174
|
+
end
|
175
|
+
|
176
|
+
@client1.accept_subscriptions = false
|
177
|
+
assert_equal false, @client1.accept_subscriptions?
|
178
|
+
|
179
|
+
assert_before(60) { assert_equal 0, @client1.subscription_requests.size }
|
180
|
+
|
181
|
+
@client2.add(@jid1)
|
182
|
+
|
183
|
+
new_subscription_requests = []
|
184
|
+
assert_before(60) do
|
185
|
+
new_subscription_requests = @client1.subscription_requests
|
186
|
+
assert_equal 1, new_subscription_requests.size
|
187
|
+
end
|
188
|
+
|
189
|
+
new_subscription = new_subscription_requests.first
|
190
|
+
assert_equal @jid2, new_subscription[0].jid.strip.to_s
|
191
|
+
assert_equal :subscribe, new_subscription[1].type
|
192
|
+
end
|
193
|
+
|
194
|
+
def test_automatically_reconnect
|
195
|
+
@client1.client.close
|
196
|
+
|
197
|
+
assert_before 60 do
|
198
|
+
assert_equal false, @client1.connected?
|
199
|
+
end
|
200
|
+
|
201
|
+
# empty client 2's received message queue.
|
202
|
+
@client2.received_messages
|
203
|
+
|
204
|
+
@client1.deliver(@jid2, "Testing")
|
205
|
+
|
206
|
+
assert_before(60) { assert @client1.connected? }
|
207
|
+
assert @client1.roster.instance_variable_get('@stream').is_connected?
|
208
|
+
assert_before(60) { assert_equal 1, @client2.received_messages.size }
|
209
|
+
end
|
210
|
+
|
211
|
+
def test_disconnect_doesnt_allow_auto_reconnects
|
212
|
+
@client1.disconnect
|
213
|
+
|
214
|
+
assert_equal false, @client1.connected?
|
215
|
+
|
216
|
+
assert_raises Jabber::ConnectionError do
|
217
|
+
@client1.deliver(@jid2, "testing")
|
218
|
+
end
|
219
|
+
|
220
|
+
@client1.reconnect
|
221
|
+
end
|
222
|
+
|
223
|
+
private
|
224
|
+
|
225
|
+
def assert_before(seconds, &block)
|
226
|
+
error = nil
|
227
|
+
begin
|
228
|
+
Timeout::timeout(seconds) {
|
229
|
+
begin
|
230
|
+
yield
|
231
|
+
rescue => e
|
232
|
+
error = e
|
233
|
+
sleep 0.5
|
234
|
+
retry
|
235
|
+
end
|
236
|
+
}
|
237
|
+
rescue Timeout::Error
|
238
|
+
raise error
|
239
|
+
end
|
240
|
+
end
|
241
|
+
|
242
|
+
end
|
data/lib/mack-notifier.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mack-notifier
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mark Bates
|
@@ -9,49 +9,10 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-
|
12
|
+
date: 2008-11-30 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
16
|
-
name: tmail
|
17
|
-
type: :runtime
|
18
|
-
version_requirement:
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
20
|
-
requirements:
|
21
|
-
- - "="
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: 1.2.3.1
|
24
|
-
version:
|
25
|
-
- !ruby/object:Gem::Dependency
|
26
|
-
name: validatable
|
27
|
-
type: :runtime
|
28
|
-
version_requirement:
|
29
|
-
version_requirements: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - "="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 1.6.7
|
34
|
-
version:
|
35
|
-
- !ruby/object:Gem::Dependency
|
36
|
-
name: xmpp4r
|
37
|
-
type: :runtime
|
38
|
-
version_requirement:
|
39
|
-
version_requirements: !ruby/object:Gem::Requirement
|
40
|
-
requirements:
|
41
|
-
- - "="
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
version: "0.4"
|
44
|
-
version:
|
45
|
-
- !ruby/object:Gem::Dependency
|
46
|
-
name: xmpp4r-simple
|
47
|
-
type: :runtime
|
48
|
-
version_requirement:
|
49
|
-
version_requirements: !ruby/object:Gem::Requirement
|
50
|
-
requirements:
|
51
|
-
- - "="
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: 0.8.8
|
54
|
-
version:
|
14
|
+
dependencies: []
|
15
|
+
|
55
16
|
description: Notifier functionality for Mack applications.
|
56
17
|
email: mark@mackframework.com
|
57
18
|
executables: []
|
@@ -61,10 +22,393 @@ extensions: []
|
|
61
22
|
extra_rdoc_files: []
|
62
23
|
|
63
24
|
files:
|
25
|
+
- lib/gems
|
26
|
+
- lib/gems/cache
|
27
|
+
- lib/gems/doc
|
28
|
+
- lib/gems/gems
|
29
|
+
- lib/gems/specifications
|
30
|
+
- lib/gems/tmail-1.2.3.1
|
31
|
+
- lib/gems/tmail-1.2.3.1/ext
|
32
|
+
- lib/gems/tmail-1.2.3.1/ext/Makefile
|
33
|
+
- lib/gems/tmail-1.2.3.1/ext/tmailscanner
|
34
|
+
- lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail
|
35
|
+
- lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail/depend
|
36
|
+
- lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail/extconf.rb
|
37
|
+
- lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail/MANIFEST
|
38
|
+
- lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail/tmailscanner.c
|
39
|
+
- lib/gems/tmail-1.2.3.1/lib
|
40
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail
|
41
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/address.rb
|
42
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/attachments.rb
|
43
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/base64.rb
|
44
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/compat.rb
|
45
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/config.rb
|
46
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/core_extensions.rb
|
47
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/encode.rb
|
48
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/header.rb
|
49
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/index.rb
|
50
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/interface.rb
|
51
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/loader.rb
|
52
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/mail.rb
|
53
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/mailbox.rb
|
54
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/main.rb
|
55
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/Makefile
|
56
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/mbox.rb
|
57
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/net.rb
|
58
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/obsolete.rb
|
59
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/parser.rb
|
60
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/parser.y
|
61
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/port.rb
|
62
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/quoting.rb
|
63
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/require_arch.rb
|
64
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/scanner.rb
|
65
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/scanner_r.rb
|
66
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/stringio.rb
|
67
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/utils.rb
|
68
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail/version.rb
|
69
|
+
- lib/gems/tmail-1.2.3.1/lib/tmail.rb
|
70
|
+
- lib/gems/tmail-1.2.3.1/meta
|
71
|
+
- lib/gems/tmail-1.2.3.1/meta/MANIFEST
|
72
|
+
- lib/gems/tmail-1.2.3.1/meta/project.yaml
|
73
|
+
- lib/gems/tmail-1.2.3.1/meta/unixname
|
74
|
+
- lib/gems/tmail-1.2.3.1/meta/VERSION
|
75
|
+
- lib/gems/validatable-1.6.7
|
76
|
+
- lib/gems/validatable-1.6.7/lib
|
77
|
+
- lib/gems/validatable-1.6.7/lib/child_validation.rb
|
78
|
+
- lib/gems/validatable-1.6.7/lib/errors.rb
|
79
|
+
- lib/gems/validatable-1.6.7/lib/included_validation.rb
|
80
|
+
- lib/gems/validatable-1.6.7/lib/macros.rb
|
81
|
+
- lib/gems/validatable-1.6.7/lib/object_extension.rb
|
82
|
+
- lib/gems/validatable-1.6.7/lib/requireable.rb
|
83
|
+
- lib/gems/validatable-1.6.7/lib/understandable.rb
|
84
|
+
- lib/gems/validatable-1.6.7/lib/validatable.rb
|
85
|
+
- lib/gems/validatable-1.6.7/lib/validatable_class_methods.rb
|
86
|
+
- lib/gems/validatable-1.6.7/lib/validatable_instance_methods.rb
|
87
|
+
- lib/gems/validatable-1.6.7/lib/validations
|
88
|
+
- lib/gems/validatable-1.6.7/lib/validations/validates_acceptance_of.rb
|
89
|
+
- lib/gems/validatable-1.6.7/lib/validations/validates_confirmation_of.rb
|
90
|
+
- lib/gems/validatable-1.6.7/lib/validations/validates_each.rb
|
91
|
+
- lib/gems/validatable-1.6.7/lib/validations/validates_format_of.rb
|
92
|
+
- lib/gems/validatable-1.6.7/lib/validations/validates_length_of.rb
|
93
|
+
- lib/gems/validatable-1.6.7/lib/validations/validates_numericality_of.rb
|
94
|
+
- lib/gems/validatable-1.6.7/lib/validations/validates_presence_of.rb
|
95
|
+
- lib/gems/validatable-1.6.7/lib/validations/validates_true_for.rb
|
96
|
+
- lib/gems/validatable-1.6.7/lib/validations/validation_base.rb
|
97
|
+
- lib/gems/validatable-1.6.7/rakefile.rb
|
98
|
+
- lib/gems/validatable-1.6.7/README
|
99
|
+
- lib/gems/validatable-1.6.7/test
|
100
|
+
- lib/gems/validatable-1.6.7/test/all_tests.rb
|
101
|
+
- lib/gems/validatable-1.6.7/test/functional
|
102
|
+
- lib/gems/validatable-1.6.7/test/functional/validatable_test.rb
|
103
|
+
- lib/gems/validatable-1.6.7/test/functional/validates_acceptance_of_test.rb
|
104
|
+
- lib/gems/validatable-1.6.7/test/functional/validates_confirmation_of_test.rb
|
105
|
+
- lib/gems/validatable-1.6.7/test/functional/validates_each_test.rb
|
106
|
+
- lib/gems/validatable-1.6.7/test/functional/validates_format_of_test.rb
|
107
|
+
- lib/gems/validatable-1.6.7/test/functional/validates_length_of_test.rb
|
108
|
+
- lib/gems/validatable-1.6.7/test/functional/validates_numericality_of_test.rb
|
109
|
+
- lib/gems/validatable-1.6.7/test/functional/validates_presence_of_test.rb
|
110
|
+
- lib/gems/validatable-1.6.7/test/functional/validates_true_for_test.rb
|
111
|
+
- lib/gems/validatable-1.6.7/test/test_helper.rb
|
112
|
+
- lib/gems/validatable-1.6.7/test/unit
|
113
|
+
- lib/gems/validatable-1.6.7/test/unit/errors_test.rb
|
114
|
+
- lib/gems/validatable-1.6.7/test/unit/understandable_test.rb
|
115
|
+
- lib/gems/validatable-1.6.7/test/unit/validatable_test.rb
|
116
|
+
- lib/gems/validatable-1.6.7/test/unit/validates_acceptance_of_test.rb
|
117
|
+
- lib/gems/validatable-1.6.7/test/unit/validates_confirmation_of_test.rb
|
118
|
+
- lib/gems/validatable-1.6.7/test/unit/validates_format_of_test.rb
|
119
|
+
- lib/gems/validatable-1.6.7/test/unit/validates_length_of_test.rb
|
120
|
+
- lib/gems/validatable-1.6.7/test/unit/validates_numericality_of_test.rb
|
121
|
+
- lib/gems/validatable-1.6.7/test/unit/validates_presence_of_test.rb
|
122
|
+
- lib/gems/validatable-1.6.7/test/unit/validates_true_for_test.rb
|
123
|
+
- lib/gems/validatable-1.6.7/test/unit/validation_base_test.rb
|
124
|
+
- lib/gems/xmpp4r-0.4
|
125
|
+
- lib/gems/xmpp4r-0.4/CHANGELOG
|
126
|
+
- lib/gems/xmpp4r-0.4/COPYING
|
127
|
+
- lib/gems/xmpp4r-0.4/data
|
128
|
+
- lib/gems/xmpp4r-0.4/data/doc
|
129
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r
|
130
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples
|
131
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced
|
132
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure
|
133
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/adventure.rb
|
134
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/adventuremuc.rb
|
135
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/cube.xml
|
136
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/README
|
137
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/tower.xml
|
138
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/world.rb
|
139
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/fileserve.conf
|
140
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/fileserve.rb
|
141
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/getonline.rb
|
142
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/gtkmucclient.rb
|
143
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/migrate.rb
|
144
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/minimuc.rb
|
145
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/pep-aggregator
|
146
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/pep-aggregator/index.xsl
|
147
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/pep-aggregator/pep-aggregator.rb
|
148
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/recvfile.rb
|
149
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/rosterdiscovery.rb
|
150
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/sendfile.conf
|
151
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/sendfile.rb
|
152
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/shellmgr
|
153
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr.rb
|
154
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_jabber.rb
|
155
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_test.rb
|
156
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/versionpoll.rb
|
157
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/xmpping.rb
|
158
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/xmppingrc.sample
|
159
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic
|
160
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/change_password.rb
|
161
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/client.rb
|
162
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/component.rb
|
163
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/echo.rb
|
164
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/jabbersend.rb
|
165
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/mass_sender.rb
|
166
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/muc_owner_config.rb
|
167
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/mucinfo.rb
|
168
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/mucsimplebot.rb
|
169
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/register.rb
|
170
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/remove_registration.rb
|
171
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/roster.rb
|
172
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/rosterprint.rb
|
173
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/rosterrename.rb
|
174
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/rosterwatch.rb
|
175
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/send_vcard.rb
|
176
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/tune_client.rb
|
177
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/tune_server.rb
|
178
|
+
- lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/versionbot.rb
|
179
|
+
- lib/gems/xmpp4r-0.4/lib
|
180
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r
|
181
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/base64.rb
|
182
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams
|
183
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper
|
184
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/filetransfer.rb
|
185
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/ibb
|
186
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/ibb/base.rb
|
187
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/ibb/initiator.rb
|
188
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/ibb/target.rb
|
189
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams
|
190
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb
|
191
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb
|
192
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb
|
193
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb
|
194
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb
|
195
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb.orig
|
196
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/iq
|
197
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/iq/bytestreams.rb
|
198
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/iq/si.rb
|
199
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams.rb
|
200
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/callbacks.rb
|
201
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/caps
|
202
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/caps/c.rb
|
203
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/caps/helper
|
204
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/caps/helper/generator.rb
|
205
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/caps/helper/helper.rb
|
206
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/caps.rb
|
207
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/client.rb
|
208
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/command
|
209
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/command/helper
|
210
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/command/helper/responder.rb
|
211
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/command/iq
|
212
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/command/iq/command.rb
|
213
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/component.rb
|
214
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/connection.rb
|
215
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/dataforms
|
216
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/dataforms/x
|
217
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/dataforms/x/data.rb
|
218
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/dataforms.rb
|
219
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/debuglog.rb
|
220
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/delay
|
221
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/delay/x
|
222
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/delay/x/delay.rb
|
223
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/delay.rb
|
224
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery
|
225
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery/helper
|
226
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery/helper/responder.rb
|
227
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery/iq
|
228
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery/iq/discoinfo.rb
|
229
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery/iq/discoitems.rb
|
230
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery.rb
|
231
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/errors.rb
|
232
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/feature_negotiation
|
233
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/feature_negotiation/iq
|
234
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/feature_negotiation/iq/feature.rb
|
235
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/feature_negotiation.rb
|
236
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/framework
|
237
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/framework/base.rb
|
238
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/framework/bot.rb
|
239
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/httpbinding
|
240
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/httpbinding/client.rb
|
241
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/httpbinding.rb
|
242
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/idgenerator.rb
|
243
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/iq.rb
|
244
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/jid.rb
|
245
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/message.rb
|
246
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/muc
|
247
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/helper
|
248
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/helper/mucbrowser.rb
|
249
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/helper/mucclient.rb
|
250
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/helper/simplemucclient.rb
|
251
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/iq
|
252
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/iq/mucadmin.rb
|
253
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/iq/mucadminitem.rb
|
254
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/iq/mucowner.rb
|
255
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/item.rb
|
256
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/x
|
257
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/x/muc.rb
|
258
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/x/mucuserinvite.rb
|
259
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/x/mucuseritem.rb
|
260
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/muc.rb
|
261
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/presence.rb
|
262
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub
|
263
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children
|
264
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/configuration.rb
|
265
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/event.rb
|
266
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/item.rb
|
267
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/items.rb
|
268
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/node_config.rb
|
269
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/publish.rb
|
270
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/subscription.rb
|
271
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/subscription_config.rb
|
272
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/unsubscribe.rb
|
273
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/helper
|
274
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/helper/nodebrowser.rb
|
275
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/helper/nodehelper.rb
|
276
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/helper/servicehelper.rb
|
277
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/iq
|
278
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/iq/pubsub.rb
|
279
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub.rb
|
280
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/query.rb
|
281
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/rexmladdons.rb
|
282
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/roster
|
283
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/roster/helper
|
284
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/roster/helper/roster.rb
|
285
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/roster/iq
|
286
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/roster/iq/roster.rb
|
287
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/roster/x
|
288
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/roster/x/roster.rb
|
289
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/roster.rb
|
290
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc
|
291
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/helper
|
292
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/helper/client.rb
|
293
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/helper/server.rb
|
294
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/helper/xmlrpcaddons.rb
|
295
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/iq
|
296
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/iq/rpc.rb
|
297
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc.rb
|
298
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/sasl.rb
|
299
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/semaphore.rb
|
300
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/stream.rb
|
301
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/streamparser.rb
|
302
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/tune
|
303
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/tune/helper
|
304
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/tune/helper/helper.rb
|
305
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/tune/tune.rb
|
306
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/tune.rb
|
307
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/vcard
|
308
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/vcard/helper
|
309
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/vcard/helper/vcard.rb
|
310
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/vcard/iq
|
311
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/vcard/iq/vcard.rb
|
312
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/vcard.rb
|
313
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/version
|
314
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/version/helper
|
315
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/version/helper/responder.rb
|
316
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/version/helper/simpleresponder.rb
|
317
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/version/iq
|
318
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/version/iq/version.rb
|
319
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/version.rb
|
320
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/x.rb
|
321
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/xhtml
|
322
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/xhtml/html.rb
|
323
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/xhtml.rb
|
324
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/xmpp4r.rb
|
325
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/xmppelement.rb
|
326
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r/xmppstanza.rb
|
327
|
+
- lib/gems/xmpp4r-0.4/lib/xmpp4r.rb
|
328
|
+
- lib/gems/xmpp4r-0.4/LICENSE
|
329
|
+
- lib/gems/xmpp4r-0.4/Rakefile
|
330
|
+
- lib/gems/xmpp4r-0.4/README.rdoc
|
331
|
+
- lib/gems/xmpp4r-0.4/README_ruby19.txt
|
332
|
+
- lib/gems/xmpp4r-0.4/setup.rb
|
333
|
+
- lib/gems/xmpp4r-0.4/test
|
334
|
+
- lib/gems/xmpp4r-0.4/test/bytestreams
|
335
|
+
- lib/gems/xmpp4r-0.4/test/bytestreams/tc_ibb.rb
|
336
|
+
- lib/gems/xmpp4r-0.4/test/bytestreams/tc_socks5bytestreams.rb
|
337
|
+
- lib/gems/xmpp4r-0.4/test/caps
|
338
|
+
- lib/gems/xmpp4r-0.4/test/caps/tc_helper.rb
|
339
|
+
- lib/gems/xmpp4r-0.4/test/dataforms
|
340
|
+
- lib/gems/xmpp4r-0.4/test/dataforms/tc_data.rb
|
341
|
+
- lib/gems/xmpp4r-0.4/test/delay
|
342
|
+
- lib/gems/xmpp4r-0.4/test/delay/tc_xdelay.rb
|
343
|
+
- lib/gems/xmpp4r-0.4/test/discovery
|
344
|
+
- lib/gems/xmpp4r-0.4/test/discovery/tc_responder.rb
|
345
|
+
- lib/gems/xmpp4r-0.4/test/lib
|
346
|
+
- lib/gems/xmpp4r-0.4/test/lib/assert_equal_xml.rb
|
347
|
+
- lib/gems/xmpp4r-0.4/test/lib/clienttester.rb
|
348
|
+
- lib/gems/xmpp4r-0.4/test/muc
|
349
|
+
- lib/gems/xmpp4r-0.4/test/muc/tc_muc_mucclient.rb
|
350
|
+
- lib/gems/xmpp4r-0.4/test/muc/tc_muc_simplemucclient.rb
|
351
|
+
- lib/gems/xmpp4r-0.4/test/muc/tc_mucowner.rb
|
352
|
+
- lib/gems/xmpp4r-0.4/test/pubsub
|
353
|
+
- lib/gems/xmpp4r-0.4/test/pubsub/tc_helper.rb
|
354
|
+
- lib/gems/xmpp4r-0.4/test/pubsub/tc_nodeconfig.rb
|
355
|
+
- lib/gems/xmpp4r-0.4/test/pubsub/tc_subscriptionconfig.rb
|
356
|
+
- lib/gems/xmpp4r-0.4/test/roster
|
357
|
+
- lib/gems/xmpp4r-0.4/test/roster/tc_helper.rb
|
358
|
+
- lib/gems/xmpp4r-0.4/test/roster/tc_iqqueryroster.rb
|
359
|
+
- lib/gems/xmpp4r-0.4/test/roster/tc_xroster.rb
|
360
|
+
- lib/gems/xmpp4r-0.4/test/rpc
|
361
|
+
- lib/gems/xmpp4r-0.4/test/rpc/tc_helper.rb
|
362
|
+
- lib/gems/xmpp4r-0.4/test/tc_callbacks.rb
|
363
|
+
- lib/gems/xmpp4r-0.4/test/tc_class_names.rb
|
364
|
+
- lib/gems/xmpp4r-0.4/test/tc_client.rb
|
365
|
+
- lib/gems/xmpp4r-0.4/test/tc_errors.rb
|
366
|
+
- lib/gems/xmpp4r-0.4/test/tc_idgenerator.rb
|
367
|
+
- lib/gems/xmpp4r-0.4/test/tc_iq.rb
|
368
|
+
- lib/gems/xmpp4r-0.4/test/tc_iqquery.rb
|
369
|
+
- lib/gems/xmpp4r-0.4/test/tc_jid.rb
|
370
|
+
- lib/gems/xmpp4r-0.4/test/tc_message.rb
|
371
|
+
- lib/gems/xmpp4r-0.4/test/tc_presence.rb
|
372
|
+
- lib/gems/xmpp4r-0.4/test/tc_rexml.rb
|
373
|
+
- lib/gems/xmpp4r-0.4/test/tc_stream.rb
|
374
|
+
- lib/gems/xmpp4r-0.4/test/tc_streamComponent.rb
|
375
|
+
- lib/gems/xmpp4r-0.4/test/tc_streamError.rb
|
376
|
+
- lib/gems/xmpp4r-0.4/test/tc_streamparser.rb
|
377
|
+
- lib/gems/xmpp4r-0.4/test/tc_streamSend.rb
|
378
|
+
- lib/gems/xmpp4r-0.4/test/tc_xmppstanza.rb
|
379
|
+
- lib/gems/xmpp4r-0.4/test/ts_xmpp4r.rb
|
380
|
+
- lib/gems/xmpp4r-0.4/test/tune
|
381
|
+
- lib/gems/xmpp4r-0.4/test/tune/tc_helper_recv.rb
|
382
|
+
- lib/gems/xmpp4r-0.4/test/tune/tc_helper_send.rb
|
383
|
+
- lib/gems/xmpp4r-0.4/test/tune/tc_tune.rb
|
384
|
+
- lib/gems/xmpp4r-0.4/test/vcard
|
385
|
+
- lib/gems/xmpp4r-0.4/test/vcard/tc_helper.rb
|
386
|
+
- lib/gems/xmpp4r-0.4/test/vcard/tc_iqvcard.rb
|
387
|
+
- lib/gems/xmpp4r-0.4/test/version
|
388
|
+
- lib/gems/xmpp4r-0.4/test/version/tc_helper.rb
|
389
|
+
- lib/gems/xmpp4r-0.4/test/version/tc_iqqueryversion.rb
|
390
|
+
- lib/gems/xmpp4r-0.4/test/xhtml
|
391
|
+
- lib/gems/xmpp4r-0.4/test/xhtml/tc_html.rb
|
392
|
+
- lib/gems/xmpp4r-0.4/tools
|
393
|
+
- lib/gems/xmpp4r-0.4/tools/gen_requires.bash
|
394
|
+
- lib/gems/xmpp4r-0.4/tools/xmpp4r-gemspec-test.rb
|
395
|
+
- lib/gems/xmpp4r-0.4/xmpp4r.gemspec
|
396
|
+
- lib/gems/xmpp4r-simple-0.8.8
|
397
|
+
- lib/gems/xmpp4r-simple-0.8.8/CHANGELOG
|
398
|
+
- lib/gems/xmpp4r-simple-0.8.8/COPYING
|
399
|
+
- lib/gems/xmpp4r-simple-0.8.8/lib
|
400
|
+
- lib/gems/xmpp4r-simple-0.8.8/lib/xmpp4r-simple.rb
|
401
|
+
- lib/gems/xmpp4r-simple-0.8.8/README
|
402
|
+
- lib/gems/xmpp4r-simple-0.8.8/test
|
403
|
+
- lib/gems/xmpp4r-simple-0.8.8/test/test_xmpp4r_simple.rb
|
404
|
+
- lib/gems.rb
|
405
|
+
- lib/mack-notifier
|
406
|
+
- lib/mack-notifier/adapters
|
64
407
|
- lib/mack-notifier/adapters/base.rb
|
65
408
|
- lib/mack-notifier/adapters/tmail.rb
|
66
409
|
- lib/mack-notifier/adapters/xmpp_msg.rb
|
67
410
|
- lib/mack-notifier/attachment.rb
|
411
|
+
- lib/mack-notifier/delivery_handlers
|
68
412
|
- lib/mack-notifier/delivery_handlers/sendmail.rb
|
69
413
|
- lib/mack-notifier/delivery_handlers/smtp.rb
|
70
414
|
- lib/mack-notifier/delivery_handlers/test.rb
|
@@ -72,14 +416,22 @@ files:
|
|
72
416
|
- lib/mack-notifier/errors.rb
|
73
417
|
- lib/mack-notifier/loader.rb
|
74
418
|
- lib/mack-notifier/notifier.rb
|
419
|
+
- lib/mack-notifier/notifier_generator
|
75
420
|
- lib/mack-notifier/notifier_generator/manifest.yml
|
76
421
|
- lib/mack-notifier/notifier_generator/notifier_generator.rb
|
422
|
+
- lib/mack-notifier/notifier_generator/templates
|
423
|
+
- lib/mack-notifier/notifier_generator/templates/app
|
424
|
+
- lib/mack-notifier/notifier_generator/templates/app/notifiers
|
77
425
|
- lib/mack-notifier/notifier_generator/templates/app/notifiers/html.erb.template
|
78
426
|
- lib/mack-notifier/notifier_generator/templates/app/notifiers/notifier.rb.template
|
79
427
|
- lib/mack-notifier/notifier_generator/templates/app/notifiers/plain.erb.template
|
428
|
+
- lib/mack-notifier/notifier_generator/templates/test
|
429
|
+
- lib/mack-notifier/notifier_generator/templates/test/notifiers
|
80
430
|
- lib/mack-notifier/notifier_generator/templates/test/notifiers/rspec.rb.template
|
81
431
|
- lib/mack-notifier/notifier_generator/templates/test/notifiers/test_case.rb.template
|
82
432
|
- lib/mack-notifier/paths.rb
|
433
|
+
- lib/mack-notifier/rendering
|
434
|
+
- lib/mack-notifier/rendering/type
|
83
435
|
- lib/mack-notifier/rendering/type/mailer.rb
|
84
436
|
- lib/mack-notifier/settings.rb
|
85
437
|
- lib/mack-notifier/testing.rb
|
@@ -89,8 +441,8 @@ files:
|
|
89
441
|
has_rdoc: true
|
90
442
|
homepage: http://www.mackframework.com
|
91
443
|
post_install_message:
|
92
|
-
rdoc_options:
|
93
|
-
|
444
|
+
rdoc_options:
|
445
|
+
- --exclude=gems/
|
94
446
|
require_paths:
|
95
447
|
- lib
|
96
448
|
- lib
|
@@ -109,7 +461,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
109
461
|
requirements: []
|
110
462
|
|
111
463
|
rubyforge_project: magrathea
|
112
|
-
rubygems_version: 1.
|
464
|
+
rubygems_version: 1.3.1
|
113
465
|
signing_key:
|
114
466
|
specification_version: 2
|
115
467
|
summary: Notifier functionality for Mack applications.
|