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,50 @@
|
|
1
|
+
# require 'rubygems'
|
2
|
+
require 'rake/gempackagetask'
|
3
|
+
require 'rake/rdoctask'
|
4
|
+
require 'rake/contrib/sshpublisher'
|
5
|
+
|
6
|
+
task :default => :test
|
7
|
+
|
8
|
+
task :test do
|
9
|
+
require File.dirname(__FILE__) + '/test/all_tests.rb'
|
10
|
+
end
|
11
|
+
|
12
|
+
desc 'Generate RDoc'
|
13
|
+
Rake::RDocTask.new do |task|
|
14
|
+
task.main = 'README'
|
15
|
+
task.title = 'Validatable'
|
16
|
+
task.rdoc_dir = 'doc'
|
17
|
+
task.options << "--line-numbers" << "--inline-source"
|
18
|
+
task.rdoc_files.include('README', 'lib/**/*.rb')
|
19
|
+
%x[erb README_TEMPLATE > README] if File.exists?('README_TEMPLATE')
|
20
|
+
end
|
21
|
+
|
22
|
+
desc "Upload RDoc to RubyForge"
|
23
|
+
task :publish_rdoc => [:rdoc] do
|
24
|
+
Rake::SshDirPublisher.new("jaycfields@rubyforge.org", "/var/www/gforge-projects/validatable", "doc").upload
|
25
|
+
end
|
26
|
+
|
27
|
+
Gem::manage_gems
|
28
|
+
|
29
|
+
specification = Gem::Specification.new do |s|
|
30
|
+
s.name = "validatable"
|
31
|
+
s.summary = "Validatable is a library for adding validations."
|
32
|
+
s.version = "1.6.7"
|
33
|
+
s.author = 'Jay Fields'
|
34
|
+
s.description = "Validatable is a library for adding validations."
|
35
|
+
s.email = 'validatable-developer@rubyforge.org'
|
36
|
+
s.homepage = 'http://validatable.rubyforge.org'
|
37
|
+
s.rubyforge_project = 'validatable'
|
38
|
+
|
39
|
+
s.has_rdoc = true
|
40
|
+
s.extra_rdoc_files = ['README']
|
41
|
+
s.rdoc_options << '--title' << 'Validatable' << '--main' << 'README' << '--line-numbers'
|
42
|
+
|
43
|
+
s.files = FileList['{lib,test}/**/*.rb', '[A-Z]*$', 'rakefile.rb'].to_a
|
44
|
+
s.test_file = "test/all_tests.rb"
|
45
|
+
end
|
46
|
+
|
47
|
+
Rake::GemPackageTask.new(specification) do |package|
|
48
|
+
package.need_zip = false
|
49
|
+
package.need_tar = false
|
50
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
Dir['test/**/*_test.rb'].each { |test_case| require test_case }
|
@@ -0,0 +1,437 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
2
|
+
|
3
|
+
functional_tests do
|
4
|
+
|
5
|
+
expect "can't be empty" do
|
6
|
+
child_class = Module.new do
|
7
|
+
include Validatable
|
8
|
+
validates_presence_of :name
|
9
|
+
end
|
10
|
+
klass = Class.new do
|
11
|
+
include Validatable
|
12
|
+
include_validations_from :child
|
13
|
+
define_method :child do
|
14
|
+
child_class
|
15
|
+
end
|
16
|
+
attr_accessor :name
|
17
|
+
end
|
18
|
+
instance = klass.new
|
19
|
+
instance.valid?
|
20
|
+
instance.errors.on(:name)
|
21
|
+
end
|
22
|
+
|
23
|
+
expect "can't be empty" do
|
24
|
+
child_class = Module.new do
|
25
|
+
include Validatable
|
26
|
+
validates_presence_of :name
|
27
|
+
end
|
28
|
+
klass = Class.new do
|
29
|
+
include Validatable
|
30
|
+
validates_presence_of :address
|
31
|
+
include_validations_from :child
|
32
|
+
define_method :child do
|
33
|
+
child_class
|
34
|
+
end
|
35
|
+
attr_accessor :name, :address
|
36
|
+
end
|
37
|
+
instance = klass.new
|
38
|
+
instance.valid?
|
39
|
+
instance.errors.on(:address)
|
40
|
+
end
|
41
|
+
|
42
|
+
expect :is_set do
|
43
|
+
klass = Class.new do
|
44
|
+
include Validatable
|
45
|
+
attr_accessor :result
|
46
|
+
before_validation do
|
47
|
+
self.result = :is_set
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
instance = klass.new
|
52
|
+
instance.valid?
|
53
|
+
instance.result
|
54
|
+
end
|
55
|
+
|
56
|
+
expect :is_set do
|
57
|
+
klass = Class.new do
|
58
|
+
include Validatable
|
59
|
+
attr_accessor :name, :result
|
60
|
+
validates_presence_of :name, :after_validate => lambda { |result, attribute| self.result = :is_set }
|
61
|
+
end
|
62
|
+
|
63
|
+
instance = klass.new
|
64
|
+
instance.valid?
|
65
|
+
instance.result
|
66
|
+
end
|
67
|
+
|
68
|
+
expect false do
|
69
|
+
klass = Class.new do
|
70
|
+
include Validatable
|
71
|
+
attr_accessor :name
|
72
|
+
validates_presence_of :name
|
73
|
+
end
|
74
|
+
subclass = Class.new klass do
|
75
|
+
end
|
76
|
+
subsubclass = Class.new subclass do
|
77
|
+
end
|
78
|
+
subsubclass.new.valid?
|
79
|
+
end
|
80
|
+
|
81
|
+
expect false do
|
82
|
+
klass = Class.new do
|
83
|
+
include Validatable
|
84
|
+
attr_accessor :name
|
85
|
+
validates_presence_of :name
|
86
|
+
end
|
87
|
+
subclass = Class.new klass do
|
88
|
+
end
|
89
|
+
subclass.new.valid?
|
90
|
+
end
|
91
|
+
|
92
|
+
expect true do
|
93
|
+
klass = Class.new do
|
94
|
+
include Validatable
|
95
|
+
attr_accessor :name
|
96
|
+
validates_presence_of :name
|
97
|
+
end
|
98
|
+
subclass = Class.new klass do
|
99
|
+
end
|
100
|
+
instance = subclass.new
|
101
|
+
instance.name = 'a name'
|
102
|
+
instance.valid?
|
103
|
+
end
|
104
|
+
|
105
|
+
expect ArgumentError do
|
106
|
+
Class.new do
|
107
|
+
include Validatable
|
108
|
+
attr_accessor :name
|
109
|
+
validates_presence_of :name, :times => 1
|
110
|
+
validates_presence_of :name, :times => 1
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
expect ArgumentError do
|
115
|
+
Class.new do
|
116
|
+
include Validatable
|
117
|
+
attr_accessor :name
|
118
|
+
validates_presence_of :name, :times => 1, :key => 'anything'
|
119
|
+
validates_presence_of :name, :times => 1, :key => 'anything'
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
expect "is invalid" do
|
124
|
+
child_class = Class.new do
|
125
|
+
include Validatable
|
126
|
+
attr_accessor :name, :address
|
127
|
+
validates_presence_of :name
|
128
|
+
validates_format_of :address, :with => /.+/
|
129
|
+
end
|
130
|
+
klass = Class.new do
|
131
|
+
include Validatable
|
132
|
+
include_errors_from :child
|
133
|
+
define_method :child do
|
134
|
+
child_class.new
|
135
|
+
end
|
136
|
+
end
|
137
|
+
instance = klass.new
|
138
|
+
instance.valid?
|
139
|
+
instance.errors.on(:address)
|
140
|
+
end
|
141
|
+
|
142
|
+
expect "can't be empty" do
|
143
|
+
child_class = Class.new do
|
144
|
+
include Validatable
|
145
|
+
attr_accessor :name, :address
|
146
|
+
validates_presence_of :name
|
147
|
+
validates_format_of :address, :with => /.+/
|
148
|
+
end
|
149
|
+
klass = Class.new do
|
150
|
+
include Validatable
|
151
|
+
include_errors_from :child
|
152
|
+
define_method :child do
|
153
|
+
child_class.new
|
154
|
+
end
|
155
|
+
end
|
156
|
+
instance = klass.new
|
157
|
+
instance.valid?
|
158
|
+
instance.errors.on(:name)
|
159
|
+
end
|
160
|
+
|
161
|
+
|
162
|
+
test "when child validations have errors, level 2 and higher parent validations are not performed" do
|
163
|
+
child_class = Class.new do
|
164
|
+
include Validatable
|
165
|
+
attr_accessor :name
|
166
|
+
validates_presence_of :name
|
167
|
+
end
|
168
|
+
|
169
|
+
klass = Class.new do
|
170
|
+
include Validatable
|
171
|
+
extend Forwardable
|
172
|
+
def_delegator :child, :name
|
173
|
+
validates_true_for :name, :logic => lambda { false }, :level => 2, :message => "invalid message"
|
174
|
+
include_errors_from :child
|
175
|
+
define_method :child do
|
176
|
+
@child ||= child_class.new
|
177
|
+
end
|
178
|
+
end
|
179
|
+
instance = klass.new
|
180
|
+
instance.valid?
|
181
|
+
assert_equal "can't be empty", instance.errors.on(:name)
|
182
|
+
end
|
183
|
+
|
184
|
+
test "when child validations have errors, level 1 parent validations are still performed" do
|
185
|
+
child_class = Class.new do
|
186
|
+
include Validatable
|
187
|
+
attr_accessor :name
|
188
|
+
validates_presence_of :name
|
189
|
+
end
|
190
|
+
|
191
|
+
klass = Class.new do
|
192
|
+
include Validatable
|
193
|
+
validates_true_for :address, :logic => lambda { false }, :level => 1, :message => "invalid message"
|
194
|
+
include_errors_from :child
|
195
|
+
define_method :child do
|
196
|
+
@child ||= child_class.new
|
197
|
+
end
|
198
|
+
|
199
|
+
end
|
200
|
+
instance = klass.new
|
201
|
+
instance.valid?
|
202
|
+
assert_equal "can't be empty", instance.errors.on(:name)
|
203
|
+
assert_equal "invalid message", instance.errors.on(:address)
|
204
|
+
end
|
205
|
+
|
206
|
+
expect "can't be empty" do
|
207
|
+
child_class = Class.new do
|
208
|
+
include Validatable
|
209
|
+
attr_accessor :name, :address
|
210
|
+
validates_presence_of :name
|
211
|
+
end
|
212
|
+
klass = Class.new do
|
213
|
+
include Validatable
|
214
|
+
include_errors_from :child, :map => {:name => :namen}
|
215
|
+
define_method :child do
|
216
|
+
child_class.new
|
217
|
+
end
|
218
|
+
end
|
219
|
+
instance = klass.new
|
220
|
+
instance.valid?
|
221
|
+
instance.errors.on(:namen)
|
222
|
+
end
|
223
|
+
|
224
|
+
expect "can't be empty" do
|
225
|
+
child_class = Class.new do
|
226
|
+
include Validatable
|
227
|
+
attr_accessor :name, :address
|
228
|
+
validates_presence_of :name
|
229
|
+
end
|
230
|
+
klass = Class.new do
|
231
|
+
include Validatable
|
232
|
+
include_errors_from :child, :if => lambda { true }
|
233
|
+
define_method :child do
|
234
|
+
child_class.new
|
235
|
+
end
|
236
|
+
end
|
237
|
+
instance = klass.new
|
238
|
+
instance.valid?
|
239
|
+
instance.errors.on(:name)
|
240
|
+
end
|
241
|
+
|
242
|
+
expect true do
|
243
|
+
child_class = Class.new do
|
244
|
+
include Validatable
|
245
|
+
attr_accessor :name, :address
|
246
|
+
validates_presence_of :name
|
247
|
+
end
|
248
|
+
klass = Class.new do
|
249
|
+
include Validatable
|
250
|
+
include_errors_from :child, :if => lambda { false }
|
251
|
+
define_method :child do
|
252
|
+
child_class.new
|
253
|
+
end
|
254
|
+
end
|
255
|
+
instance = klass.new
|
256
|
+
instance.valid?
|
257
|
+
end
|
258
|
+
|
259
|
+
test "classes only have valid_for_* methods for groups that appear in their validations" do
|
260
|
+
class_with_group_one = Class.new do
|
261
|
+
include Validatable
|
262
|
+
validates_presence_of :name, :groups => :group_one
|
263
|
+
attr_accessor :name
|
264
|
+
end
|
265
|
+
class_with_group_two = Class.new do
|
266
|
+
include Validatable
|
267
|
+
validates_presence_of :name, :groups => :group_two
|
268
|
+
attr_accessor :name
|
269
|
+
end
|
270
|
+
assert_equal false, class_with_group_one.public_instance_methods.include?(:valid_for_group_two?)
|
271
|
+
assert_equal false, class_with_group_two.public_instance_methods.include?(:valid_for_group_one?)
|
272
|
+
end
|
273
|
+
|
274
|
+
test "nonmatching groups are not used as validations" do
|
275
|
+
klass = Class.new do
|
276
|
+
include Validatable
|
277
|
+
validates_presence_of :name, :groups => :group_one
|
278
|
+
validates_presence_of :address, :groups => :group_two
|
279
|
+
attr_accessor :name, :address
|
280
|
+
end
|
281
|
+
instance = klass.new
|
282
|
+
assert_equal nil, instance.errors.on(:name)
|
283
|
+
end
|
284
|
+
|
285
|
+
expect "can't be empty twice changed message" do
|
286
|
+
klass = Class.new do
|
287
|
+
include Validatable
|
288
|
+
validates_presence_of :name
|
289
|
+
attr_accessor :name
|
290
|
+
end
|
291
|
+
|
292
|
+
Validatable::ValidationBase.class_eval do
|
293
|
+
after_validate do |result, instance, attribute|
|
294
|
+
instance.errors.add(attribute, " changed message")
|
295
|
+
end
|
296
|
+
end
|
297
|
+
Validatable::ValidatesPresenceOf.class_eval do
|
298
|
+
after_validate do |result, instance, attribute|
|
299
|
+
instance.errors.add(attribute, " twice")
|
300
|
+
end
|
301
|
+
end
|
302
|
+
instance = klass.new
|
303
|
+
instance.valid?
|
304
|
+
Validatable::ValidatesPresenceOf.after_validations.clear
|
305
|
+
Validatable::ValidationBase.after_validations.clear
|
306
|
+
instance.errors.on(:name).join
|
307
|
+
end
|
308
|
+
|
309
|
+
expect false do
|
310
|
+
klass = Class.new do
|
311
|
+
include Validatable
|
312
|
+
validates_presence_of :name, :groups => :group_one
|
313
|
+
attr_accessor :name
|
314
|
+
end
|
315
|
+
instance = klass.new
|
316
|
+
instance.valid_for_group_one?
|
317
|
+
end
|
318
|
+
|
319
|
+
expect false do
|
320
|
+
klass = Class.new do
|
321
|
+
include Validatable
|
322
|
+
validates_presence_of :name, :groups => [:group_one, :group_two]
|
323
|
+
attr_accessor :name
|
324
|
+
end
|
325
|
+
instance = klass.new
|
326
|
+
instance.valid_for_group_one?
|
327
|
+
end
|
328
|
+
|
329
|
+
expect true do
|
330
|
+
klass = Class.new do
|
331
|
+
include Validatable
|
332
|
+
validates_presence_of :name, :groups => :group_one
|
333
|
+
validates_presence_of :address
|
334
|
+
attr_accessor :name, :address
|
335
|
+
end
|
336
|
+
instance = klass.new
|
337
|
+
instance.address = 'anything'
|
338
|
+
instance.valid?
|
339
|
+
end
|
340
|
+
|
341
|
+
expect true do
|
342
|
+
klass = Class.new do
|
343
|
+
include Validatable
|
344
|
+
validates_presence_of :name, :groups => :group_one
|
345
|
+
attr_accessor :name
|
346
|
+
end
|
347
|
+
instance = klass.new
|
348
|
+
instance.valid?
|
349
|
+
end
|
350
|
+
|
351
|
+
expect true do
|
352
|
+
klass = Class.new do
|
353
|
+
include Validatable
|
354
|
+
validates_presence_of :name, :times => 1
|
355
|
+
attr_accessor :name
|
356
|
+
end
|
357
|
+
instance = klass.new
|
358
|
+
instance.valid?
|
359
|
+
instance.valid?
|
360
|
+
end
|
361
|
+
|
362
|
+
expect false do
|
363
|
+
klass = Class.new do
|
364
|
+
include Validatable
|
365
|
+
validates_presence_of :name, :times => 1
|
366
|
+
attr_accessor :name
|
367
|
+
end
|
368
|
+
instance1 = klass.new
|
369
|
+
instance1.valid?
|
370
|
+
instance2 = klass.new
|
371
|
+
instance2.valid?
|
372
|
+
end
|
373
|
+
|
374
|
+
expect "name message" do
|
375
|
+
klass = Class.new do
|
376
|
+
include Validatable
|
377
|
+
validates_presence_of :name, :level => 1, :message => "name message"
|
378
|
+
validates_presence_of :address, :level => 2
|
379
|
+
attr_accessor :name, :address
|
380
|
+
end
|
381
|
+
instance = klass.new
|
382
|
+
instance.valid?
|
383
|
+
instance.errors.on(:name)
|
384
|
+
end
|
385
|
+
|
386
|
+
expect nil do
|
387
|
+
klass = Class.new do
|
388
|
+
include Validatable
|
389
|
+
validates_presence_of :name, :level => 1, :message => "name message"
|
390
|
+
validates_presence_of :address, :level => 2
|
391
|
+
attr_accessor :name, :address
|
392
|
+
end
|
393
|
+
instance = klass.new
|
394
|
+
instance.valid?
|
395
|
+
instance.errors.on(:address)
|
396
|
+
end
|
397
|
+
|
398
|
+
expect "Mod::Klass/Validatable::ValidatesPresenceOf/name" do
|
399
|
+
module Mod
|
400
|
+
class Klass
|
401
|
+
include Validatable
|
402
|
+
validates_presence_of :name
|
403
|
+
end
|
404
|
+
end
|
405
|
+
Mod::Klass.validations.first.key
|
406
|
+
end
|
407
|
+
|
408
|
+
expect "/Validatable::ValidatesPresenceOf/custom key" do
|
409
|
+
klass = Class.new do
|
410
|
+
include Validatable
|
411
|
+
validates_presence_of :name, :key => "custom key"
|
412
|
+
end
|
413
|
+
klass.validations.first.key
|
414
|
+
end
|
415
|
+
|
416
|
+
expect "can't be empty" do
|
417
|
+
klass = Class.new do
|
418
|
+
include Validatable
|
419
|
+
validates_presence_of :name, :address
|
420
|
+
attr_accessor :name, :address
|
421
|
+
end
|
422
|
+
instance = klass.new
|
423
|
+
instance.validate_only("presence_of/name")
|
424
|
+
instance.errors.on(:name)
|
425
|
+
end
|
426
|
+
|
427
|
+
expect nil do
|
428
|
+
klass = Class.new do
|
429
|
+
include Validatable
|
430
|
+
validates_presence_of :name, :address
|
431
|
+
attr_accessor :name, :address
|
432
|
+
end
|
433
|
+
instance = klass.new
|
434
|
+
instance.validate_only("presence_of/name")
|
435
|
+
instance.errors.on(:address)
|
436
|
+
end
|
437
|
+
end
|