├── README.md ├── bin └── run-one ├── lib └── mock-talk.rb ├── src ├── 11-passing-first-test │ ├── README.txt │ ├── Rakefile │ ├── app │ │ └── main.rb │ ├── external │ │ ├── blocking-queue.rb │ │ ├── swing.rb │ │ ├── util.rb │ │ └── xmpp.rb │ └── features │ │ ├── basic.feature │ │ ├── step_definitions │ │ └── all_steps.rb │ │ └── support │ │ ├── application-runner.rb │ │ ├── auction-sniper-driver.rb │ │ ├── constants.rb │ │ ├── env.rb │ │ └── fake-auction-server.rb ├── 12-ready-to-bid │ ├── README.txt │ ├── Rakefile │ ├── app │ │ ├── auction-message-translator.rb │ │ ├── main.rb │ │ └── sol-text.rb │ ├── external │ │ ├── blocking-queue.rb │ │ ├── swing.rb │ │ ├── util.rb │ │ └── xmpp.rb │ ├── features │ │ ├── step_definitions │ │ │ ├── auction_side_assertion_steps.rb │ │ │ ├── bidding_steps.rb │ │ │ ├── setup_steps.rb │ │ │ ├── shutdown_steps.rb │ │ │ └── sniper_side_assertion_steps.rb │ │ ├── support │ │ │ ├── application-runner.rb │ │ │ ├── auction-sniper-driver.rb │ │ │ ├── constants.rb │ │ │ ├── env.rb │ │ │ └── fake-auction-server.rb │ │ └── ways-to-lose.feature │ ├── microtests │ │ ├── auction-message-translator-tests.rb │ │ ├── sol-text-tests.rb │ │ └── testutil.rb │ └── sandbox.rb ├── 13-make-a-bid-after-tidying │ ├── README.txt │ ├── Rakefile │ ├── app │ │ ├── auction-message-translator.rb │ │ ├── auction-sniper.rb │ │ ├── main.rb │ │ ├── sniper-state-displayer.rb │ │ ├── sol-text.rb │ │ └── xmpp-auction.rb │ ├── external │ │ ├── blocking-queue.rb │ │ ├── swing.rb │ │ ├── util.rb │ │ └── xmpp.rb │ ├── features │ │ ├── step_definitions │ │ │ ├── auction_side_assertion_steps.rb │ │ │ ├── bidding_steps.rb │ │ │ ├── setup_steps.rb │ │ │ ├── shutdown_steps.rb │ │ │ └── sniper_side_assertion_steps.rb │ │ ├── support │ │ │ ├── application-runner.rb │ │ │ ├── auction-sniper-driver.rb │ │ │ ├── constants.rb │ │ │ ├── env.rb │ │ │ └── fake-auction-server.rb │ │ └── ways-to-lose.feature │ ├── microtests │ │ ├── auction-message-translator-tests.rb │ │ ├── auction-sniper-tests.rb │ │ ├── sol-text-tests.rb │ │ └── testutil.rb │ └── sandbox.rb ├── 13-make-a-bid-before-tidying │ ├── README.txt │ ├── Rakefile │ ├── app │ │ ├── auction-message-translator.rb │ │ ├── auction-sniper.rb │ │ ├── auction.rb │ │ ├── main.rb │ │ └── sol-text.rb │ ├── external │ │ ├── blocking-queue.rb │ │ ├── swing.rb │ │ ├── util.rb │ │ └── xmpp.rb │ ├── features │ │ ├── step_definitions │ │ │ ├── auction_side_assertion_steps.rb │ │ │ ├── bidding_steps.rb │ │ │ ├── setup_steps.rb │ │ │ ├── shutdown_steps.rb │ │ │ └── sniper_side_assertion_steps.rb │ │ ├── support │ │ │ ├── application-runner.rb │ │ │ ├── auction-sniper-driver.rb │ │ │ ├── constants.rb │ │ │ ├── env.rb │ │ │ └── fake-auction-server.rb │ │ └── ways-to-lose.feature │ ├── microtests │ │ ├── auction-message-translator-tests.rb │ │ ├── auction-sniper-tests.rb │ │ ├── sol-text-tests.rb │ │ └── testutil.rb │ └── sandbox.rb ├── 14-sniper-wins │ ├── README.txt │ ├── Rakefile │ ├── app │ │ ├── auction-event.rb │ │ ├── auction-message-translator.rb │ │ ├── auction-sniper.rb │ │ ├── main.rb │ │ ├── sniper-state-displayer.rb │ │ ├── sol-text.rb │ │ └── xmpp-auction.rb │ ├── external │ │ ├── blocking-queue.rb │ │ ├── swing.rb │ │ ├── util.rb │ │ └── xmpp.rb │ ├── features │ │ ├── responding-to-auction.feature │ │ ├── step_definitions │ │ │ ├── auction_side_assertion_steps.rb │ │ │ ├── bidding_steps.rb │ │ │ ├── composite_steps.rb │ │ │ ├── setup_steps.rb │ │ │ ├── shutdown_steps.rb │ │ │ └── sniper_side_assertion_steps.rb │ │ └── support │ │ │ ├── application-runner.rb │ │ │ ├── auction-sniper-driver.rb │ │ │ ├── constants.rb │ │ │ ├── env.rb │ │ │ └── fake-auction-server.rb │ ├── microtests │ │ ├── auction-message-translator-tests.rb │ │ ├── auction-sniper-tests.rb │ │ ├── sol-text-tests.rb │ │ └── testutil.rb │ └── sandbox.rb ├── 15-ui-through-page-158 │ ├── README.txt │ ├── Rakefile │ ├── app │ │ ├── auction-event.rb │ │ ├── auction-message-translator.rb │ │ ├── auction-sniper.rb │ │ ├── main.rb │ │ ├── sniper-state-displayer.rb │ │ ├── snipers-table-model.rb │ │ ├── sol-text.rb │ │ ├── ui.rb │ │ ├── value-object.rb │ │ └── xmpp-auction.rb │ ├── external │ │ ├── blocking-queue.rb │ │ ├── swing.rb │ │ ├── util.rb │ │ └── xmpp.rb │ ├── features │ │ ├── responding-to-auction.feature │ │ ├── step_definitions │ │ │ ├── auction_side_assertion_steps.rb │ │ │ ├── bidding_steps.rb │ │ │ ├── composite_steps.rb │ │ │ ├── setup_steps.rb │ │ │ ├── shutdown_steps.rb │ │ │ └── sniper_side_assertion_steps.rb │ │ └── support │ │ │ ├── application-runner.rb │ │ │ ├── auction-sniper-driver.rb │ │ │ ├── constants.rb │ │ │ ├── env.rb │ │ │ └── fake-auction-server.rb │ ├── microtests │ │ ├── auction-message-translator-tests.rb │ │ ├── auction-sniper-tests.rb │ │ ├── snipers-table-model-tests.rb │ │ ├── sol-text-tests.rb │ │ ├── testutil.rb │ │ └── value-object-tests.rb │ └── sandbox.rb ├── 15-ui │ ├── README.txt │ ├── Rakefile │ ├── app │ │ ├── auction-event.rb │ │ ├── auction-message-translator.rb │ │ ├── auction-sniper.rb │ │ ├── column.rb │ │ ├── main-window.rb │ │ ├── main.rb │ │ ├── requires.rb │ │ ├── sniper-snapshot.rb │ │ ├── sniper-state.rb │ │ ├── snipers-table-model.rb │ │ ├── sol-text.rb │ │ ├── swing-thread-sniper-listener.rb │ │ ├── value-object.rb │ │ └── xmpp-auction.rb │ ├── external │ │ ├── blocking-queue.rb │ │ ├── swing.rb │ │ ├── util.rb │ │ └── xmpp.rb │ ├── features │ │ ├── responding-to-auction.feature │ │ ├── step_definitions │ │ │ ├── auction_side_assertion_steps.rb │ │ │ ├── bidding_steps.rb │ │ │ ├── composite_steps.rb │ │ │ ├── setup_steps.rb │ │ │ ├── shutdown_steps.rb │ │ │ └── sniper_side_assertion_steps.rb │ │ └── support │ │ │ ├── application-runner.rb │ │ │ ├── auction-holder.rb │ │ │ ├── auction-sniper-driver.rb │ │ │ ├── constants.rb │ │ │ ├── env.rb │ │ │ └── fake-auction-server.rb │ ├── microtests │ │ ├── auction-message-translator-tests.rb │ │ ├── auction-sniper-tests.rb │ │ ├── column-tests.rb │ │ ├── sniper-snapshot-tests.rb │ │ ├── snipers-table-model-tests.rb │ │ ├── sol-text-tests.rb │ │ ├── testutil.rb │ │ └── value-object-tests.rb │ └── sandbox.rb ├── 16-multiple │ ├── README.txt │ ├── Rakefile │ ├── app │ │ ├── auction-event.rb │ │ ├── auction-message-translator.rb │ │ ├── auction-sniper.rb │ │ ├── column.rb │ │ ├── main-window.rb │ │ ├── main.rb │ │ ├── requires.rb │ │ ├── sniper-snapshot.rb │ │ ├── sniper-state.rb │ │ ├── snipers-table-model.rb │ │ ├── sol-text.rb │ │ ├── swing-thread-sniper-listener.rb │ │ ├── value-object.rb │ │ └── xmpp-auction.rb │ ├── characterization-tests │ │ ├── README.txt │ │ ├── testutil.rb │ │ └── xmpp-tests.rb │ ├── external │ │ ├── blocking-queue.rb │ │ ├── swing.rb │ │ ├── util.rb │ │ └── xmpp.rb │ ├── features │ │ ├── multiple-auctions.feature │ │ ├── responding-to-auction.feature │ │ ├── step_definitions │ │ │ ├── auction_side_assertion_steps.rb │ │ │ ├── bidding_steps.rb │ │ │ ├── composite_steps.rb │ │ │ ├── pending_steps.rb │ │ │ ├── setup_steps.rb │ │ │ ├── shutdown_steps.rb │ │ │ └── sniper_side_assertion_steps.rb │ │ └── support │ │ │ ├── application-runner.rb │ │ │ ├── auction-holder.rb │ │ │ ├── auction-sniper-driver.rb │ │ │ ├── constants.rb │ │ │ ├── env.rb │ │ │ └── fake-auction-server.rb │ ├── microtests │ │ ├── auction-message-translator-tests.rb │ │ ├── auction-sniper-tests.rb │ │ ├── column-tests.rb │ │ ├── sniper-snapshot-tests.rb │ │ ├── snipers-table-model-tests.rb │ │ ├── sol-text-tests.rb │ │ ├── testutil.rb │ │ └── value-object-tests.rb │ └── sandbox.rb └── 3-introduction │ ├── README │ ├── p26-passing.rb │ └── p26.rb └── third-party └── gem ├── bin └── convert_file_to_shoulda ├── cache ├── Shoulda-1.2.0.gem ├── assert2-0.5.5.gem ├── flexmock-0.8.6.gem ├── xmpp4r-0.5.gem └── xmpp4r-simple-0.8.8.gem ├── doc ├── Shoulda-1.2.0 │ ├── rdoc │ │ ├── classes │ │ │ ├── Thoughtbot.html │ │ │ └── Thoughtbot │ │ │ │ ├── Shoulda.html │ │ │ │ └── Shoulda.src │ │ │ │ ├── M000001.html │ │ │ │ ├── M000002.html │ │ │ │ ├── M000003.html │ │ │ │ ├── M000004.html │ │ │ │ ├── M000005.html │ │ │ │ ├── M000006.html │ │ │ │ └── M000007.html │ │ ├── created.rid │ │ ├── files │ │ │ ├── Manifest_txt.html │ │ │ ├── README_txt.html │ │ │ └── lib │ │ │ │ ├── proc_extensions_rb.html │ │ │ │ └── shoulda_rb.html │ │ ├── fr_class_index.html │ │ ├── fr_file_index.html │ │ ├── fr_method_index.html │ │ ├── index.html │ │ └── rdoc-style.css │ └── ri │ │ ├── Proc │ │ └── cdesc-Proc.yaml │ │ ├── Test │ │ └── cdesc-Test.yaml │ │ ├── Thoughtbot │ │ ├── Shoulda │ │ │ ├── Context │ │ │ │ └── cdesc-Context.yaml │ │ │ ├── add_context-c.yaml │ │ │ ├── cdesc-Shoulda.yaml │ │ │ ├── context-i.yaml │ │ │ ├── contexts-c.yaml │ │ │ ├── current_context-c.yaml │ │ │ ├── remove_context-c.yaml │ │ │ ├── should-i.yaml │ │ │ └── should_eventually-i.yaml │ │ └── cdesc-Thoughtbot.yaml │ │ └── created.rid ├── flexmock-0.8.6 │ ├── rdoc │ │ ├── classes │ │ │ ├── FlexMock.html │ │ │ ├── FlexMock.src │ │ │ │ ├── M000002.html │ │ │ │ ├── M000003.html │ │ │ │ ├── M000004.html │ │ │ │ ├── M000005.html │ │ │ │ ├── M000006.html │ │ │ │ ├── M000008.html │ │ │ │ ├── M000009.html │ │ │ │ ├── M000010.html │ │ │ │ ├── M000011.html │ │ │ │ ├── M000012.html │ │ │ │ ├── M000013.html │ │ │ │ ├── M000014.html │ │ │ │ └── M000015.html │ │ │ ├── FlexMock │ │ │ │ ├── AnyMatcher.html │ │ │ │ ├── AnyMatcher.src │ │ │ │ │ ├── M000110.html │ │ │ │ │ └── M000111.html │ │ │ │ ├── ArgumentTypes.html │ │ │ │ ├── ArgumentTypes.src │ │ │ │ │ ├── M000030.html │ │ │ │ │ ├── M000031.html │ │ │ │ │ ├── M000032.html │ │ │ │ │ ├── M000033.html │ │ │ │ │ └── M000034.html │ │ │ │ ├── AtLeastCountValidator.html │ │ │ │ ├── AtLeastCountValidator.src │ │ │ │ │ ├── M000058.html │ │ │ │ │ └── M000059.html │ │ │ │ ├── AtMostCountValidator.html │ │ │ │ ├── AtMostCountValidator.src │ │ │ │ │ └── M000057.html │ │ │ │ ├── CompositeExpectation.html │ │ │ │ ├── CompositeExpectation.src │ │ │ │ │ ├── M000038.html │ │ │ │ │ ├── M000039.html │ │ │ │ │ ├── M000040.html │ │ │ │ │ ├── M000041.html │ │ │ │ │ ├── M000042.html │ │ │ │ │ ├── M000043.html │ │ │ │ │ └── M000044.html │ │ │ │ ├── CountValidator.html │ │ │ │ ├── CountValidator.src │ │ │ │ │ ├── M000060.html │ │ │ │ │ └── M000061.html │ │ │ │ ├── DefaultFrameworkAdapter.html │ │ │ │ ├── DefaultFrameworkAdapter.src │ │ │ │ │ ├── M000035.html │ │ │ │ │ ├── M000036.html │ │ │ │ │ └── M000037.html │ │ │ │ ├── DefaultFrameworkAdapter │ │ │ │ │ └── AssertionFailedError.html │ │ │ │ ├── DuckMatcher.html │ │ │ │ ├── DuckMatcher.src │ │ │ │ │ ├── M000067.html │ │ │ │ │ ├── M000068.html │ │ │ │ │ └── M000069.html │ │ │ │ ├── EqualMatcher.html │ │ │ │ ├── EqualMatcher.src │ │ │ │ │ ├── M000128.html │ │ │ │ │ ├── M000129.html │ │ │ │ │ └── M000130.html │ │ │ │ ├── ExactCountValidator.html │ │ │ │ ├── ExactCountValidator.src │ │ │ │ │ └── M000056.html │ │ │ │ ├── Expectation.html │ │ │ │ ├── Expectation.src │ │ │ │ │ ├── M000073.html │ │ │ │ │ ├── M000074.html │ │ │ │ │ ├── M000075.html │ │ │ │ │ ├── M000076.html │ │ │ │ │ ├── M000077.html │ │ │ │ │ ├── M000078.html │ │ │ │ │ ├── M000079.html │ │ │ │ │ ├── M000080.html │ │ │ │ │ ├── M000081.html │ │ │ │ │ ├── M000082.html │ │ │ │ │ ├── M000083.html │ │ │ │ │ ├── M000084.html │ │ │ │ │ ├── M000086.html │ │ │ │ │ ├── M000088.html │ │ │ │ │ ├── M000090.html │ │ │ │ │ ├── M000092.html │ │ │ │ │ ├── M000094.html │ │ │ │ │ ├── M000095.html │ │ │ │ │ ├── M000096.html │ │ │ │ │ ├── M000097.html │ │ │ │ │ ├── M000098.html │ │ │ │ │ ├── M000099.html │ │ │ │ │ ├── M000100.html │ │ │ │ │ ├── M000101.html │ │ │ │ │ ├── M000102.html │ │ │ │ │ └── M000103.html │ │ │ │ ├── ExpectationDirector.html │ │ │ │ ├── ExpectationDirector.src │ │ │ │ │ ├── M000125.html │ │ │ │ │ ├── M000126.html │ │ │ │ │ └── M000127.html │ │ │ │ ├── ExpectationRecorder.html │ │ │ │ ├── ExpectationRecorder.src │ │ │ │ │ ├── M000070.html │ │ │ │ │ ├── M000071.html │ │ │ │ │ └── M000072.html │ │ │ │ ├── HashMatcher.html │ │ │ │ ├── HashMatcher.src │ │ │ │ │ ├── M000104.html │ │ │ │ │ ├── M000105.html │ │ │ │ │ └── M000106.html │ │ │ │ ├── MockContainer.html │ │ │ │ ├── MockContainer.src │ │ │ │ │ ├── M000016.html │ │ │ │ │ ├── M000017.html │ │ │ │ │ ├── M000018.html │ │ │ │ │ ├── M000019.html │ │ │ │ │ ├── M000021.html │ │ │ │ │ ├── M000022.html │ │ │ │ │ └── M000023.html │ │ │ │ ├── MockContainerHelper.html │ │ │ │ ├── MockContainerHelper.src │ │ │ │ │ ├── M000064.html │ │ │ │ │ ├── M000065.html │ │ │ │ │ └── M000066.html │ │ │ │ ├── MockError.html │ │ │ │ ├── Ordering.html │ │ │ │ ├── Ordering.src │ │ │ │ │ ├── M000025.html │ │ │ │ │ ├── M000026.html │ │ │ │ │ ├── M000027.html │ │ │ │ │ ├── M000028.html │ │ │ │ │ └── M000029.html │ │ │ │ ├── PartialMockProxy.html │ │ │ │ ├── PartialMockProxy.src │ │ │ │ │ ├── M000045.html │ │ │ │ │ ├── M000046.html │ │ │ │ │ ├── M000047.html │ │ │ │ │ ├── M000048.html │ │ │ │ │ ├── M000049.html │ │ │ │ │ ├── M000050.html │ │ │ │ │ ├── M000051.html │ │ │ │ │ ├── M000052.html │ │ │ │ │ ├── M000053.html │ │ │ │ │ ├── M000054.html │ │ │ │ │ └── M000055.html │ │ │ │ ├── ProcMatcher.html │ │ │ │ ├── ProcMatcher.src │ │ │ │ │ ├── M000107.html │ │ │ │ │ ├── M000108.html │ │ │ │ │ └── M000109.html │ │ │ │ ├── RSpecFrameworkAdapter.html │ │ │ │ ├── RSpecFrameworkAdapter.src │ │ │ │ │ ├── M000118.html │ │ │ │ │ ├── M000119.html │ │ │ │ │ └── M000120.html │ │ │ │ ├── RSpecFrameworkAdapter │ │ │ │ │ └── AssertionFailedError.html │ │ │ │ ├── Recorder.html │ │ │ │ ├── Recorder.src │ │ │ │ │ ├── M000121.html │ │ │ │ │ ├── M000122.html │ │ │ │ │ ├── M000123.html │ │ │ │ │ └── M000124.html │ │ │ │ ├── TestCase.html │ │ │ │ ├── TestCase.src │ │ │ │ │ └── M000024.html │ │ │ │ ├── TestUnitFrameworkAdapter.html │ │ │ │ ├── TestUnitFrameworkAdapter.src │ │ │ │ │ └── M000117.html │ │ │ │ ├── Undefined.html │ │ │ │ ├── Undefined.src │ │ │ │ │ ├── M000112.html │ │ │ │ │ ├── M000113.html │ │ │ │ │ ├── M000114.html │ │ │ │ │ ├── M000115.html │ │ │ │ │ └── M000116.html │ │ │ │ ├── UsageError.html │ │ │ │ ├── UseContainer.html │ │ │ │ └── UseContainer.src │ │ │ │ │ ├── M000062.html │ │ │ │ │ └── M000063.html │ │ │ ├── Module.html │ │ │ ├── Module.src │ │ │ │ └── M000001.html │ │ │ ├── Test.html │ │ │ └── Test │ │ │ │ ├── Unit.html │ │ │ │ └── Unit │ │ │ │ ├── TestCase.html │ │ │ │ └── TestCase.src │ │ │ │ └── M000131.html │ │ ├── created.rid │ │ ├── files │ │ │ ├── CHANGES.html │ │ │ ├── README.html │ │ │ ├── doc │ │ │ │ ├── GoogleExample_rdoc.html │ │ │ │ └── releases │ │ │ │ │ ├── flexmock-0_4_0_rdoc.html │ │ │ │ │ ├── flexmock-0_4_1_rdoc.html │ │ │ │ │ ├── flexmock-0_4_2_rdoc.html │ │ │ │ │ ├── flexmock-0_4_3_rdoc.html │ │ │ │ │ ├── flexmock-0_5_0_rdoc.html │ │ │ │ │ ├── flexmock-0_5_1_rdoc.html │ │ │ │ │ ├── flexmock-0_6_0_rdoc.html │ │ │ │ │ ├── flexmock-0_6_1_rdoc.html │ │ │ │ │ ├── flexmock-0_6_2_rdoc.html │ │ │ │ │ ├── flexmock-0_6_3_rdoc.html │ │ │ │ │ ├── flexmock-0_6_4_rdoc.html │ │ │ │ │ ├── flexmock-0_7_0_rdoc.html │ │ │ │ │ ├── flexmock-0_7_1_rdoc.html │ │ │ │ │ ├── flexmock-0_8_0_rdoc.html │ │ │ │ │ ├── flexmock-0_8_2_rdoc.html │ │ │ │ │ ├── flexmock-0_8_3_rdoc.html │ │ │ │ │ ├── flexmock-0_8_4_rdoc.html │ │ │ │ │ └── flexmock-0_8_5_rdoc.html │ │ │ └── lib │ │ │ │ ├── flexmock │ │ │ │ ├── argument_matchers_rb.html │ │ │ │ ├── argument_types_rb.html │ │ │ │ ├── base_rb.html │ │ │ │ ├── composite_rb.html │ │ │ │ ├── core_class_methods_rb.html │ │ │ │ ├── core_rb.html │ │ │ │ ├── default_framework_adapter_rb.html │ │ │ │ ├── deprecated_methods_rb.html │ │ │ │ ├── errors_rb.html │ │ │ │ ├── expectation_director_rb.html │ │ │ │ ├── expectation_rb.html │ │ │ │ ├── mock_container_rb.html │ │ │ │ ├── noop_rb.html │ │ │ │ ├── ordering_rb.html │ │ │ │ ├── partial_mock_rb.html │ │ │ │ ├── rails │ │ │ │ │ └── view_mocking_rb.html │ │ │ │ ├── rails_rb.html │ │ │ │ ├── recorder_rb.html │ │ │ │ ├── rspec_rb.html │ │ │ │ ├── test_unit_integration_rb.html │ │ │ │ ├── test_unit_rb.html │ │ │ │ ├── undefined_rb.html │ │ │ │ └── validators_rb.html │ │ │ │ └── flexmock_rb.html │ │ ├── fr_class_index.html │ │ ├── fr_file_index.html │ │ ├── fr_method_index.html │ │ ├── index.html │ │ └── rdoc-style.css │ └── ri │ │ ├── FlexMock │ │ ├── AnyMatcher │ │ │ ├── %3d%3d%3d-i.yaml │ │ │ ├── cdesc-AnyMatcher.yaml │ │ │ └── inspect-i.yaml │ │ ├── ArgumentTypes │ │ │ ├── any-i.yaml │ │ │ ├── cdesc-ArgumentTypes.yaml │ │ │ ├── ducktype-i.yaml │ │ │ ├── eq-i.yaml │ │ │ ├── hsh-i.yaml │ │ │ └── on-i.yaml │ │ ├── AtLeastCountValidator │ │ │ ├── cdesc-AtLeastCountValidator.yaml │ │ │ ├── eligible%3f-i.yaml │ │ │ └── validate-i.yaml │ │ ├── AtMostCountValidator │ │ │ ├── cdesc-AtMostCountValidator.yaml │ │ │ └── validate-i.yaml │ │ ├── CompositeExpectation │ │ │ ├── add-i.yaml │ │ │ ├── cdesc-CompositeExpectation.yaml │ │ │ ├── method_missing-i.yaml │ │ │ ├── mock-i.yaml │ │ │ ├── new-c.yaml │ │ │ ├── order_number-i.yaml │ │ │ ├── should_receive-i.yaml │ │ │ └── to_s-i.yaml │ │ ├── CountValidator │ │ │ ├── cdesc-CountValidator.yaml │ │ │ ├── eligible%3f-i.yaml │ │ │ └── new-c.yaml │ │ ├── DefaultFrameworkAdapter │ │ │ ├── AssertionFailedError │ │ │ │ └── cdesc-AssertionFailedError.yaml │ │ │ ├── assert_block-i.yaml │ │ │ ├── assert_equal-i.yaml │ │ │ ├── assertion_failed_error-i.yaml │ │ │ └── cdesc-DefaultFrameworkAdapter.yaml │ │ ├── DuckMatcher │ │ │ ├── %3d%3d%3d-i.yaml │ │ │ ├── cdesc-DuckMatcher.yaml │ │ │ ├── inspect-i.yaml │ │ │ └── new-c.yaml │ │ ├── EqualMatcher │ │ │ ├── %3d%3d%3d-i.yaml │ │ │ ├── cdesc-EqualMatcher.yaml │ │ │ ├── inspect-i.yaml │ │ │ └── new-c.yaml │ │ ├── ExactCountValidator │ │ │ ├── cdesc-ExactCountValidator.yaml │ │ │ └── validate-i.yaml │ │ ├── Expectation │ │ │ ├── and_raise-i.yaml │ │ │ ├── and_return-i.yaml │ │ │ ├── and_return_undefined-i.yaml │ │ │ ├── and_throw-i.yaml │ │ │ ├── and_yield-i.yaml │ │ │ ├── at_least-i.yaml │ │ │ ├── at_most-i.yaml │ │ │ ├── by_default-i.yaml │ │ │ ├── call_count_constrained%3f-i.yaml │ │ │ ├── cdesc-Expectation.yaml │ │ │ ├── eligible%3f-i.yaml │ │ │ ├── flexmock_verify-i.yaml │ │ │ ├── globally-i.yaml │ │ │ ├── match_arg-i.yaml │ │ │ ├── match_args-i.yaml │ │ │ ├── never-i.yaml │ │ │ ├── new-c.yaml │ │ │ ├── once-i.yaml │ │ │ ├── ordered-i.yaml │ │ │ ├── raises-i.yaml │ │ │ ├── returns-i.yaml │ │ │ ├── returns_undefined-i.yaml │ │ │ ├── throws-i.yaml │ │ │ ├── times-i.yaml │ │ │ ├── to_s-i.yaml │ │ │ ├── twice-i.yaml │ │ │ ├── verify_call-i.yaml │ │ │ ├── with-i.yaml │ │ │ ├── with_any_args-i.yaml │ │ │ ├── with_no_args-i.yaml │ │ │ ├── yields-i.yaml │ │ │ └── zero_or_more_times-i.yaml │ │ ├── ExpectationDirector │ │ │ ├── %3c%3c-i.yaml │ │ │ ├── call-i.yaml │ │ │ ├── cdesc-ExpectationDirector.yaml │ │ │ └── new-c.yaml │ │ ├── ExpectationRecorder │ │ │ ├── apply-i.yaml │ │ │ ├── cdesc-ExpectationRecorder.yaml │ │ │ ├── method_missing-i.yaml │ │ │ └── new-c.yaml │ │ ├── HashMatcher │ │ │ ├── %3d%3d%3d-i.yaml │ │ │ ├── cdesc-HashMatcher.yaml │ │ │ ├── inspect-i.yaml │ │ │ └── new-c.yaml │ │ ├── MockContainer │ │ │ ├── cdesc-MockContainer.yaml │ │ │ ├── flexmock-i.yaml │ │ │ ├── flexmock_close-i.yaml │ │ │ ├── flexmock_remember-i.yaml │ │ │ ├── flexmock_teardown-i.yaml │ │ │ ├── flexmock_verify-i.yaml │ │ │ ├── flexstub-i.yaml │ │ │ ├── rails_version-i.yaml │ │ │ └── should_render_view-i.yaml │ │ ├── MockContainerHelper │ │ │ ├── add_model_methods-i.yaml │ │ │ ├── cdesc-MockContainerHelper.yaml │ │ │ ├── make_partial_proxy-i.yaml │ │ │ └── next_id-i.yaml │ │ ├── MockError │ │ │ └── cdesc-MockError.yaml │ │ ├── Ordering │ │ │ ├── cdesc-Ordering.yaml │ │ │ ├── flexmock_allocate_order-i.yaml │ │ │ ├── flexmock_current_order%3d-i.yaml │ │ │ ├── flexmock_current_order-i.yaml │ │ │ ├── flexmock_groups-i.yaml │ │ │ └── flexmock_validate_order-i.yaml │ │ ├── PartialMockProxy │ │ │ ├── add_mock_method-i.yaml │ │ │ ├── any_instance-i.yaml │ │ │ ├── cdesc-PartialMockProxy.yaml │ │ │ ├── flexmock_container%3d-i.yaml │ │ │ ├── flexmock_container-i.yaml │ │ │ ├── flexmock_expectations_for-i.yaml │ │ │ ├── flexmock_get-i.yaml │ │ │ ├── flexmock_teardown-i.yaml │ │ │ ├── flexmock_verify-i.yaml │ │ │ ├── new-c.yaml │ │ │ ├── new_instances-i.yaml │ │ │ └── should_receive-i.yaml │ │ ├── ProcMatcher │ │ │ ├── %3d%3d%3d-i.yaml │ │ │ ├── cdesc-ProcMatcher.yaml │ │ │ ├── inspect-i.yaml │ │ │ └── new-c.yaml │ │ ├── RSpecFrameworkAdapter │ │ │ ├── AssertionFailedError │ │ │ │ └── cdesc-AssertionFailedError.yaml │ │ │ ├── assert_block-i.yaml │ │ │ ├── assert_equal-i.yaml │ │ │ ├── assertion_failed_error-i.yaml │ │ │ └── cdesc-RSpecFrameworkAdapter.yaml │ │ ├── Recorder │ │ │ ├── cdesc-Recorder.yaml │ │ │ ├── method_missing-i.yaml │ │ │ ├── new-c.yaml │ │ │ ├── should_be_strict-i.yaml │ │ │ └── strict%3f-i.yaml │ │ ├── TestCase │ │ │ ├── cdesc-TestCase.yaml │ │ │ └── teardown-i.yaml │ │ ├── TestUnitFrameworkAdapter │ │ │ ├── assertion_failed_error-i.yaml │ │ │ └── cdesc-TestUnitFrameworkAdapter.yaml │ │ ├── Undefined │ │ │ ├── cdesc-Undefined.yaml │ │ │ ├── clone-i.yaml │ │ │ ├── coerce-i.yaml │ │ │ ├── inspect-i.yaml │ │ │ ├── method_missing-i.yaml │ │ │ └── to_s-i.yaml │ │ ├── UsageError │ │ │ └── cdesc-UsageError.yaml │ │ ├── UseContainer │ │ │ ├── cdesc-UseContainer.yaml │ │ │ ├── new-c.yaml │ │ │ └── passed%3f-i.yaml │ │ ├── by_default-i.yaml │ │ ├── cdesc-FlexMock.yaml │ │ ├── flexmock_teardown-i.yaml │ │ ├── flexmock_verify-i.yaml │ │ ├── inspect-i.yaml │ │ ├── method-i.yaml │ │ ├── method_missing-i.yaml │ │ ├── mock_ignore_missing-i.yaml │ │ ├── new-c.yaml │ │ ├── respond_to%3f-i.yaml │ │ ├── should_expect-i.yaml │ │ ├── should_ignore_missing-i.yaml │ │ ├── should_receive-i.yaml │ │ ├── undefined-c.yaml │ │ └── use-c.yaml │ │ ├── Module │ │ ├── cdesc-Module.yaml │ │ └── flexmock_deprecate-i.yaml │ │ ├── Test │ │ ├── Unit │ │ │ ├── TestCase │ │ │ │ ├── cdesc-TestCase.yaml │ │ │ │ └── teardown-i.yaml │ │ │ └── cdesc-Unit.yaml │ │ └── cdesc-Test.yaml │ │ └── created.rid ├── xmpp4r-0.5 │ ├── rdoc │ │ ├── classes │ │ │ ├── Base64.html │ │ │ ├── Jabber.html │ │ │ ├── Jabber │ │ │ │ ├── ArgumentError.html │ │ │ │ ├── Bytestreams.html │ │ │ │ ├── Bytestreams │ │ │ │ │ ├── IBB.html │ │ │ │ │ ├── IBBInitiator.html │ │ │ │ │ ├── IBBQueueItem.html │ │ │ │ │ ├── IBBTarget.html │ │ │ │ │ ├── IqQueryBytestreams.html │ │ │ │ │ ├── IqSi.html │ │ │ │ │ ├── IqSiFile.html │ │ │ │ │ ├── IqSiFileRange.html │ │ │ │ │ ├── SOCKS5Bytestreams.html │ │ │ │ │ ├── SOCKS5BytestreamsInitiator.html │ │ │ │ │ ├── SOCKS5BytestreamsPeer.html │ │ │ │ │ ├── SOCKS5BytestreamsServer.html │ │ │ │ │ ├── SOCKS5BytestreamsServerStreamHost.html │ │ │ │ │ ├── SOCKS5BytestreamsTarget.html │ │ │ │ │ ├── SOCKS5Socket.html │ │ │ │ │ ├── StreamHost.html │ │ │ │ │ └── StreamHostUsed.html │ │ │ │ ├── Callback.html │ │ │ │ ├── CallbackList.html │ │ │ │ ├── Caps.html │ │ │ │ ├── Caps │ │ │ │ │ ├── C.html │ │ │ │ │ └── Helper.html │ │ │ │ ├── Client.html │ │ │ │ ├── ClientAuthenticationFailure.html │ │ │ │ ├── Command.html │ │ │ │ ├── Command │ │ │ │ │ ├── IqCommand.html │ │ │ │ │ └── Responder.html │ │ │ │ ├── Component.html │ │ │ │ ├── ComponentAuthenticationFailure.html │ │ │ │ ├── Connection.html │ │ │ │ ├── Dataforms.html │ │ │ │ ├── Dataforms │ │ │ │ │ ├── XData.html │ │ │ │ │ ├── XDataField.html │ │ │ │ │ ├── XDataInstructions.html │ │ │ │ │ ├── XDataReported.html │ │ │ │ │ └── XDataTitle.html │ │ │ │ ├── Delay.html │ │ │ │ ├── Delay │ │ │ │ │ └── XDelay.html │ │ │ │ ├── Discovery.html │ │ │ │ ├── Discovery │ │ │ │ │ ├── Feature.html │ │ │ │ │ ├── Helper.html │ │ │ │ │ ├── Identity.html │ │ │ │ │ ├── IqQueryDiscoInfo.html │ │ │ │ │ ├── IqQueryDiscoItems.html │ │ │ │ │ ├── Item.html │ │ │ │ │ └── Responder.html │ │ │ │ ├── ErrorResponse.html │ │ │ │ ├── FeatureNegotiation.html │ │ │ │ ├── FeatureNegotiation │ │ │ │ │ └── IqFeature.html │ │ │ │ ├── FileTransfer.html │ │ │ │ ├── FileTransfer │ │ │ │ │ ├── FileSource.html │ │ │ │ │ ├── Helper.html │ │ │ │ │ └── TransferSource.html │ │ │ │ ├── Framework.html │ │ │ │ ├── Framework │ │ │ │ │ ├── Base.html │ │ │ │ │ └── Bot.html │ │ │ │ ├── HTTPBinding.html │ │ │ │ ├── HTTPBinding │ │ │ │ │ └── Client.html │ │ │ │ ├── IdGenerator.html │ │ │ │ ├── InvalidChatState.html │ │ │ │ ├── Iq.html │ │ │ │ ├── IqQuery.html │ │ │ │ ├── JID.html │ │ │ │ ├── JabberError.html │ │ │ │ ├── LastActivity.html │ │ │ │ ├── LastActivity │ │ │ │ │ ├── Helper.html │ │ │ │ │ └── IqQueryLastActivity.html │ │ │ │ ├── MUC.html │ │ │ │ ├── MUC │ │ │ │ │ ├── IqQueryMUCAdmin.html │ │ │ │ │ ├── IqQueryMUCAdminItem.html │ │ │ │ │ ├── IqQueryMUCOwner.html │ │ │ │ │ ├── MUCBrowser.html │ │ │ │ │ ├── MUCClient.html │ │ │ │ │ ├── SimpleMUCClient.html │ │ │ │ │ ├── UserItem.html │ │ │ │ │ ├── XMUC.html │ │ │ │ │ ├── XMUCUser.html │ │ │ │ │ ├── XMUCUserInvite.html │ │ │ │ │ └── XMUCUserItem.html │ │ │ │ ├── Message.html │ │ │ │ ├── NoNameXmlnsRegistered.html │ │ │ │ ├── Presence.html │ │ │ │ ├── PubSub.html │ │ │ │ ├── PubSub │ │ │ │ │ ├── Configuration.html │ │ │ │ │ ├── Event.html │ │ │ │ │ ├── EventItem.html │ │ │ │ │ ├── EventItems.html │ │ │ │ │ ├── IqPubSub.html │ │ │ │ │ ├── IqPubSubOwner.html │ │ │ │ │ ├── Item.html │ │ │ │ │ ├── Items.html │ │ │ │ │ ├── NodeBrowser.html │ │ │ │ │ ├── NodeConfig.html │ │ │ │ │ ├── NodeHelper.html │ │ │ │ │ ├── OAuthPubSubStreamHelper.html │ │ │ │ │ ├── OAuthServiceHelper.html │ │ │ │ │ ├── OwnerNodeConfig.html │ │ │ │ │ ├── Publish.html │ │ │ │ │ ├── Retract.html │ │ │ │ │ ├── ServiceHelper.html │ │ │ │ │ ├── Subscription.html │ │ │ │ │ ├── SubscriptionConfig.html │ │ │ │ │ └── Unsubscribe.html │ │ │ │ ├── RPC.html │ │ │ │ ├── RPC │ │ │ │ │ ├── Client.html │ │ │ │ │ ├── IqQueryRPC.html │ │ │ │ │ └── Server.html │ │ │ │ ├── Reliable.html │ │ │ │ ├── Reliable │ │ │ │ │ ├── Connection.html │ │ │ │ │ └── Listener.html │ │ │ │ ├── Roster.html │ │ │ │ ├── Roster │ │ │ │ │ ├── Helper.html │ │ │ │ │ ├── Helper │ │ │ │ │ │ └── RosterItem.html │ │ │ │ │ ├── IqQueryRoster.html │ │ │ │ │ ├── RosterItem.html │ │ │ │ │ ├── RosterX.html │ │ │ │ │ ├── RosterXItem.html │ │ │ │ │ ├── XRoster.html │ │ │ │ │ └── XRosterItem.html │ │ │ │ ├── SASL.html │ │ │ │ ├── SASL │ │ │ │ │ ├── Anonymous.html │ │ │ │ │ ├── Base.html │ │ │ │ │ ├── DigestMD5.html │ │ │ │ │ └── Plain.html │ │ │ │ ├── SOCKS5Error.html │ │ │ │ ├── Semaphore.html │ │ │ │ ├── ServerDisconnected.html │ │ │ │ ├── Stream.html │ │ │ │ ├── Stream │ │ │ │ │ └── ThreadBlock.html │ │ │ │ ├── StreamParser.html │ │ │ │ ├── Test.html │ │ │ │ ├── Test │ │ │ │ │ └── ListenerMocker.html │ │ │ │ ├── UserLocation.html │ │ │ │ ├── UserLocation │ │ │ │ │ ├── Helper.html │ │ │ │ │ └── Location.html │ │ │ │ ├── UserTune.html │ │ │ │ ├── UserTune │ │ │ │ │ ├── Helper.html │ │ │ │ │ └── Tune.html │ │ │ │ ├── Vcard.html │ │ │ │ ├── Vcard │ │ │ │ │ ├── Helper.html │ │ │ │ │ └── IqVcard.html │ │ │ │ ├── Version.html │ │ │ │ ├── Version │ │ │ │ │ ├── IqQueryVersion.html │ │ │ │ │ ├── Responder.html │ │ │ │ │ └── SimpleResponder.html │ │ │ │ ├── X.html │ │ │ │ ├── XHTML.html │ │ │ │ ├── XHTML │ │ │ │ │ ├── Body.html │ │ │ │ │ └── HTML.html │ │ │ │ ├── XMPPElement.html │ │ │ │ ├── XMPPStanza.html │ │ │ │ └── XParent.html │ │ │ ├── REXML.html │ │ │ ├── REXML │ │ │ │ ├── Element.html │ │ │ │ └── IOSource.html │ │ │ ├── XMLRPC.html │ │ │ └── XMLRPC │ │ │ │ └── Create.html │ │ ├── created.rid │ │ ├── files │ │ │ ├── CHANGELOG.html │ │ │ ├── COPYING.html │ │ │ ├── LICENSE.html │ │ │ ├── README_rdoc.html │ │ │ ├── README_ruby19_txt.html │ │ │ └── lib │ │ │ │ ├── xmpp4r │ │ │ │ ├── base64_rb.html │ │ │ │ ├── bytestreams │ │ │ │ │ ├── helper │ │ │ │ │ │ ├── filetransfer_rb.html │ │ │ │ │ │ ├── ibb │ │ │ │ │ │ │ ├── base_rb.html │ │ │ │ │ │ │ ├── initiator_rb.html │ │ │ │ │ │ │ └── target_rb.html │ │ │ │ │ │ └── socks5bytestreams │ │ │ │ │ │ │ ├── base_rb.html │ │ │ │ │ │ │ ├── initiator_rb.html │ │ │ │ │ │ │ ├── server_rb.html │ │ │ │ │ │ │ ├── socks5_rb.html │ │ │ │ │ │ │ └── target_rb.html │ │ │ │ │ └── iq │ │ │ │ │ │ ├── bytestreams_rb.html │ │ │ │ │ │ └── si_rb.html │ │ │ │ ├── bytestreams_rb.html │ │ │ │ ├── callbacks_rb.html │ │ │ │ ├── caps │ │ │ │ │ ├── c_rb.html │ │ │ │ │ └── helper │ │ │ │ │ │ ├── generator_rb.html │ │ │ │ │ │ └── helper_rb.html │ │ │ │ ├── caps_rb.html │ │ │ │ ├── client_rb.html │ │ │ │ ├── command │ │ │ │ │ ├── helper │ │ │ │ │ │ └── responder_rb.html │ │ │ │ │ └── iq │ │ │ │ │ │ └── command_rb.html │ │ │ │ ├── component_rb.html │ │ │ │ ├── connection_rb.html │ │ │ │ ├── dataforms │ │ │ │ │ └── x │ │ │ │ │ │ └── data_rb.html │ │ │ │ ├── dataforms_rb.html │ │ │ │ ├── debuglog_rb.html │ │ │ │ ├── delay │ │ │ │ │ └── x │ │ │ │ │ │ └── delay_rb.html │ │ │ │ ├── delay_rb.html │ │ │ │ ├── discovery │ │ │ │ │ ├── helper │ │ │ │ │ │ ├── helper_rb.html │ │ │ │ │ │ └── responder_rb.html │ │ │ │ │ └── iq │ │ │ │ │ │ ├── discoinfo_rb.html │ │ │ │ │ │ └── discoitems_rb.html │ │ │ │ ├── discovery_rb.html │ │ │ │ ├── errors_rb.html │ │ │ │ ├── feature_negotiation │ │ │ │ │ └── iq │ │ │ │ │ │ └── feature_rb.html │ │ │ │ ├── feature_negotiation_rb.html │ │ │ │ ├── framework │ │ │ │ │ ├── base_rb.html │ │ │ │ │ └── bot_rb.html │ │ │ │ ├── httpbinding │ │ │ │ │ └── client_rb.html │ │ │ │ ├── httpbinding_rb.html │ │ │ │ ├── idgenerator_rb.html │ │ │ │ ├── iq_rb.html │ │ │ │ ├── jid_rb.html │ │ │ │ ├── last │ │ │ │ │ ├── helper │ │ │ │ │ │ └── helper_rb.html │ │ │ │ │ └── iq │ │ │ │ │ │ └── last_rb.html │ │ │ │ ├── last_rb.html │ │ │ │ ├── location │ │ │ │ │ ├── helper │ │ │ │ │ │ └── helper_rb.html │ │ │ │ │ └── location_rb.html │ │ │ │ ├── location_rb.html │ │ │ │ ├── message_rb.html │ │ │ │ ├── muc │ │ │ │ │ ├── helper │ │ │ │ │ │ ├── mucbrowser_rb.html │ │ │ │ │ │ ├── mucclient_rb.html │ │ │ │ │ │ └── simplemucclient_rb.html │ │ │ │ │ ├── iq │ │ │ │ │ │ ├── mucadmin_rb.html │ │ │ │ │ │ ├── mucadminitem_rb.html │ │ │ │ │ │ └── mucowner_rb.html │ │ │ │ │ ├── item_rb.html │ │ │ │ │ └── x │ │ │ │ │ │ ├── muc_rb.html │ │ │ │ │ │ ├── mucuserinvite_rb.html │ │ │ │ │ │ └── mucuseritem_rb.html │ │ │ │ ├── muc_rb.html │ │ │ │ ├── presence_rb.html │ │ │ │ ├── pubsub │ │ │ │ │ ├── children │ │ │ │ │ │ ├── configuration_rb.html │ │ │ │ │ │ ├── event_rb.html │ │ │ │ │ │ ├── item_rb.html │ │ │ │ │ │ ├── items_rb.html │ │ │ │ │ │ ├── node_config_rb.html │ │ │ │ │ │ ├── publish_rb.html │ │ │ │ │ │ ├── retract_rb.html │ │ │ │ │ │ ├── subscription_config_rb.html │ │ │ │ │ │ ├── subscription_rb.html │ │ │ │ │ │ └── unsubscribe_rb.html │ │ │ │ │ ├── helper │ │ │ │ │ │ ├── nodebrowser_rb.html │ │ │ │ │ │ ├── nodehelper_rb.html │ │ │ │ │ │ ├── oauth_service_helper_rb.html │ │ │ │ │ │ └── servicehelper_rb.html │ │ │ │ │ └── iq │ │ │ │ │ │ └── pubsub_rb.html │ │ │ │ ├── pubsub_rb.html │ │ │ │ ├── query_rb.html │ │ │ │ ├── reliable_rb.html │ │ │ │ ├── rexmladdons_rb.html │ │ │ │ ├── roster │ │ │ │ │ ├── helper │ │ │ │ │ │ └── roster_rb.html │ │ │ │ │ ├── iq │ │ │ │ │ │ └── roster_rb.html │ │ │ │ │ └── x │ │ │ │ │ │ └── roster_rb.html │ │ │ │ ├── roster_rb.html │ │ │ │ ├── rpc │ │ │ │ │ ├── helper │ │ │ │ │ │ ├── client_rb.html │ │ │ │ │ │ ├── server_rb.html │ │ │ │ │ │ └── xmlrpcaddons_rb.html │ │ │ │ │ └── iq │ │ │ │ │ │ └── rpc_rb.html │ │ │ │ ├── rpc_rb.html │ │ │ │ ├── sasl_rb.html │ │ │ │ ├── semaphore_rb.html │ │ │ │ ├── stream_rb.html │ │ │ │ ├── streamparser_rb.html │ │ │ │ ├── test │ │ │ │ │ └── listener_mocker_rb.html │ │ │ │ ├── tune │ │ │ │ │ ├── helper │ │ │ │ │ │ └── helper_rb.html │ │ │ │ │ └── tune_rb.html │ │ │ │ ├── tune_rb.html │ │ │ │ ├── vcard │ │ │ │ │ ├── helper │ │ │ │ │ │ └── vcard_rb.html │ │ │ │ │ └── iq │ │ │ │ │ │ └── vcard_rb.html │ │ │ │ ├── vcard_rb.html │ │ │ │ ├── version │ │ │ │ │ ├── helper │ │ │ │ │ │ ├── responder_rb.html │ │ │ │ │ │ └── simpleresponder_rb.html │ │ │ │ │ └── iq │ │ │ │ │ │ └── version_rb.html │ │ │ │ ├── version_rb.html │ │ │ │ ├── x_rb.html │ │ │ │ ├── xhtml │ │ │ │ │ └── html_rb.html │ │ │ │ ├── xhtml_rb.html │ │ │ │ ├── xmpp4r_rb.html │ │ │ │ ├── xmppelement_rb.html │ │ │ │ └── xmppstanza_rb.html │ │ │ │ └── xmpp4r_rb.html │ │ ├── fr_class_index.html │ │ ├── fr_file_index.html │ │ ├── fr_method_index.html │ │ ├── index.html │ │ └── rdoc-style.css │ └── ri │ │ ├── Base64 │ │ ├── cdesc-Base64.yaml │ │ ├── decode64-c.yaml │ │ └── encode64-c.yaml │ │ ├── Jabber │ │ ├── ArgumentError │ │ │ └── cdesc-ArgumentError.yaml │ │ ├── Bytestreams │ │ │ ├── IBB │ │ │ │ ├── active%3f-i.yaml │ │ │ │ ├── cdesc-IBB.yaml │ │ │ │ ├── close-i.yaml │ │ │ │ ├── flush-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── read-i.yaml │ │ │ │ └── write-i.yaml │ │ │ ├── IBBInitiator │ │ │ │ ├── cdesc-IBBInitiator.yaml │ │ │ │ └── open-i.yaml │ │ │ ├── IBBQueueItem │ │ │ │ ├── cdesc-IBBQueueItem.yaml │ │ │ │ ├── data-i.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── IBBTarget │ │ │ │ ├── accept-i.yaml │ │ │ │ ├── accept_wait-i.yaml │ │ │ │ ├── cdesc-IBBTarget.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── IqQueryBytestreams │ │ │ │ ├── activate%3d-i.yaml │ │ │ │ ├── activate-i.yaml │ │ │ │ ├── cdesc-IqQueryBytestreams.yaml │ │ │ │ ├── mode%3d-i.yaml │ │ │ │ ├── mode-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── sid%3d-i.yaml │ │ │ │ ├── sid-i.yaml │ │ │ │ └── streamhost_used-i.yaml │ │ │ ├── IqSi │ │ │ │ ├── cdesc-IqSi.yaml │ │ │ │ ├── feature-i.yaml │ │ │ │ ├── file-i.yaml │ │ │ │ ├── id%3d-i.yaml │ │ │ │ ├── id-i.yaml │ │ │ │ ├── mime_type%3d-i.yaml │ │ │ │ ├── mime_type-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── profile%3d-i.yaml │ │ │ │ └── profile-i.yaml │ │ │ ├── IqSiFile │ │ │ │ ├── cdesc-IqSiFile.yaml │ │ │ │ ├── date%3d-i.yaml │ │ │ │ ├── date-i.yaml │ │ │ │ ├── description%3d-i.yaml │ │ │ │ ├── description-i.yaml │ │ │ │ ├── fname%3d-i.yaml │ │ │ │ ├── fname-i.yaml │ │ │ │ ├── hash%3d-i.yaml │ │ │ │ ├── hash-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── range-i.yaml │ │ │ │ ├── size%3d-i.yaml │ │ │ │ └── size-i.yaml │ │ │ ├── IqSiFileRange │ │ │ │ ├── cdesc-IqSiFileRange.yaml │ │ │ │ ├── length%3d-i.yaml │ │ │ │ ├── length-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── offset%3d-i.yaml │ │ │ │ └── offset-i.yaml │ │ │ ├── SOCKS5Bytestreams │ │ │ │ ├── add_streamhost_callback-i.yaml │ │ │ │ ├── cdesc-SOCKS5Bytestreams.yaml │ │ │ │ ├── close-i.yaml │ │ │ │ ├── flush-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── query_streamhost-c.yaml │ │ │ │ ├── read-i.yaml │ │ │ │ └── write-i.yaml │ │ │ ├── SOCKS5BytestreamsInitiator │ │ │ │ ├── add_streamhost-i.yaml │ │ │ │ ├── cdesc-SOCKS5BytestreamsInitiator.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ └── open-i.yaml │ │ │ ├── SOCKS5BytestreamsPeer │ │ │ │ ├── cdesc-SOCKS5BytestreamsPeer.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ └── start-i.yaml │ │ │ ├── SOCKS5BytestreamsServer │ │ │ │ ├── add_address-i.yaml │ │ │ │ ├── cdesc-SOCKS5BytestreamsServer.yaml │ │ │ │ ├── each_streamhost-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ └── peer_sock-i.yaml │ │ │ ├── SOCKS5BytestreamsServerStreamHost │ │ │ │ ├── cdesc-SOCKS5BytestreamsServerStreamHost.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── SOCKS5BytestreamsTarget │ │ │ │ ├── accept-i.yaml │ │ │ │ ├── accept_wait-i.yaml │ │ │ │ ├── cdesc-SOCKS5BytestreamsTarget.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── SOCKS5Socket │ │ │ │ ├── auth-i.yaml │ │ │ │ ├── cdesc-SOCKS5Socket.yaml │ │ │ │ ├── connect_domain-i.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── StreamHost │ │ │ │ ├── cdesc-StreamHost.yaml │ │ │ │ ├── host%3d-i.yaml │ │ │ │ ├── host-i.yaml │ │ │ │ ├── jid%3d-i.yaml │ │ │ │ ├── jid-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── port%3d-i.yaml │ │ │ │ ├── port-i.yaml │ │ │ │ ├── zeroconf%3d-i.yaml │ │ │ │ └── zeroconf-i.yaml │ │ │ ├── StreamHostUsed │ │ │ │ ├── cdesc-StreamHostUsed.yaml │ │ │ │ ├── jid%3d-i.yaml │ │ │ │ ├── jid-i.yaml │ │ │ │ └── new-c.yaml │ │ │ └── cdesc-Bytestreams.yaml │ │ ├── Callback │ │ │ ├── cdesc-Callback.yaml │ │ │ ├── new-c.yaml │ │ │ └── to_s-i.yaml │ │ ├── CallbackList │ │ │ ├── add-i.yaml │ │ │ ├── cdesc-CallbackList.yaml │ │ │ ├── delete-i.yaml │ │ │ ├── each-i.yaml │ │ │ ├── length-i.yaml │ │ │ ├── new-c.yaml │ │ │ └── process-i.yaml │ │ ├── Caps │ │ │ ├── C │ │ │ │ ├── cdesc-C.yaml │ │ │ │ ├── ext-i.yaml │ │ │ │ ├── hash-i.yaml │ │ │ │ ├── legacy%3f-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── node-i.yaml │ │ │ │ └── ver-i.yaml │ │ │ ├── Helper │ │ │ │ ├── c-i.yaml │ │ │ │ ├── cdesc-Helper.yaml │ │ │ │ ├── handle_discoinfo_query-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ └── ver-i.yaml │ │ │ ├── cdesc-Caps.yaml │ │ │ ├── generate_ver-c.yaml │ │ │ ├── generate_ver_from_discoinfo-c.yaml │ │ │ └── generate_ver_str-c.yaml │ │ ├── Client │ │ │ ├── auth-i.yaml │ │ │ ├── auth_anonymous-i.yaml │ │ │ ├── auth_anonymous_sasl-i.yaml │ │ │ ├── auth_nonsasl-i.yaml │ │ │ ├── auth_sasl-i.yaml │ │ │ ├── bind-i.yaml │ │ │ ├── cdesc-Client.yaml │ │ │ ├── close-i.yaml │ │ │ ├── connect-i.yaml │ │ │ ├── new-c.yaml │ │ │ ├── password%3d-i.yaml │ │ │ ├── register-i.yaml │ │ │ ├── register_info-i.yaml │ │ │ ├── remove_registration-i.yaml │ │ │ ├── start-i.yaml │ │ │ ├── supports_anonymous%3f-i.yaml │ │ │ └── unbind-i.yaml │ │ ├── ClientAuthenticationFailure │ │ │ └── cdesc-ClientAuthenticationFailure.yaml │ │ ├── Command │ │ │ ├── IqCommand │ │ │ │ ├── action%3d-i.yaml │ │ │ │ ├── action-i.yaml │ │ │ │ ├── actions-i.yaml │ │ │ │ ├── cdesc-IqCommand.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── node%3d-i.yaml │ │ │ │ ├── node-i.yaml │ │ │ │ ├── sessionid%3d-i.yaml │ │ │ │ ├── sessionid-i.yaml │ │ │ │ ├── set_action-i.yaml │ │ │ │ ├── set_node-i.yaml │ │ │ │ ├── set_sessionid-i.yaml │ │ │ │ ├── set_status-i.yaml │ │ │ │ ├── status%3d-i.yaml │ │ │ │ └── status-i.yaml │ │ │ ├── Responder │ │ │ │ ├── add_commands_disco_callback-i.yaml │ │ │ │ ├── add_commands_exec_callback-i.yaml │ │ │ │ ├── cdesc-Responder.yaml │ │ │ │ ├── iq_callback-i.yaml │ │ │ │ └── new-c.yaml │ │ │ └── cdesc-Command.yaml │ │ ├── Component │ │ │ ├── auth-i.yaml │ │ │ ├── cdesc-Component.yaml │ │ │ ├── close-i.yaml │ │ │ ├── connect-i.yaml │ │ │ ├── new-c.yaml │ │ │ └── start-i.yaml │ │ ├── ComponentAuthenticationFailure │ │ │ └── cdesc-ComponentAuthenticationFailure.yaml │ │ ├── Connection │ │ │ ├── accept_features-i.yaml │ │ │ ├── cdesc-Connection.yaml │ │ │ ├── close%21-i.yaml │ │ │ ├── connect-i.yaml │ │ │ ├── is_tls%3f-i.yaml │ │ │ ├── new-c.yaml │ │ │ ├── start-i.yaml │ │ │ └── starttls-i.yaml │ │ ├── Dataforms │ │ │ ├── XData │ │ │ │ ├── cdesc-XData.yaml │ │ │ │ ├── field-i.yaml │ │ │ │ ├── fields-i.yaml │ │ │ │ ├── instructions%3d-i.yaml │ │ │ │ ├── instructions-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── title%3d-i.yaml │ │ │ │ ├── title-i.yaml │ │ │ │ ├── type%3d-i.yaml │ │ │ │ └── type-i.yaml │ │ │ ├── XDataField │ │ │ │ ├── cdesc-XDataField.yaml │ │ │ │ ├── label%3d-i.yaml │ │ │ │ ├── label-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── options%3d-i.yaml │ │ │ │ ├── options-i.yaml │ │ │ │ ├── required%3d-i.yaml │ │ │ │ ├── required%3f-i.yaml │ │ │ │ ├── type%3d-i.yaml │ │ │ │ ├── type-i.yaml │ │ │ │ ├── value%3d-i.yaml │ │ │ │ ├── value-i.yaml │ │ │ │ ├── values%3d-i.yaml │ │ │ │ ├── values-i.yaml │ │ │ │ ├── var%3d-i.yaml │ │ │ │ └── var-i.yaml │ │ │ ├── XDataInstructions │ │ │ │ ├── cdesc-XDataInstructions.yaml │ │ │ │ ├── instructions-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ └── to_s-i.yaml │ │ │ ├── XDataReported │ │ │ │ └── cdesc-XDataReported.yaml │ │ │ ├── XDataTitle │ │ │ │ ├── cdesc-XDataTitle.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── title-i.yaml │ │ │ │ └── to_s-i.yaml │ │ │ └── cdesc-Dataforms.yaml │ │ ├── Delay │ │ │ ├── XDelay │ │ │ │ ├── cdesc-XDelay.yaml │ │ │ │ ├── from%3d-i.yaml │ │ │ │ ├── from-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── set_from-i.yaml │ │ │ │ ├── set_stamp-i.yaml │ │ │ │ ├── stamp%3d-i.yaml │ │ │ │ └── stamp-i.yaml │ │ │ └── cdesc-Delay.yaml │ │ ├── Discovery │ │ │ ├── Feature │ │ │ │ ├── cdesc-Feature.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── set_var-i.yaml │ │ │ │ ├── var%3d-i.yaml │ │ │ │ └── var-i.yaml │ │ │ ├── Helper │ │ │ │ ├── cdesc-Helper.yaml │ │ │ │ ├── get_info_for-i.yaml │ │ │ │ ├── get_items_for-i.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── Identity │ │ │ │ ├── category%3d-i.yaml │ │ │ │ ├── category-i.yaml │ │ │ │ ├── cdesc-Identity.yaml │ │ │ │ ├── iname%3d-i.yaml │ │ │ │ ├── iname-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── set_category-i.yaml │ │ │ │ ├── set_iname-i.yaml │ │ │ │ ├── set_type-i.yaml │ │ │ │ ├── type%3d-i.yaml │ │ │ │ └── type-i.yaml │ │ │ ├── IqQueryDiscoInfo │ │ │ │ ├── cdesc-IqQueryDiscoInfo.yaml │ │ │ │ ├── features-i.yaml │ │ │ │ ├── identities-i.yaml │ │ │ │ ├── identity-i.yaml │ │ │ │ ├── node%3d-i.yaml │ │ │ │ ├── node-i.yaml │ │ │ │ └── set_node-i.yaml │ │ │ ├── IqQueryDiscoItems │ │ │ │ ├── cdesc-IqQueryDiscoItems.yaml │ │ │ │ ├── items-i.yaml │ │ │ │ ├── node%3d-i.yaml │ │ │ │ ├── node-i.yaml │ │ │ │ └── set_node-i.yaml │ │ │ ├── Item │ │ │ │ ├── cdesc-Item.yaml │ │ │ │ ├── iname%3d-i.yaml │ │ │ │ ├── iname-i.yaml │ │ │ │ ├── jid%3d-i.yaml │ │ │ │ ├── jid-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── node%3d-i.yaml │ │ │ │ ├── node-i.yaml │ │ │ │ ├── set_iname-i.yaml │ │ │ │ ├── set_jid-i.yaml │ │ │ │ └── set_node-i.yaml │ │ │ ├── Responder │ │ │ │ ├── add_feature-i.yaml │ │ │ │ ├── add_features-i.yaml │ │ │ │ ├── cdesc-Responder.yaml │ │ │ │ ├── generate_caps-i.yaml │ │ │ │ ├── generate_item-i.yaml │ │ │ │ └── new-c.yaml │ │ │ └── cdesc-Discovery.yaml │ │ ├── ErrorResponse │ │ │ ├── cdesc-ErrorResponse.yaml │ │ │ ├── code%3d-i.yaml │ │ │ ├── code-i.yaml │ │ │ ├── error%3d-i.yaml │ │ │ ├── error-i.yaml │ │ │ ├── new-c.yaml │ │ │ ├── set_code-i.yaml │ │ │ ├── set_error-i.yaml │ │ │ ├── set_text-i.yaml │ │ │ ├── set_type-i.yaml │ │ │ ├── text%3d-i.yaml │ │ │ ├── text-i.yaml │ │ │ ├── type%3d-i.yaml │ │ │ └── type-i.yaml │ │ ├── FeatureNegotiation │ │ │ ├── IqFeature │ │ │ │ ├── cdesc-IqFeature.yaml │ │ │ │ └── x-i.yaml │ │ │ └── cdesc-FeatureNegotiation.yaml │ │ ├── FileTransfer │ │ │ ├── FileSource │ │ │ │ ├── can_range%3f-i.yaml │ │ │ │ ├── cdesc-FileSource.yaml │ │ │ │ ├── date-i.yaml │ │ │ │ ├── filename-i.yaml │ │ │ │ ├── length%3d-i.yaml │ │ │ │ ├── mime-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── read-i.yaml │ │ │ │ ├── seek-i.yaml │ │ │ │ └── size-i.yaml │ │ │ ├── Helper │ │ │ │ ├── accept-i.yaml │ │ │ │ ├── add_incoming_callback-i.yaml │ │ │ │ ├── cdesc-Helper.yaml │ │ │ │ ├── decline-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ └── offer-i.yaml │ │ │ ├── TransferSource │ │ │ │ ├── can_range%3f-i.yaml │ │ │ │ ├── cdesc-TransferSource.yaml │ │ │ │ ├── date-i.yaml │ │ │ │ ├── filename-i.yaml │ │ │ │ ├── length%3d-i.yaml │ │ │ │ ├── md5-i.yaml │ │ │ │ ├── mime-i.yaml │ │ │ │ ├── read-i.yaml │ │ │ │ ├── seek-i.yaml │ │ │ │ └── size-i.yaml │ │ │ └── cdesc-FileTransfer.yaml │ │ ├── Framework │ │ │ ├── Base │ │ │ │ ├── cdesc-Base.yaml │ │ │ │ ├── helper-c.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ └── on_unhandled_iq-i.yaml │ │ │ ├── Bot │ │ │ │ ├── accept_subscription_from%3f-i.yaml │ │ │ │ ├── add_cap-i.yaml │ │ │ │ ├── add_pep_notification-i.yaml │ │ │ │ ├── cdesc-Bot.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── send_message-i.yaml │ │ │ │ ├── send_message_xhtml-i.yaml │ │ │ │ └── set_presence-i.yaml │ │ │ └── cdesc-Framework.yaml │ │ ├── HTTPBinding │ │ │ ├── Client │ │ │ │ ├── cdesc-Client.yaml │ │ │ │ ├── close-i.yaml │ │ │ │ ├── connect-i.yaml │ │ │ │ ├── ensure_one_pending_request-i.yaml │ │ │ │ └── new-c.yaml │ │ │ └── cdesc-HTTPBinding.yaml │ │ ├── IdGenerator │ │ │ ├── cdesc-IdGenerator.yaml │ │ │ ├── generate_id-c.yaml │ │ │ ├── generate_id-i.yaml │ │ │ └── new-c.yaml │ │ ├── InvalidChatState │ │ │ └── cdesc-InvalidChatState.yaml │ │ ├── Iq │ │ │ ├── cdesc-Iq.yaml │ │ │ ├── command-i.yaml │ │ │ ├── new-c.yaml │ │ │ ├── new_authset-c.yaml │ │ │ ├── new_authset_digest-c.yaml │ │ │ ├── new_browseget-c.yaml │ │ │ ├── new_query-c.yaml │ │ │ ├── new_register-c.yaml │ │ │ ├── new_registerget-c.yaml │ │ │ ├── new_rosterget-c.yaml │ │ │ ├── new_rosterset-c.yaml │ │ │ ├── pubsub-i.yaml │ │ │ ├── query%3d-i.yaml │ │ │ ├── query-i.yaml │ │ │ ├── queryns-i.yaml │ │ │ ├── set_type-i.yaml │ │ │ ├── type%3d-i.yaml │ │ │ ├── type-i.yaml │ │ │ └── vcard-i.yaml │ │ ├── IqQuery │ │ │ └── cdesc-IqQuery.yaml │ │ ├── JID │ │ │ ├── %3c%3d%3e-i.yaml │ │ │ ├── %3d%3d-i.yaml │ │ │ ├── bare%21-i.yaml │ │ │ ├── bare-i.yaml │ │ │ ├── bared%3f-i.yaml │ │ │ ├── cdesc-JID.yaml │ │ │ ├── domain%3d-i.yaml │ │ │ ├── domain-i.yaml │ │ │ ├── empty%3f-i.yaml │ │ │ ├── eql%3f-i.yaml │ │ │ ├── escape-c.yaml │ │ │ ├── hash-i.yaml │ │ │ ├── new-c.yaml │ │ │ ├── node%3d-i.yaml │ │ │ ├── node-i.yaml │ │ │ ├── resource%3d-i.yaml │ │ │ ├── resource-i.yaml │ │ │ ├── strip%21-i.yaml │ │ │ ├── strip-i.yaml │ │ │ ├── stripped%3f-i.yaml │ │ │ └── to_s-i.yaml │ │ ├── JabberError │ │ │ └── cdesc-JabberError.yaml │ │ ├── LastActivity │ │ │ ├── Helper │ │ │ │ ├── cdesc-Helper.yaml │ │ │ │ ├── get_last_activity_from-i.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── IqQueryLastActivity │ │ │ │ ├── cdesc-IqQueryLastActivity.yaml │ │ │ │ ├── seconds%3d-i.yaml │ │ │ │ ├── seconds-i.yaml │ │ │ │ ├── set_second-i.yaml │ │ │ │ ├── set_status-i.yaml │ │ │ │ ├── status%3d-i.yaml │ │ │ │ └── status-i.yaml │ │ │ └── cdesc-LastActivity.yaml │ │ ├── MUC │ │ │ ├── IqQueryMUCAdmin │ │ │ │ ├── cdesc-IqQueryMUCAdmin.yaml │ │ │ │ └── items-i.yaml │ │ │ ├── IqQueryMUCAdminItem │ │ │ │ ├── cdesc-IqQueryMUCAdminItem.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── IqQueryMUCOwner │ │ │ │ └── cdesc-IqQueryMUCOwner.yaml │ │ │ ├── MUCBrowser │ │ │ │ ├── cdesc-MUCBrowser.yaml │ │ │ │ ├── muc_name-i.yaml │ │ │ │ ├── muc_rooms-i.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── MUCClient │ │ │ │ ├── active%3f-i.yaml │ │ │ │ ├── add_join_callback-i.yaml │ │ │ │ ├── add_leave_callback-i.yaml │ │ │ │ ├── add_message_callback-i.yaml │ │ │ │ ├── add_presence_callback-i.yaml │ │ │ │ ├── add_private_message_callback-i.yaml │ │ │ │ ├── cdesc-MUCClient.yaml │ │ │ │ ├── configure-i.yaml │ │ │ │ ├── exit-i.yaml │ │ │ │ ├── from_room%3f-i.yaml │ │ │ │ ├── get_room_configuration-i.yaml │ │ │ │ ├── join-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── nick%3d-i.yaml │ │ │ │ ├── nick-i.yaml │ │ │ │ ├── owner%3f-i.yaml │ │ │ │ ├── room-i.yaml │ │ │ │ ├── send-i.yaml │ │ │ │ ├── send_affiliations-i.yaml │ │ │ │ └── submit_room_configuration-i.yaml │ │ │ ├── SimpleMUCClient │ │ │ │ ├── ban-i.yaml │ │ │ │ ├── cdesc-SimpleMUCClient.yaml │ │ │ │ ├── demote-i.yaml │ │ │ │ ├── invite-i.yaml │ │ │ │ ├── kick-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── on_join-i.yaml │ │ │ │ ├── on_leave-i.yaml │ │ │ │ ├── on_message-i.yaml │ │ │ │ ├── on_private_message-i.yaml │ │ │ │ ├── on_room_message-i.yaml │ │ │ │ ├── on_self_leave-i.yaml │ │ │ │ ├── on_subject-i.yaml │ │ │ │ ├── promote-i.yaml │ │ │ │ ├── say-i.yaml │ │ │ │ ├── subject%3d-i.yaml │ │ │ │ ├── subject-i.yaml │ │ │ │ └── unban-i.yaml │ │ │ ├── UserItem │ │ │ │ ├── actors%3d-i.yaml │ │ │ │ ├── actors-i.yaml │ │ │ │ ├── affiliation%3d-i.yaml │ │ │ │ ├── affiliation-i.yaml │ │ │ │ ├── cdesc-UserItem.yaml │ │ │ │ ├── continue%3d-i.yaml │ │ │ │ ├── continue-i.yaml │ │ │ │ ├── jid%3d-i.yaml │ │ │ │ ├── jid-i.yaml │ │ │ │ ├── nick%3d-i.yaml │ │ │ │ ├── nick-i.yaml │ │ │ │ ├── reason%3d-i.yaml │ │ │ │ ├── reason-i.yaml │ │ │ │ ├── role%3d-i.yaml │ │ │ │ ├── role-i.yaml │ │ │ │ ├── set_actors-i.yaml │ │ │ │ ├── set_affiliation-i.yaml │ │ │ │ ├── set_continue-i.yaml │ │ │ │ ├── set_jid-i.yaml │ │ │ │ ├── set_nick-i.yaml │ │ │ │ ├── set_reason-i.yaml │ │ │ │ └── set_role-i.yaml │ │ │ ├── XMUC │ │ │ │ ├── cdesc-XMUC.yaml │ │ │ │ ├── password%3d-i.yaml │ │ │ │ └── password-i.yaml │ │ │ ├── XMUCUser │ │ │ │ ├── cdesc-XMUCUser.yaml │ │ │ │ ├── items-i.yaml │ │ │ │ └── status_code-i.yaml │ │ │ ├── XMUCUserInvite │ │ │ │ ├── cdesc-XMUCUserInvite.yaml │ │ │ │ ├── from%3d-i.yaml │ │ │ │ ├── from-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── reason%3d-i.yaml │ │ │ │ ├── reason-i.yaml │ │ │ │ ├── set_from-i.yaml │ │ │ │ ├── set_reason-i.yaml │ │ │ │ ├── set_to-i.yaml │ │ │ │ ├── to%3d-i.yaml │ │ │ │ └── to-i.yaml │ │ │ ├── XMUCUserItem │ │ │ │ ├── cdesc-XMUCUserItem.yaml │ │ │ │ ├── continue%3d-i.yaml │ │ │ │ ├── continue-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ └── set_continue-i.yaml │ │ │ └── cdesc-MUC.yaml │ │ ├── Message │ │ │ ├── body%3d-i.yaml │ │ │ ├── body-i.yaml │ │ │ ├── cdesc-Message.yaml │ │ │ ├── chat_state%3d-i.yaml │ │ │ ├── chat_state-i.yaml │ │ │ ├── new-c.yaml │ │ │ ├── set_body-i.yaml │ │ │ ├── set_chat_state-i.yaml │ │ │ ├── set_subject-i.yaml │ │ │ ├── set_thread-i.yaml │ │ │ ├── set_type-i.yaml │ │ │ ├── subject%3d-i.yaml │ │ │ ├── subject-i.yaml │ │ │ ├── thread%3d-i.yaml │ │ │ ├── thread-i.yaml │ │ │ ├── type%3d-i.yaml │ │ │ └── type-i.yaml │ │ ├── NoNameXmlnsRegistered │ │ │ ├── cdesc-NoNameXmlnsRegistered.yaml │ │ │ └── new-c.yaml │ │ ├── Presence │ │ │ ├── %3c%3d%3e-i.yaml │ │ │ ├── cdesc-Presence.yaml │ │ │ ├── cmp_interest-i.yaml │ │ │ ├── new-c.yaml │ │ │ ├── priority%3d-i.yaml │ │ │ ├── priority-i.yaml │ │ │ ├── set_priority-i.yaml │ │ │ ├── set_show-i.yaml │ │ │ ├── set_status-i.yaml │ │ │ ├── set_type-i.yaml │ │ │ ├── show%3d-i.yaml │ │ │ ├── show-i.yaml │ │ │ ├── status%3d-i.yaml │ │ │ ├── status-i.yaml │ │ │ ├── type%3d-i.yaml │ │ │ └── type-i.yaml │ │ ├── PubSub │ │ │ ├── Configuration │ │ │ │ ├── cdesc-Configuration.yaml │ │ │ │ ├── form%3d-i.yaml │ │ │ │ ├── form-i.yaml │ │ │ │ ├── form_type-i.yaml │ │ │ │ ├── node%3d-i.yaml │ │ │ │ ├── node-i.yaml │ │ │ │ ├── options%3d-i.yaml │ │ │ │ └── options-i.yaml │ │ │ ├── Event │ │ │ │ ├── cdesc-Event.yaml │ │ │ │ ├── event_type%3f-i.yaml │ │ │ │ ├── payload%3d-i.yaml │ │ │ │ └── payload-i.yaml │ │ │ ├── EventItem │ │ │ │ └── cdesc-EventItem.yaml │ │ │ ├── EventItems │ │ │ │ └── cdesc-EventItems.yaml │ │ │ ├── IqPubSub │ │ │ │ └── cdesc-IqPubSub.yaml │ │ │ ├── IqPubSubOwner │ │ │ │ └── cdesc-IqPubSubOwner.yaml │ │ │ ├── Item │ │ │ │ ├── cdesc-Item.yaml │ │ │ │ ├── id%3d-i.yaml │ │ │ │ ├── id-i.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── Items │ │ │ │ ├── cdesc-Items.yaml │ │ │ │ ├── each-i.yaml │ │ │ │ ├── items-i.yaml │ │ │ │ ├── max_items%3d-i.yaml │ │ │ │ ├── max_items-i.yaml │ │ │ │ ├── node%3d-i.yaml │ │ │ │ ├── node-i.yaml │ │ │ │ ├── subid%3d-i.yaml │ │ │ │ └── subid-i.yaml │ │ │ ├── NodeBrowser │ │ │ │ ├── category-i.yaml │ │ │ │ ├── cdesc-NodeBrowser.yaml │ │ │ │ ├── get_info-i.yaml │ │ │ │ ├── get_metadata-i.yaml │ │ │ │ ├── items-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── nodes-i.yaml │ │ │ │ ├── nodes_names-i.yaml │ │ │ │ └── type-i.yaml │ │ │ ├── NodeConfig │ │ │ │ ├── cdesc-NodeConfig.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── NodeHelper │ │ │ │ ├── cdesc-NodeHelper.yaml │ │ │ │ ├── create_node-i.yaml │ │ │ │ ├── delete_node-i.yaml │ │ │ │ ├── do_subscribe-i.yaml │ │ │ │ ├── do_unsubscribe-i.yaml │ │ │ │ ├── get_affiliations-i.yaml │ │ │ │ ├── get_all_items-i.yaml │ │ │ │ ├── get_configuration-i.yaml │ │ │ │ ├── get_items-i.yaml │ │ │ │ ├── get_subscribers-i.yaml │ │ │ │ ├── get_subscriptions-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── publish_content-i.yaml │ │ │ │ ├── purge_items-i.yaml │ │ │ │ └── set_configuration-i.yaml │ │ │ ├── OAuthPubSubStreamHelper │ │ │ │ ├── cdesc-OAuthPubSubStreamHelper.yaml │ │ │ │ └── send_with_id-i.yaml │ │ │ ├── OAuthServiceHelper │ │ │ │ ├── cdesc-OAuthServiceHelper.yaml │ │ │ │ ├── create_oauth_node-c.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── OwnerNodeConfig │ │ │ │ └── cdesc-OwnerNodeConfig.yaml │ │ │ ├── Publish │ │ │ │ ├── cdesc-Publish.yaml │ │ │ │ ├── each-i.yaml │ │ │ │ ├── items-i.yaml │ │ │ │ └── node-i.yaml │ │ │ ├── Retract │ │ │ │ ├── cdesc-Retract.yaml │ │ │ │ ├── items-i.yaml │ │ │ │ ├── node%3d-i.yaml │ │ │ │ └── node-i.yaml │ │ │ ├── ServiceHelper │ │ │ │ ├── add_event_callback-i.yaml │ │ │ │ ├── cdesc-ServiceHelper.yaml │ │ │ │ ├── create_collection_node-i.yaml │ │ │ │ ├── create_node-i.yaml │ │ │ │ ├── delete_item_from-i.yaml │ │ │ │ ├── delete_node-i.yaml │ │ │ │ ├── get_affiliations-i.yaml │ │ │ │ ├── get_config_from-i.yaml │ │ │ │ ├── get_items_from-i.yaml │ │ │ │ ├── get_options_from-i.yaml │ │ │ │ ├── get_subscribers_from-i.yaml │ │ │ │ ├── get_subscriptions_from-i.yaml │ │ │ │ ├── get_subscriptions_from_all_nodes-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── publish_item_to-i.yaml │ │ │ │ ├── publish_item_with_id_to-i.yaml │ │ │ │ ├── purge_items_from-i.yaml │ │ │ │ ├── set_affiliations-i.yaml │ │ │ │ ├── set_config_for-i.yaml │ │ │ │ ├── set_options_for-i.yaml │ │ │ │ ├── subscribe_to-i.yaml │ │ │ │ ├── to_s-i.yaml │ │ │ │ └── unsubscribe_from-i.yaml │ │ │ ├── Subscription │ │ │ │ ├── cdesc-Subscription.yaml │ │ │ │ ├── jid%3d-i.yaml │ │ │ │ ├── jid-i.yaml │ │ │ │ ├── need_approval%3f-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── node%3d-i.yaml │ │ │ │ ├── node-i.yaml │ │ │ │ ├── state%3d-i.yaml │ │ │ │ ├── state-i.yaml │ │ │ │ ├── subid%3d-i.yaml │ │ │ │ ├── subid-i.yaml │ │ │ │ └── subscription-i.yaml │ │ │ ├── SubscriptionConfig │ │ │ │ ├── cdesc-SubscriptionConfig.yaml │ │ │ │ ├── jid%3d-i.yaml │ │ │ │ ├── jid-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── subid%3d-i.yaml │ │ │ │ └── subid-i.yaml │ │ │ ├── Unsubscribe │ │ │ │ ├── cdesc-Unsubscribe.yaml │ │ │ │ ├── jid%3d-i.yaml │ │ │ │ ├── jid-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── node%3d-i.yaml │ │ │ │ └── node-i.yaml │ │ │ └── cdesc-PubSub.yaml │ │ ├── RPC │ │ │ ├── Client │ │ │ │ ├── call-i.yaml │ │ │ │ ├── call2-i.yaml │ │ │ │ ├── cdesc-Client.yaml │ │ │ │ ├── do_rpc-i.yaml │ │ │ │ ├── method_missing-i.yaml │ │ │ │ ├── multicall-i.yaml │ │ │ │ ├── multicall2-i.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── IqQueryRPC │ │ │ │ ├── cdesc-IqQueryRPC.yaml │ │ │ │ └── typed_add-i.yaml │ │ │ ├── Server │ │ │ │ ├── cdesc-Server.yaml │ │ │ │ ├── handle_iq-i.yaml │ │ │ │ └── new-c.yaml │ │ │ └── cdesc-RPC.yaml │ │ ├── Reliable │ │ │ ├── Connection │ │ │ │ ├── cdesc-Connection.yaml │ │ │ │ ├── connect-i.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── Listener │ │ │ │ ├── add_exception_handler-i.yaml │ │ │ │ ├── auth-i.yaml │ │ │ │ ├── cdesc-Listener.yaml │ │ │ │ ├── connect-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── run_exception_handlers-i.yaml │ │ │ │ ├── send_message-i.yaml │ │ │ │ ├── send_presence-i.yaml │ │ │ │ ├── setup_connection-i.yaml │ │ │ │ ├── start-i.yaml │ │ │ │ └── stop-i.yaml │ │ │ └── cdesc-Reliable.yaml │ │ ├── Roster │ │ │ ├── Helper │ │ │ │ ├── %5b%5d-i.yaml │ │ │ │ ├── RosterItem │ │ │ │ │ ├── add_presence-i.yaml │ │ │ │ │ ├── cancel_subscription-i.yaml │ │ │ │ │ ├── cdesc-RosterItem.yaml │ │ │ │ │ ├── each_presence-i.yaml │ │ │ │ │ ├── new-c.yaml │ │ │ │ │ ├── online%3f-i.yaml │ │ │ │ │ ├── presence-i.yaml │ │ │ │ │ ├── remove-i.yaml │ │ │ │ │ ├── send-i.yaml │ │ │ │ │ ├── subscribe-i.yaml │ │ │ │ │ └── unsubscribe-i.yaml │ │ │ │ ├── accept_subscription-i.yaml │ │ │ │ ├── add-i.yaml │ │ │ │ ├── add_presence_callback-i.yaml │ │ │ │ ├── add_query_callback-i.yaml │ │ │ │ ├── add_subscription_callback-i.yaml │ │ │ │ ├── add_subscription_request_callback-i.yaml │ │ │ │ ├── add_update_callback-i.yaml │ │ │ │ ├── cdesc-Helper.yaml │ │ │ │ ├── decline_subscription-i.yaml │ │ │ │ ├── find-i.yaml │ │ │ │ ├── find_by_group-i.yaml │ │ │ │ ├── get_roster-i.yaml │ │ │ │ ├── groups-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ └── wait_for_roster-i.yaml │ │ │ ├── IqQueryRoster │ │ │ │ ├── %5b%5d-i.yaml │ │ │ │ ├── cdesc-IqQueryRoster.yaml │ │ │ │ ├── each-i.yaml │ │ │ │ ├── inspect-i.yaml │ │ │ │ ├── receive_iq-i.yaml │ │ │ │ └── to_a-i.yaml │ │ │ ├── RosterItem │ │ │ │ ├── ask%3d-i.yaml │ │ │ │ ├── ask-i.yaml │ │ │ │ ├── cdesc-RosterItem.yaml │ │ │ │ ├── groups%3d-i.yaml │ │ │ │ ├── groups-i.yaml │ │ │ │ ├── iname%3d-i.yaml │ │ │ │ ├── iname-i.yaml │ │ │ │ ├── jid%3d-i.yaml │ │ │ │ ├── jid-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── subscription%3d-i.yaml │ │ │ │ └── subscription-i.yaml │ │ │ ├── RosterX │ │ │ │ └── cdesc-RosterX.yaml │ │ │ ├── RosterXItem │ │ │ │ └── cdesc-RosterXItem.yaml │ │ │ ├── XRoster │ │ │ │ └── cdesc-XRoster.yaml │ │ │ ├── XRosterItem │ │ │ │ ├── action%3d-i.yaml │ │ │ │ ├── action-i.yaml │ │ │ │ ├── cdesc-XRosterItem.yaml │ │ │ │ ├── groups%3d-i.yaml │ │ │ │ ├── groups-i.yaml │ │ │ │ ├── iname%3d-i.yaml │ │ │ │ ├── iname-i.yaml │ │ │ │ ├── jid%3d-i.yaml │ │ │ │ ├── jid-i.yaml │ │ │ │ └── new-c.yaml │ │ │ └── cdesc-Roster.yaml │ │ ├── SASL │ │ │ ├── Anonymous │ │ │ │ ├── auth-i.yaml │ │ │ │ └── cdesc-Anonymous.yaml │ │ │ ├── Base │ │ │ │ ├── cdesc-Base.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── DigestMD5 │ │ │ │ ├── auth-i.yaml │ │ │ │ ├── cdesc-DigestMD5.yaml │ │ │ │ ├── decode_challenge-i.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── Plain │ │ │ │ ├── auth-i.yaml │ │ │ │ └── cdesc-Plain.yaml │ │ │ ├── cdesc-SASL.yaml │ │ │ └── new-c.yaml │ │ ├── SOCKS5Error │ │ │ └── cdesc-SOCKS5Error.yaml │ │ ├── Semaphore │ │ │ ├── cdesc-Semaphore.yaml │ │ │ ├── new-c.yaml │ │ │ ├── run-i.yaml │ │ │ └── wait-i.yaml │ │ ├── ServerDisconnected │ │ │ └── cdesc-ServerDisconnected.yaml │ │ ├── ServerError │ │ │ └── cdesc-ServerError.yaml │ │ ├── Stream │ │ │ ├── ThreadBlock │ │ │ │ ├── call-i.yaml │ │ │ │ ├── cdesc-ThreadBlock.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── raise-i.yaml │ │ │ │ ├── wait-i.yaml │ │ │ │ └── wakeup-i.yaml │ │ │ ├── add_iq_callback-i.yaml │ │ │ ├── add_message_callback-i.yaml │ │ │ ├── add_presence_callback-i.yaml │ │ │ ├── add_stanza_callback-i.yaml │ │ │ ├── add_xml_callback-i.yaml │ │ │ ├── cdesc-Stream.yaml │ │ │ ├── close%21-i.yaml │ │ │ ├── close-i.yaml │ │ │ ├── delete_iq_callback-i.yaml │ │ │ ├── delete_message_callback-i.yaml │ │ │ ├── delete_presence_callback-i.yaml │ │ │ ├── delete_stanza_callback-i.yaml │ │ │ ├── delete_xml_callback-i.yaml │ │ │ ├── iq_callbacks-i.yaml │ │ │ ├── is_connected%3f-i.yaml │ │ │ ├── is_disconnected%3f-i.yaml │ │ │ ├── message_callbacks-i.yaml │ │ │ ├── new-c.yaml │ │ │ ├── on_exception-i.yaml │ │ │ ├── parse_failure-i.yaml │ │ │ ├── parser_end-i.yaml │ │ │ ├── presence_callbacks-i.yaml │ │ │ ├── receive-i.yaml │ │ │ ├── send-i.yaml │ │ │ ├── send_data-i.yaml │ │ │ ├── send_with_id-i.yaml │ │ │ ├── stanza_callbacks-i.yaml │ │ │ ├── start-i.yaml │ │ │ ├── stop-i.yaml │ │ │ └── xml_callbacks-i.yaml │ │ ├── StreamParser │ │ │ ├── cdesc-StreamParser.yaml │ │ │ ├── new-c.yaml │ │ │ └── parse-i.yaml │ │ ├── Test │ │ │ ├── ListenerMocker │ │ │ │ ├── auth-i.yaml │ │ │ │ ├── auth_nonsasl-i.yaml │ │ │ │ ├── cdesc-ListenerMocker.yaml │ │ │ │ ├── close%21-i.yaml │ │ │ │ ├── connect-i.yaml │ │ │ │ ├── is_connected%3f-i.yaml │ │ │ │ ├── mock_out-c.yaml │ │ │ │ ├── mock_out_all_connections-c.yaml │ │ │ │ ├── mocker_proc-c.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── send-i.yaml │ │ │ │ ├── setup_connection-c.yaml │ │ │ │ └── with_socket_mocked-c.yaml │ │ │ └── cdesc-Test.yaml │ │ ├── UserLocation │ │ │ ├── Helper │ │ │ │ ├── add_userlocation_callback-i.yaml │ │ │ │ ├── cdesc-Helper.yaml │ │ │ │ ├── current_location-i.yaml │ │ │ │ └── stop_publishing-i.yaml │ │ │ ├── Location │ │ │ │ ├── accuracy-i.yaml │ │ │ │ ├── alt-i.yaml │ │ │ │ ├── area-i.yaml │ │ │ │ ├── bearing-i.yaml │ │ │ │ ├── building-i.yaml │ │ │ │ ├── cdesc-Location.yaml │ │ │ │ ├── country-i.yaml │ │ │ │ ├── datum-i.yaml │ │ │ │ ├── description-i.yaml │ │ │ │ ├── floor-i.yaml │ │ │ │ ├── lat-i.yaml │ │ │ │ ├── locality-i.yaml │ │ │ │ ├── lon-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── postalcode-i.yaml │ │ │ │ ├── published%3f-i.yaml │ │ │ │ ├── region-i.yaml │ │ │ │ ├── room-i.yaml │ │ │ │ ├── speed-i.yaml │ │ │ │ ├── street-i.yaml │ │ │ │ ├── text-i.yaml │ │ │ │ ├── timestamp-i.yaml │ │ │ │ └── uri-i.yaml │ │ │ └── cdesc-UserLocation.yaml │ │ ├── UserTune │ │ │ ├── Helper │ │ │ │ ├── add_usertune_callback-i.yaml │ │ │ │ ├── cdesc-Helper.yaml │ │ │ │ ├── now_playing-i.yaml │ │ │ │ └── stop_playing-i.yaml │ │ │ ├── Tune │ │ │ │ ├── artist-i.yaml │ │ │ │ ├── cdesc-Tune.yaml │ │ │ │ ├── length-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── playing%3f-i.yaml │ │ │ │ ├── rating-i.yaml │ │ │ │ ├── source-i.yaml │ │ │ │ ├── title-i.yaml │ │ │ │ ├── track-i.yaml │ │ │ │ └── uri-i.yaml │ │ │ └── cdesc-UserTune.yaml │ │ ├── Vcard │ │ │ ├── Helper │ │ │ │ ├── cdesc-Helper.yaml │ │ │ │ ├── get-c.yaml │ │ │ │ ├── get-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── set-c.yaml │ │ │ │ └── set-i.yaml │ │ │ ├── IqVcard │ │ │ │ ├── %5b%5d%3d-i.yaml │ │ │ │ ├── %5b%5d-i.yaml │ │ │ │ ├── cdesc-IqVcard.yaml │ │ │ │ ├── fields-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ └── photo_binval-i.yaml │ │ │ └── cdesc-Vcard.yaml │ │ ├── Version │ │ │ ├── IqQueryVersion │ │ │ │ ├── cdesc-IqQueryVersion.yaml │ │ │ │ ├── iname%3d-i.yaml │ │ │ │ ├── iname-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── os%3d-i.yaml │ │ │ │ ├── os-i.yaml │ │ │ │ ├── set_iname-i.yaml │ │ │ │ ├── set_os-i.yaml │ │ │ │ ├── set_version-i.yaml │ │ │ │ ├── version%3d-i.yaml │ │ │ │ └── version-i.yaml │ │ │ ├── Responder │ │ │ │ ├── add_version_callback-i.yaml │ │ │ │ ├── cdesc-Responder.yaml │ │ │ │ ├── iq_callback-i.yaml │ │ │ │ └── new-c.yaml │ │ │ ├── SimpleResponder │ │ │ │ ├── cdesc-SimpleResponder.yaml │ │ │ │ └── new-c.yaml │ │ │ └── cdesc-Version.yaml │ │ ├── X │ │ │ └── cdesc-X.yaml │ │ ├── XHTML │ │ │ ├── Body │ │ │ │ └── cdesc-Body.yaml │ │ │ ├── HTML │ │ │ │ ├── body%3d-i.yaml │ │ │ │ ├── body-i.yaml │ │ │ │ ├── cdesc-HTML.yaml │ │ │ │ ├── contents%3d-i.yaml │ │ │ │ ├── new-c.yaml │ │ │ │ ├── set_body-i.yaml │ │ │ │ ├── set_contents-i.yaml │ │ │ │ └── to_text-i.yaml │ │ │ └── cdesc-XHTML.yaml │ │ ├── XMPPElement │ │ │ ├── cdesc-XMPPElement.yaml │ │ │ ├── class_for_name_xmlns-c.yaml │ │ │ ├── clone-i.yaml │ │ │ ├── force_xmlns%3f-c.yaml │ │ │ ├── force_xmlns-c.yaml │ │ │ ├── import-c.yaml │ │ │ ├── name_xmlns-c.yaml │ │ │ ├── name_xmlns_for_class-c.yaml │ │ │ ├── new-c.yaml │ │ │ ├── parent%3d-i.yaml │ │ │ ├── set_xml_lang-i.yaml │ │ │ ├── typed_add-i.yaml │ │ │ ├── xml_lang%3d-i.yaml │ │ │ └── xml_lang-i.yaml │ │ ├── XMPPStanza │ │ │ ├── answer-c.yaml │ │ │ ├── answer-i.yaml │ │ │ ├── cdesc-XMPPStanza.yaml │ │ │ ├── error-i.yaml │ │ │ ├── from%3d-i.yaml │ │ │ ├── from-i.yaml │ │ │ ├── id%3d-i.yaml │ │ │ ├── id-i.yaml │ │ │ ├── normalize-i.yaml │ │ │ ├── set_from-i.yaml │ │ │ ├── set_id-i.yaml │ │ │ ├── set_to-i.yaml │ │ │ ├── set_type-i.yaml │ │ │ ├── to%3d-i.yaml │ │ │ ├── to-i.yaml │ │ │ ├── type%3d-i.yaml │ │ │ └── type-i.yaml │ │ ├── XParent │ │ │ ├── cdesc-XParent.yaml │ │ │ └── x-i.yaml │ │ ├── cdesc-Jabber.yaml │ │ ├── debug%3d-c.yaml │ │ ├── debug-c.yaml │ │ ├── debuglog-c.yaml │ │ ├── logger%3d-c.yaml │ │ ├── logger-c.yaml │ │ ├── warnings%3d-c.yaml │ │ └── warnlog-c.yaml │ │ ├── REXML │ │ ├── Element │ │ │ ├── %3d%3d-i.yaml │ │ │ ├── cdesc-Element.yaml │ │ │ ├── delete_elements-i.yaml │ │ │ ├── each_elements-i.yaml │ │ │ ├── first_element-i.yaml │ │ │ ├── first_element_text-i.yaml │ │ │ ├── import-c.yaml │ │ │ ├── import-i.yaml │ │ │ ├── replace_element_text-i.yaml │ │ │ └── typed_add-i.yaml │ │ ├── IOSource │ │ │ ├── cdesc-IOSource.yaml │ │ │ ├── current_line-i.yaml │ │ │ └── position-i.yaml │ │ └── cdesc-REXML.yaml │ │ ├── XMLRPC │ │ ├── Create │ │ │ ├── cdesc-Create.yaml │ │ │ ├── methodCall-i.yaml │ │ │ └── methodResponse-i.yaml │ │ └── cdesc-XMLRPC.yaml │ │ └── created.rid └── xmpp4r-simple-0.8.8 │ ├── rdoc │ ├── classes │ │ ├── Jabber.html │ │ └── Jabber │ │ │ ├── Simple.html │ │ │ └── Simple.src │ │ │ ├── M000001.html │ │ │ ├── M000002.html │ │ │ ├── M000003.html │ │ │ ├── M000004.html │ │ │ ├── M000005.html │ │ │ ├── M000006.html │ │ │ ├── M000007.html │ │ │ ├── M000008.html │ │ │ ├── M000009.html │ │ │ ├── M000010.html │ │ │ ├── M000011.html │ │ │ ├── M000012.html │ │ │ ├── M000013.html │ │ │ ├── M000014.html │ │ │ ├── M000015.html │ │ │ ├── M000016.html │ │ │ ├── M000017.html │ │ │ ├── M000018.html │ │ │ ├── M000019.html │ │ │ ├── M000020.html │ │ │ ├── M000021.html │ │ │ ├── M000022.html │ │ │ └── M000023.html │ ├── created.rid │ ├── files │ │ ├── COPYING.html │ │ ├── README.html │ │ └── lib │ │ │ └── xmpp4r-simple_rb.html │ ├── fr_class_index.html │ ├── fr_file_index.html │ ├── fr_method_index.html │ ├── index.html │ └── rdoc-style.css │ └── ri │ ├── Jabber │ ├── ConnectionError │ │ └── cdesc-ConnectionError.yaml │ ├── Contact │ │ └── cdesc-Contact.yaml │ ├── Simple │ │ ├── accept_subscriptions%3d-i.yaml │ │ ├── accept_subscriptions%3f-i.yaml │ │ ├── add-i.yaml │ │ ├── cdesc-Simple.yaml │ │ ├── client-i.yaml │ │ ├── connected%3f-i.yaml │ │ ├── contacts-i.yaml │ │ ├── deliver-i.yaml │ │ ├── deliver_deferred-i.yaml │ │ ├── disconnect-i.yaml │ │ ├── new-c.yaml │ │ ├── new_subscriptions%3f-i.yaml │ │ ├── new_subscriptions-i.yaml │ │ ├── presence_updates%3f-i.yaml │ │ ├── presence_updates-i.yaml │ │ ├── received_messages%3f-i.yaml │ │ ├── received_messages-i.yaml │ │ ├── reconnect-i.yaml │ │ ├── remove-i.yaml │ │ ├── roster-i.yaml │ │ ├── send%21-i.yaml │ │ ├── status-i.yaml │ │ ├── subscribed_to%3f-i.yaml │ │ └── subscription_requests-i.yaml │ └── cdesc-Jabber.yaml │ └── created.rid ├── gems ├── Shoulda-1.2.0 │ ├── Manifest.txt │ ├── README.txt │ ├── Rakefile │ ├── bin │ │ └── convert_file_to_shoulda │ ├── lib │ │ ├── proc_extensions.rb │ │ └── shoulda.rb │ └── test │ │ └── test_shoulda.rb ├── assert2-0.5.5 │ └── lib │ │ ├── assert2.rb │ │ └── assert2 │ │ ├── flunk.rb │ │ ├── ripdoc.html.erb │ │ ├── ripdoc.rb │ │ ├── ripper_reflector.rb │ │ ├── rjs.rb │ │ ├── rubynode_reflector.rb │ │ ├── rubynode_reflector.rb~ │ │ ├── xhtml.rb │ │ ├── xhtml.rb~ │ │ ├── xpath.rb │ │ └── xpath.rb~ ├── flexmock-0.8.6 │ ├── CHANGES │ ├── README │ ├── Rakefile │ ├── TAGS │ ├── doc │ │ ├── GoogleExample.rdoc │ │ └── releases │ │ │ ├── flexmock-0.4.0.rdoc │ │ │ ├── flexmock-0.4.1.rdoc │ │ │ ├── flexmock-0.4.2.rdoc │ │ │ ├── flexmock-0.4.3.rdoc │ │ │ ├── flexmock-0.5.0.rdoc │ │ │ ├── flexmock-0.5.1.rdoc │ │ │ ├── flexmock-0.6.0.rdoc │ │ │ ├── flexmock-0.6.1.rdoc │ │ │ ├── flexmock-0.6.2.rdoc │ │ │ ├── flexmock-0.6.3.rdoc │ │ │ ├── flexmock-0.6.4.rdoc │ │ │ ├── flexmock-0.7.0.rdoc │ │ │ ├── flexmock-0.7.1.rdoc │ │ │ ├── flexmock-0.8.0.rdoc │ │ │ ├── flexmock-0.8.2.rdoc │ │ │ ├── flexmock-0.8.3.rdoc │ │ │ ├── flexmock-0.8.4.rdoc │ │ │ └── flexmock-0.8.5.rdoc │ ├── flexmock.blurb │ ├── install.rb │ ├── lib │ │ ├── flexmock.rb │ │ └── flexmock │ │ │ ├── argument_matchers.rb │ │ │ ├── argument_types.rb │ │ │ ├── base.rb │ │ │ ├── composite.rb │ │ │ ├── core.rb │ │ │ ├── core_class_methods.rb │ │ │ ├── default_framework_adapter.rb │ │ │ ├── deprecated_methods.rb │ │ │ ├── errors.rb │ │ │ ├── expectation.rb │ │ │ ├── expectation_director.rb │ │ │ ├── mock_container.rb │ │ │ ├── noop.rb │ │ │ ├── ordering.rb │ │ │ ├── partial_mock.rb │ │ │ ├── rails.rb │ │ │ ├── rails │ │ │ └── view_mocking.rb │ │ │ ├── recorder.rb │ │ │ ├── rspec.rb │ │ │ ├── test_unit.rb │ │ │ ├── test_unit_integration.rb │ │ │ ├── undefined.rb │ │ │ └── validators.rb │ └── test │ │ ├── asserts.rb │ │ ├── redirect_error.rb │ │ ├── rspec_integration │ │ └── integration_spec.rb │ │ ├── test_aliasing.rb │ │ ├── test_container_methods.rb │ │ ├── test_default_framework_adapter.rb │ │ ├── test_demeter_mocking.rb │ │ ├── test_deprecated_methods.rb │ │ ├── test_examples_from_readme.rb │ │ ├── test_extended_should_receive.rb │ │ ├── test_flexmodel.rb │ │ ├── test_naming.rb │ │ ├── test_new_instances.rb │ │ ├── test_partial_mock.rb │ │ ├── test_rails_view_stub.rb │ │ ├── test_record_mode.rb │ │ ├── test_samples.rb │ │ ├── test_should_ignore_missing.rb │ │ ├── test_should_receive.rb │ │ ├── test_tu_integration.rb │ │ ├── test_undefined.rb │ │ └── test_unit_integration │ │ └── test_auto_test_unit.rb ├── xmpp4r-0.5 │ ├── CHANGELOG │ ├── COPYING │ ├── LICENSE │ ├── README.rdoc │ ├── README_ruby19.txt │ ├── Rakefile │ ├── data │ │ └── doc │ │ │ └── xmpp4r │ │ │ └── examples │ │ │ ├── advanced │ │ │ ├── adventure │ │ │ │ ├── README │ │ │ │ ├── adventure.rb │ │ │ │ ├── adventuremuc.rb │ │ │ │ ├── cube.xml │ │ │ │ ├── tower.xml │ │ │ │ └── world.rb │ │ │ ├── fileserve.conf │ │ │ ├── fileserve.rb │ │ │ ├── getonline.rb │ │ │ ├── gtkmucclient.rb │ │ │ ├── migrate.rb │ │ │ ├── minimuc.rb │ │ │ ├── pep-aggregator │ │ │ │ ├── index.xsl │ │ │ │ └── pep-aggregator.rb │ │ │ ├── recvfile.rb │ │ │ ├── rosterdiscovery.rb │ │ │ ├── sendfile.conf │ │ │ ├── sendfile.rb │ │ │ ├── shellmgr │ │ │ │ ├── shellmgr.rb │ │ │ │ ├── shellmgr_jabber.rb │ │ │ │ └── shellmgr_test.rb │ │ │ ├── versionpoll.rb │ │ │ ├── xmpping.rb │ │ │ └── xmppingrc.sample │ │ │ └── basic │ │ │ ├── change_password.rb │ │ │ ├── client.rb │ │ │ ├── component.rb │ │ │ ├── echo.rb │ │ │ ├── jabbersend.rb │ │ │ ├── mass_sender.rb │ │ │ ├── muc_owner_config.rb │ │ │ ├── mucinfo.rb │ │ │ ├── mucsimplebot.rb │ │ │ ├── register.rb │ │ │ ├── remove_registration.rb │ │ │ ├── roster.rb │ │ │ ├── rosterprint.rb │ │ │ ├── rosterrename.rb │ │ │ ├── rosterwatch.rb │ │ │ ├── send_vcard.rb │ │ │ ├── tune_client.rb │ │ │ ├── tune_server.rb │ │ │ └── versionbot.rb │ ├── lib │ │ ├── xmpp4r.rb │ │ └── xmpp4r │ │ │ ├── base64.rb │ │ │ ├── bytestreams.rb │ │ │ ├── bytestreams │ │ │ ├── helper │ │ │ │ ├── filetransfer.rb │ │ │ │ ├── ibb │ │ │ │ │ ├── base.rb │ │ │ │ │ ├── initiator.rb │ │ │ │ │ └── target.rb │ │ │ │ └── socks5bytestreams │ │ │ │ │ ├── base.rb │ │ │ │ │ ├── initiator.rb │ │ │ │ │ ├── server.rb │ │ │ │ │ ├── socks5.rb │ │ │ │ │ └── target.rb │ │ │ └── iq │ │ │ │ ├── bytestreams.rb │ │ │ │ └── si.rb │ │ │ ├── callbacks.rb │ │ │ ├── caps.rb │ │ │ ├── caps │ │ │ ├── c.rb │ │ │ └── helper │ │ │ │ ├── generator.rb │ │ │ │ └── helper.rb │ │ │ ├── client.rb │ │ │ ├── command │ │ │ ├── helper │ │ │ │ └── responder.rb │ │ │ └── iq │ │ │ │ └── command.rb │ │ │ ├── component.rb │ │ │ ├── connection.rb │ │ │ ├── dataforms.rb │ │ │ ├── dataforms │ │ │ └── x │ │ │ │ └── data.rb │ │ │ ├── debuglog.rb │ │ │ ├── delay.rb │ │ │ ├── delay │ │ │ └── x │ │ │ │ └── delay.rb │ │ │ ├── discovery.rb │ │ │ ├── discovery │ │ │ ├── helper │ │ │ │ ├── helper.rb │ │ │ │ └── responder.rb │ │ │ └── iq │ │ │ │ ├── discoinfo.rb │ │ │ │ └── discoitems.rb │ │ │ ├── errors.rb │ │ │ ├── feature_negotiation.rb │ │ │ ├── feature_negotiation │ │ │ └── iq │ │ │ │ └── feature.rb │ │ │ ├── framework │ │ │ ├── base.rb │ │ │ └── bot.rb │ │ │ ├── httpbinding.rb │ │ │ ├── httpbinding │ │ │ └── client.rb │ │ │ ├── idgenerator.rb │ │ │ ├── iq.rb │ │ │ ├── jid.rb │ │ │ ├── last.rb │ │ │ ├── last │ │ │ ├── helper │ │ │ │ └── helper.rb │ │ │ └── iq │ │ │ │ └── last.rb │ │ │ ├── location.rb │ │ │ ├── location │ │ │ ├── helper │ │ │ │ └── helper.rb │ │ │ └── location.rb │ │ │ ├── message.rb │ │ │ ├── muc.rb │ │ │ ├── muc │ │ │ ├── helper │ │ │ │ ├── mucbrowser.rb │ │ │ │ ├── mucclient.rb │ │ │ │ └── simplemucclient.rb │ │ │ ├── iq │ │ │ │ ├── mucadmin.rb │ │ │ │ ├── mucadminitem.rb │ │ │ │ └── mucowner.rb │ │ │ ├── item.rb │ │ │ └── x │ │ │ │ ├── muc.rb │ │ │ │ ├── mucuserinvite.rb │ │ │ │ └── mucuseritem.rb │ │ │ ├── presence.rb │ │ │ ├── pubsub.rb │ │ │ ├── pubsub │ │ │ ├── children │ │ │ │ ├── configuration.rb │ │ │ │ ├── event.rb │ │ │ │ ├── item.rb │ │ │ │ ├── items.rb │ │ │ │ ├── node_config.rb │ │ │ │ ├── publish.rb │ │ │ │ ├── retract.rb │ │ │ │ ├── subscription.rb │ │ │ │ ├── subscription_config.rb │ │ │ │ └── unsubscribe.rb │ │ │ ├── helper │ │ │ │ ├── nodebrowser.rb │ │ │ │ ├── nodehelper.rb │ │ │ │ ├── oauth_service_helper.rb │ │ │ │ └── servicehelper.rb │ │ │ └── iq │ │ │ │ └── pubsub.rb │ │ │ ├── query.rb │ │ │ ├── reliable.rb │ │ │ ├── rexmladdons.rb │ │ │ ├── roster.rb │ │ │ ├── roster │ │ │ ├── helper │ │ │ │ └── roster.rb │ │ │ ├── iq │ │ │ │ └── roster.rb │ │ │ └── x │ │ │ │ └── roster.rb │ │ │ ├── rpc.rb │ │ │ ├── rpc │ │ │ ├── helper │ │ │ │ ├── client.rb │ │ │ │ ├── server.rb │ │ │ │ └── xmlrpcaddons.rb │ │ │ └── iq │ │ │ │ └── rpc.rb │ │ │ ├── sasl.rb │ │ │ ├── semaphore.rb │ │ │ ├── stream.rb │ │ │ ├── streamparser.rb │ │ │ ├── test │ │ │ └── listener_mocker.rb │ │ │ ├── tune.rb │ │ │ ├── tune │ │ │ ├── helper │ │ │ │ └── helper.rb │ │ │ └── tune.rb │ │ │ ├── vcard.rb │ │ │ ├── vcard │ │ │ ├── helper │ │ │ │ └── vcard.rb │ │ │ └── iq │ │ │ │ └── vcard.rb │ │ │ ├── version.rb │ │ │ ├── version │ │ │ ├── helper │ │ │ │ ├── responder.rb │ │ │ │ └── simpleresponder.rb │ │ │ └── iq │ │ │ │ └── version.rb │ │ │ ├── x.rb │ │ │ ├── xhtml.rb │ │ │ ├── xhtml │ │ │ └── html.rb │ │ │ ├── xmpp4r.rb │ │ │ ├── xmppelement.rb │ │ │ └── xmppstanza.rb │ ├── setup.rb │ ├── test │ │ ├── bytestreams │ │ │ ├── tc_ibb.rb │ │ │ └── tc_socks5bytestreams.rb │ │ ├── caps │ │ │ └── tc_helper.rb │ │ ├── dataforms │ │ │ └── tc_data.rb │ │ ├── delay │ │ │ └── tc_xdelay.rb │ │ ├── discovery │ │ │ └── tc_responder.rb │ │ ├── last │ │ │ └── tc_helper.rb │ │ ├── lib │ │ │ ├── assert_equal_xml.rb │ │ │ └── clienttester.rb │ │ ├── muc │ │ │ ├── tc_muc_mucclient.rb │ │ │ ├── tc_muc_simplemucclient.rb │ │ │ └── tc_mucowner.rb │ │ ├── pubsub │ │ │ ├── tc_helper.rb │ │ │ ├── tc_nodeconfig.rb │ │ │ └── tc_subscriptionconfig.rb │ │ ├── reliable │ │ │ ├── tc_disconnect_cleanup.rb │ │ │ ├── tc_disconnect_exception.rb │ │ │ ├── tc_listener_mocked_test.rb │ │ │ └── tc_reliable_connection.rb │ │ ├── roster │ │ │ ├── tc_helper.rb │ │ │ ├── tc_iqqueryroster.rb │ │ │ └── tc_xroster.rb │ │ ├── rpc │ │ │ └── tc_helper.rb │ │ ├── tc_callbacks.rb │ │ ├── tc_class_names.rb │ │ ├── tc_client.rb │ │ ├── tc_errors.rb │ │ ├── tc_idgenerator.rb │ │ ├── tc_iq.rb │ │ ├── tc_iqquery.rb │ │ ├── tc_jid.rb │ │ ├── tc_message.rb │ │ ├── tc_presence.rb │ │ ├── tc_rexml.rb │ │ ├── tc_stream.rb │ │ ├── tc_streamComponent.rb │ │ ├── tc_streamError.rb │ │ ├── tc_streamSend.rb │ │ ├── tc_streamparser.rb │ │ ├── tc_xmppstanza.rb │ │ ├── ts_xmpp4r.rb │ │ ├── tune │ │ │ ├── tc_helper_recv.rb │ │ │ ├── tc_helper_send.rb │ │ │ └── tc_tune.rb │ │ ├── vcard │ │ │ ├── tc_helper.rb │ │ │ └── tc_iqvcard.rb │ │ ├── version │ │ │ ├── tc_helper.rb │ │ │ └── tc_iqqueryversion.rb │ │ └── xhtml │ │ │ └── tc_html.rb │ ├── tools │ │ ├── gen_requires.bash │ │ └── xmpp4r-gemspec-test.rb │ └── xmpp4r.gemspec └── xmpp4r-simple-0.8.8 │ ├── CHANGELOG │ ├── COPYING │ ├── README │ ├── lib │ └── xmpp4r-simple.rb │ └── test │ └── test_xmpp4r_simple.rb └── specifications ├── Shoulda-1.2.0.gemspec ├── assert2-0.5.5.gemspec ├── flexmock-0.8.6.gemspec ├── xmpp4r-0.5.gemspec └── xmpp4r-simple-0.8.8.gemspec /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/README.md -------------------------------------------------------------------------------- /bin/run-one: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/bin/run-one -------------------------------------------------------------------------------- /lib/mock-talk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/lib/mock-talk.rb -------------------------------------------------------------------------------- /src/11-passing-first-test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/11-passing-first-test/README.txt -------------------------------------------------------------------------------- /src/11-passing-first-test/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/11-passing-first-test/Rakefile -------------------------------------------------------------------------------- /src/11-passing-first-test/app/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/11-passing-first-test/app/main.rb -------------------------------------------------------------------------------- /src/11-passing-first-test/external/blocking-queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/11-passing-first-test/external/blocking-queue.rb -------------------------------------------------------------------------------- /src/11-passing-first-test/external/swing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/11-passing-first-test/external/swing.rb -------------------------------------------------------------------------------- /src/11-passing-first-test/external/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/11-passing-first-test/external/util.rb -------------------------------------------------------------------------------- /src/11-passing-first-test/external/xmpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/11-passing-first-test/external/xmpp.rb -------------------------------------------------------------------------------- /src/11-passing-first-test/features/basic.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/11-passing-first-test/features/basic.feature -------------------------------------------------------------------------------- /src/11-passing-first-test/features/step_definitions/all_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/11-passing-first-test/features/step_definitions/all_steps.rb -------------------------------------------------------------------------------- /src/11-passing-first-test/features/support/application-runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/11-passing-first-test/features/support/application-runner.rb -------------------------------------------------------------------------------- /src/11-passing-first-test/features/support/constants.rb: -------------------------------------------------------------------------------- 1 | ONE_ITEM = "item-54321" 2 | 3 | XMPP_HOSTNAME="localhost" 4 | 5 | -------------------------------------------------------------------------------- /src/11-passing-first-test/features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/11-passing-first-test/features/support/env.rb -------------------------------------------------------------------------------- /src/11-passing-first-test/features/support/fake-auction-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/11-passing-first-test/features/support/fake-auction-server.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/README.txt -------------------------------------------------------------------------------- /src/12-ready-to-bid/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/Rakefile -------------------------------------------------------------------------------- /src/12-ready-to-bid/app/auction-message-translator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/app/auction-message-translator.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/app/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/app/main.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/app/sol-text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/app/sol-text.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/external/blocking-queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/external/blocking-queue.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/external/swing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/external/swing.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/external/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/external/util.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/external/xmpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/external/xmpp.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/features/step_definitions/bidding_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/features/step_definitions/bidding_steps.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/features/step_definitions/setup_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/features/step_definitions/setup_steps.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/features/step_definitions/shutdown_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/features/step_definitions/shutdown_steps.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/features/support/application-runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/features/support/application-runner.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/features/support/auction-sniper-driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/features/support/auction-sniper-driver.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/features/support/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/features/support/constants.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/features/support/env.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/features/support/fake-auction-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/features/support/fake-auction-server.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/features/ways-to-lose.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/features/ways-to-lose.feature -------------------------------------------------------------------------------- /src/12-ready-to-bid/microtests/auction-message-translator-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/microtests/auction-message-translator-tests.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/microtests/sol-text-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/microtests/sol-text-tests.rb -------------------------------------------------------------------------------- /src/12-ready-to-bid/microtests/testutil.rb: -------------------------------------------------------------------------------- 1 | require 'mock-talk' 2 | -------------------------------------------------------------------------------- /src/12-ready-to-bid/sandbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/12-ready-to-bid/sandbox.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/README.txt -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/Rakefile -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/app/auction-message-translator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/app/auction-message-translator.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/app/auction-sniper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/app/auction-sniper.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/app/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/app/main.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/app/sniper-state-displayer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/app/sniper-state-displayer.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/app/sol-text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/app/sol-text.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/app/xmpp-auction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/app/xmpp-auction.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/external/blocking-queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/external/blocking-queue.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/external/swing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/external/swing.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/external/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/external/util.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/external/xmpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/external/xmpp.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/features/support/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/features/support/constants.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/features/support/env.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/features/ways-to-lose.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/features/ways-to-lose.feature -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/microtests/auction-sniper-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/microtests/auction-sniper-tests.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/microtests/sol-text-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/microtests/sol-text-tests.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/microtests/testutil.rb: -------------------------------------------------------------------------------- 1 | require 'mock-talk' 2 | -------------------------------------------------------------------------------- /src/13-make-a-bid-after-tidying/sandbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-after-tidying/sandbox.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-before-tidying/README.txt -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-before-tidying/Rakefile -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/app/auction-message-translator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-before-tidying/app/auction-message-translator.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/app/auction-sniper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-before-tidying/app/auction-sniper.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/app/auction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-before-tidying/app/auction.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/app/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-before-tidying/app/main.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/app/sol-text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-before-tidying/app/sol-text.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/external/blocking-queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-before-tidying/external/blocking-queue.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/external/swing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-before-tidying/external/swing.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/external/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-before-tidying/external/util.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/external/xmpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-before-tidying/external/xmpp.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/features/support/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-before-tidying/features/support/constants.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-before-tidying/features/support/env.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/features/ways-to-lose.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-before-tidying/features/ways-to-lose.feature -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/microtests/sol-text-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-before-tidying/microtests/sol-text-tests.rb -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/microtests/testutil.rb: -------------------------------------------------------------------------------- 1 | require 'mock-talk' 2 | -------------------------------------------------------------------------------- /src/13-make-a-bid-before-tidying/sandbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/13-make-a-bid-before-tidying/sandbox.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/README.txt -------------------------------------------------------------------------------- /src/14-sniper-wins/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/Rakefile -------------------------------------------------------------------------------- /src/14-sniper-wins/app/auction-event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/app/auction-event.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/app/auction-message-translator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/app/auction-message-translator.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/app/auction-sniper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/app/auction-sniper.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/app/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/app/main.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/app/sniper-state-displayer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/app/sniper-state-displayer.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/app/sol-text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/app/sol-text.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/app/xmpp-auction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/app/xmpp-auction.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/external/blocking-queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/external/blocking-queue.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/external/swing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/external/swing.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/external/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/external/util.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/external/xmpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/external/xmpp.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/features/responding-to-auction.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/features/responding-to-auction.feature -------------------------------------------------------------------------------- /src/14-sniper-wins/features/step_definitions/bidding_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/features/step_definitions/bidding_steps.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/features/step_definitions/composite_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/features/step_definitions/composite_steps.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/features/step_definitions/setup_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/features/step_definitions/setup_steps.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/features/step_definitions/shutdown_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/features/step_definitions/shutdown_steps.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/features/support/application-runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/features/support/application-runner.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/features/support/auction-sniper-driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/features/support/auction-sniper-driver.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/features/support/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/features/support/constants.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/features/support/env.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/features/support/fake-auction-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/features/support/fake-auction-server.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/microtests/auction-message-translator-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/microtests/auction-message-translator-tests.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/microtests/auction-sniper-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/microtests/auction-sniper-tests.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/microtests/sol-text-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/microtests/sol-text-tests.rb -------------------------------------------------------------------------------- /src/14-sniper-wins/microtests/testutil.rb: -------------------------------------------------------------------------------- 1 | require 'mock-talk' 2 | -------------------------------------------------------------------------------- /src/14-sniper-wins/sandbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/14-sniper-wins/sandbox.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/README.txt -------------------------------------------------------------------------------- /src/15-ui-through-page-158/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/Rakefile -------------------------------------------------------------------------------- /src/15-ui-through-page-158/app/auction-event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/app/auction-event.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/app/auction-message-translator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/app/auction-message-translator.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/app/auction-sniper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/app/auction-sniper.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/app/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/app/main.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/app/sniper-state-displayer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/app/sniper-state-displayer.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/app/snipers-table-model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/app/snipers-table-model.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/app/sol-text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/app/sol-text.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/app/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/app/ui.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/app/value-object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/app/value-object.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/app/xmpp-auction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/app/xmpp-auction.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/external/blocking-queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/external/blocking-queue.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/external/swing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/external/swing.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/external/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/external/util.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/external/xmpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/external/xmpp.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/features/responding-to-auction.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/features/responding-to-auction.feature -------------------------------------------------------------------------------- /src/15-ui-through-page-158/features/support/application-runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/features/support/application-runner.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/features/support/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/features/support/constants.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/features/support/env.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/features/support/fake-auction-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/features/support/fake-auction-server.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/microtests/auction-sniper-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/microtests/auction-sniper-tests.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/microtests/snipers-table-model-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/microtests/snipers-table-model-tests.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/microtests/sol-text-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/microtests/sol-text-tests.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/microtests/testutil.rb: -------------------------------------------------------------------------------- 1 | require 'mock-talk' 2 | -------------------------------------------------------------------------------- /src/15-ui-through-page-158/microtests/value-object-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/microtests/value-object-tests.rb -------------------------------------------------------------------------------- /src/15-ui-through-page-158/sandbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui-through-page-158/sandbox.rb -------------------------------------------------------------------------------- /src/15-ui/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/README.txt -------------------------------------------------------------------------------- /src/15-ui/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/Rakefile -------------------------------------------------------------------------------- /src/15-ui/app/auction-event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/app/auction-event.rb -------------------------------------------------------------------------------- /src/15-ui/app/auction-message-translator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/app/auction-message-translator.rb -------------------------------------------------------------------------------- /src/15-ui/app/auction-sniper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/app/auction-sniper.rb -------------------------------------------------------------------------------- /src/15-ui/app/column.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/app/column.rb -------------------------------------------------------------------------------- /src/15-ui/app/main-window.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/app/main-window.rb -------------------------------------------------------------------------------- /src/15-ui/app/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/app/main.rb -------------------------------------------------------------------------------- /src/15-ui/app/requires.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/app/requires.rb -------------------------------------------------------------------------------- /src/15-ui/app/sniper-snapshot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/app/sniper-snapshot.rb -------------------------------------------------------------------------------- /src/15-ui/app/sniper-state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/app/sniper-state.rb -------------------------------------------------------------------------------- /src/15-ui/app/snipers-table-model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/app/snipers-table-model.rb -------------------------------------------------------------------------------- /src/15-ui/app/sol-text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/app/sol-text.rb -------------------------------------------------------------------------------- /src/15-ui/app/swing-thread-sniper-listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/app/swing-thread-sniper-listener.rb -------------------------------------------------------------------------------- /src/15-ui/app/value-object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/app/value-object.rb -------------------------------------------------------------------------------- /src/15-ui/app/xmpp-auction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/app/xmpp-auction.rb -------------------------------------------------------------------------------- /src/15-ui/external/blocking-queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/external/blocking-queue.rb -------------------------------------------------------------------------------- /src/15-ui/external/swing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/external/swing.rb -------------------------------------------------------------------------------- /src/15-ui/external/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/external/util.rb -------------------------------------------------------------------------------- /src/15-ui/external/xmpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/external/xmpp.rb -------------------------------------------------------------------------------- /src/15-ui/features/responding-to-auction.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/features/responding-to-auction.feature -------------------------------------------------------------------------------- /src/15-ui/features/step_definitions/bidding_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/features/step_definitions/bidding_steps.rb -------------------------------------------------------------------------------- /src/15-ui/features/step_definitions/composite_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/features/step_definitions/composite_steps.rb -------------------------------------------------------------------------------- /src/15-ui/features/step_definitions/setup_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/features/step_definitions/setup_steps.rb -------------------------------------------------------------------------------- /src/15-ui/features/step_definitions/shutdown_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/features/step_definitions/shutdown_steps.rb -------------------------------------------------------------------------------- /src/15-ui/features/step_definitions/sniper_side_assertion_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/features/step_definitions/sniper_side_assertion_steps.rb -------------------------------------------------------------------------------- /src/15-ui/features/support/application-runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/features/support/application-runner.rb -------------------------------------------------------------------------------- /src/15-ui/features/support/auction-holder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/features/support/auction-holder.rb -------------------------------------------------------------------------------- /src/15-ui/features/support/auction-sniper-driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/features/support/auction-sniper-driver.rb -------------------------------------------------------------------------------- /src/15-ui/features/support/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/features/support/constants.rb -------------------------------------------------------------------------------- /src/15-ui/features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/features/support/env.rb -------------------------------------------------------------------------------- /src/15-ui/features/support/fake-auction-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/features/support/fake-auction-server.rb -------------------------------------------------------------------------------- /src/15-ui/microtests/auction-message-translator-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/microtests/auction-message-translator-tests.rb -------------------------------------------------------------------------------- /src/15-ui/microtests/auction-sniper-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/microtests/auction-sniper-tests.rb -------------------------------------------------------------------------------- /src/15-ui/microtests/column-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/microtests/column-tests.rb -------------------------------------------------------------------------------- /src/15-ui/microtests/sniper-snapshot-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/microtests/sniper-snapshot-tests.rb -------------------------------------------------------------------------------- /src/15-ui/microtests/snipers-table-model-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/microtests/snipers-table-model-tests.rb -------------------------------------------------------------------------------- /src/15-ui/microtests/sol-text-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/microtests/sol-text-tests.rb -------------------------------------------------------------------------------- /src/15-ui/microtests/testutil.rb: -------------------------------------------------------------------------------- 1 | require 'mock-talk' 2 | -------------------------------------------------------------------------------- /src/15-ui/microtests/value-object-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/microtests/value-object-tests.rb -------------------------------------------------------------------------------- /src/15-ui/sandbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/15-ui/sandbox.rb -------------------------------------------------------------------------------- /src/16-multiple/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/README.txt -------------------------------------------------------------------------------- /src/16-multiple/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/Rakefile -------------------------------------------------------------------------------- /src/16-multiple/app/auction-event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/app/auction-event.rb -------------------------------------------------------------------------------- /src/16-multiple/app/auction-message-translator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/app/auction-message-translator.rb -------------------------------------------------------------------------------- /src/16-multiple/app/auction-sniper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/app/auction-sniper.rb -------------------------------------------------------------------------------- /src/16-multiple/app/column.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/app/column.rb -------------------------------------------------------------------------------- /src/16-multiple/app/main-window.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/app/main-window.rb -------------------------------------------------------------------------------- /src/16-multiple/app/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/app/main.rb -------------------------------------------------------------------------------- /src/16-multiple/app/requires.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/app/requires.rb -------------------------------------------------------------------------------- /src/16-multiple/app/sniper-snapshot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/app/sniper-snapshot.rb -------------------------------------------------------------------------------- /src/16-multiple/app/sniper-state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/app/sniper-state.rb -------------------------------------------------------------------------------- /src/16-multiple/app/snipers-table-model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/app/snipers-table-model.rb -------------------------------------------------------------------------------- /src/16-multiple/app/sol-text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/app/sol-text.rb -------------------------------------------------------------------------------- /src/16-multiple/app/swing-thread-sniper-listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/app/swing-thread-sniper-listener.rb -------------------------------------------------------------------------------- /src/16-multiple/app/value-object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/app/value-object.rb -------------------------------------------------------------------------------- /src/16-multiple/app/xmpp-auction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/app/xmpp-auction.rb -------------------------------------------------------------------------------- /src/16-multiple/characterization-tests/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/characterization-tests/README.txt -------------------------------------------------------------------------------- /src/16-multiple/characterization-tests/testutil.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/characterization-tests/testutil.rb -------------------------------------------------------------------------------- /src/16-multiple/characterization-tests/xmpp-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/characterization-tests/xmpp-tests.rb -------------------------------------------------------------------------------- /src/16-multiple/external/blocking-queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/external/blocking-queue.rb -------------------------------------------------------------------------------- /src/16-multiple/external/swing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/external/swing.rb -------------------------------------------------------------------------------- /src/16-multiple/external/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/external/util.rb -------------------------------------------------------------------------------- /src/16-multiple/external/xmpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/external/xmpp.rb -------------------------------------------------------------------------------- /src/16-multiple/features/multiple-auctions.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/features/multiple-auctions.feature -------------------------------------------------------------------------------- /src/16-multiple/features/responding-to-auction.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/features/responding-to-auction.feature -------------------------------------------------------------------------------- /src/16-multiple/features/step_definitions/bidding_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/features/step_definitions/bidding_steps.rb -------------------------------------------------------------------------------- /src/16-multiple/features/step_definitions/composite_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/features/step_definitions/composite_steps.rb -------------------------------------------------------------------------------- /src/16-multiple/features/step_definitions/pending_steps.rb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/16-multiple/features/step_definitions/setup_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/features/step_definitions/setup_steps.rb -------------------------------------------------------------------------------- /src/16-multiple/features/step_definitions/shutdown_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/features/step_definitions/shutdown_steps.rb -------------------------------------------------------------------------------- /src/16-multiple/features/support/application-runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/features/support/application-runner.rb -------------------------------------------------------------------------------- /src/16-multiple/features/support/auction-holder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/features/support/auction-holder.rb -------------------------------------------------------------------------------- /src/16-multiple/features/support/auction-sniper-driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/features/support/auction-sniper-driver.rb -------------------------------------------------------------------------------- /src/16-multiple/features/support/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/features/support/constants.rb -------------------------------------------------------------------------------- /src/16-multiple/features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/features/support/env.rb -------------------------------------------------------------------------------- /src/16-multiple/features/support/fake-auction-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/features/support/fake-auction-server.rb -------------------------------------------------------------------------------- /src/16-multiple/microtests/auction-message-translator-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/microtests/auction-message-translator-tests.rb -------------------------------------------------------------------------------- /src/16-multiple/microtests/auction-sniper-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/microtests/auction-sniper-tests.rb -------------------------------------------------------------------------------- /src/16-multiple/microtests/column-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/microtests/column-tests.rb -------------------------------------------------------------------------------- /src/16-multiple/microtests/sniper-snapshot-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/microtests/sniper-snapshot-tests.rb -------------------------------------------------------------------------------- /src/16-multiple/microtests/snipers-table-model-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/microtests/snipers-table-model-tests.rb -------------------------------------------------------------------------------- /src/16-multiple/microtests/sol-text-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/microtests/sol-text-tests.rb -------------------------------------------------------------------------------- /src/16-multiple/microtests/testutil.rb: -------------------------------------------------------------------------------- 1 | require 'mock-talk' 2 | -------------------------------------------------------------------------------- /src/16-multiple/microtests/value-object-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/microtests/value-object-tests.rb -------------------------------------------------------------------------------- /src/16-multiple/sandbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/16-multiple/sandbox.rb -------------------------------------------------------------------------------- /src/3-introduction/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/3-introduction/README -------------------------------------------------------------------------------- /src/3-introduction/p26-passing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/3-introduction/p26-passing.rb -------------------------------------------------------------------------------- /src/3-introduction/p26.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/src/3-introduction/p26.rb -------------------------------------------------------------------------------- /third-party/gem/bin/convert_file_to_shoulda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/bin/convert_file_to_shoulda -------------------------------------------------------------------------------- /third-party/gem/cache/Shoulda-1.2.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/cache/Shoulda-1.2.0.gem -------------------------------------------------------------------------------- /third-party/gem/cache/assert2-0.5.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/cache/assert2-0.5.5.gem -------------------------------------------------------------------------------- /third-party/gem/cache/flexmock-0.8.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/cache/flexmock-0.8.6.gem -------------------------------------------------------------------------------- /third-party/gem/cache/xmpp4r-0.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/cache/xmpp4r-0.5.gem -------------------------------------------------------------------------------- /third-party/gem/cache/xmpp4r-simple-0.8.8.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/cache/xmpp4r-simple-0.8.8.gem -------------------------------------------------------------------------------- /third-party/gem/doc/Shoulda-1.2.0/rdoc/classes/Thoughtbot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/Shoulda-1.2.0/rdoc/classes/Thoughtbot.html -------------------------------------------------------------------------------- /third-party/gem/doc/Shoulda-1.2.0/rdoc/created.rid: -------------------------------------------------------------------------------- 1 | Mon, 09 Nov 2009 15:25:43 -0600 2 | -------------------------------------------------------------------------------- /third-party/gem/doc/Shoulda-1.2.0/rdoc/files/Manifest_txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/Shoulda-1.2.0/rdoc/files/Manifest_txt.html -------------------------------------------------------------------------------- /third-party/gem/doc/Shoulda-1.2.0/rdoc/files/README_txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/Shoulda-1.2.0/rdoc/files/README_txt.html -------------------------------------------------------------------------------- /third-party/gem/doc/Shoulda-1.2.0/rdoc/files/lib/shoulda_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/Shoulda-1.2.0/rdoc/files/lib/shoulda_rb.html -------------------------------------------------------------------------------- /third-party/gem/doc/Shoulda-1.2.0/rdoc/fr_class_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/Shoulda-1.2.0/rdoc/fr_class_index.html -------------------------------------------------------------------------------- /third-party/gem/doc/Shoulda-1.2.0/rdoc/fr_file_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/Shoulda-1.2.0/rdoc/fr_file_index.html -------------------------------------------------------------------------------- /third-party/gem/doc/Shoulda-1.2.0/rdoc/fr_method_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/Shoulda-1.2.0/rdoc/fr_method_index.html -------------------------------------------------------------------------------- /third-party/gem/doc/Shoulda-1.2.0/rdoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/Shoulda-1.2.0/rdoc/index.html -------------------------------------------------------------------------------- /third-party/gem/doc/Shoulda-1.2.0/rdoc/rdoc-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/Shoulda-1.2.0/rdoc/rdoc-style.css -------------------------------------------------------------------------------- /third-party/gem/doc/Shoulda-1.2.0/ri/Proc/cdesc-Proc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/Shoulda-1.2.0/ri/Proc/cdesc-Proc.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/Shoulda-1.2.0/ri/Test/cdesc-Test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/Shoulda-1.2.0/ri/Test/cdesc-Test.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/Shoulda-1.2.0/ri/created.rid: -------------------------------------------------------------------------------- 1 | Mon, 09 Nov 2009 15:25:43 -0600 2 | -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/rdoc/classes/FlexMock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/rdoc/classes/FlexMock.html -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/rdoc/classes/Module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/rdoc/classes/Module.html -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/rdoc/classes/Test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/rdoc/classes/Test.html -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/rdoc/classes/Test/Unit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/rdoc/classes/Test/Unit.html -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/rdoc/created.rid: -------------------------------------------------------------------------------- 1 | Mon, 09 Nov 2009 15:24:28 -0600 2 | -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/rdoc/files/CHANGES.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/rdoc/files/CHANGES.html -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/rdoc/files/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/rdoc/files/README.html -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/rdoc/files/lib/flexmock_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/rdoc/files/lib/flexmock_rb.html -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/rdoc/fr_class_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/rdoc/fr_class_index.html -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/rdoc/fr_file_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/rdoc/fr_file_index.html -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/rdoc/fr_method_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/rdoc/fr_method_index.html -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/rdoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/rdoc/index.html -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/rdoc/rdoc-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/rdoc/rdoc-style.css -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/ri/FlexMock/Recorder/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/ri/FlexMock/Recorder/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/ri/FlexMock/by_default-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/ri/FlexMock/by_default-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/ri/FlexMock/cdesc-FlexMock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/ri/FlexMock/cdesc-FlexMock.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/ri/FlexMock/inspect-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/ri/FlexMock/inspect-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/ri/FlexMock/method-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/ri/FlexMock/method-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/ri/FlexMock/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/ri/FlexMock/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/ri/FlexMock/undefined-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/ri/FlexMock/undefined-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/ri/FlexMock/use-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/ri/FlexMock/use-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/ri/Module/cdesc-Module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/ri/Module/cdesc-Module.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/ri/Test/Unit/cdesc-Unit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/ri/Test/Unit/cdesc-Unit.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/ri/Test/cdesc-Test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/flexmock-0.8.6/ri/Test/cdesc-Test.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/flexmock-0.8.6/ri/created.rid: -------------------------------------------------------------------------------- 1 | Mon, 09 Nov 2009 15:24:26 -0600 2 | -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Base64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Base64.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Callback.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Caps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Caps.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Caps/C.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Caps/C.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Client.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Command.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Component.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Connection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Connection.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Dataforms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Dataforms.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Delay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Delay.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Discovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Discovery.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Framework.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Framework.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Iq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Iq.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/IqQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/IqQuery.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/JID.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/JID.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/MUC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/MUC.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/MUC/XMUC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/MUC/XMUC.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Message.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Presence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Presence.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/PubSub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/PubSub.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/RPC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/RPC.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/RPC/Client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/RPC/Client.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/RPC/Server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/RPC/Server.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Reliable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Reliable.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Roster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Roster.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/SASL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/SASL.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/SASL/Base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/SASL/Base.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/SASL/Plain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/SASL/Plain.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Semaphore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Semaphore.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Stream.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Test.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/UserTune.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/UserTune.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Vcard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Vcard.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/Version.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/X.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/X.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/XHTML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/XHTML.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/XHTML/Body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/XHTML/Body.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/XHTML/HTML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/XHTML/HTML.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/XMPPStanza.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/XMPPStanza.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/XParent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/Jabber/XParent.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/REXML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/REXML.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/REXML/Element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/REXML/Element.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/REXML/IOSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/REXML/IOSource.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/XMLRPC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/XMLRPC.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/classes/XMLRPC/Create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/classes/XMLRPC/Create.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/created.rid: -------------------------------------------------------------------------------- 1 | Wed, 09 Dec 2009 14:26:56 -0600 2 | -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/CHANGELOG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/CHANGELOG.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/COPYING.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/COPYING.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/LICENSE.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/README_rdoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/README_rdoc.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/README_ruby19_txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/README_ruby19_txt.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/caps_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/caps_rb.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/delay_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/delay_rb.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/iq_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/iq_rb.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/jid_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/jid_rb.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/last_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/last_rb.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/muc_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/muc_rb.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/query_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/query_rb.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/rpc_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/rpc_rb.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/sasl_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/sasl_rb.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/tune_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/tune_rb.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/vcard_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/vcard_rb.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/x_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/x_rb.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/xhtml_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r/xhtml_rb.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/files/lib/xmpp4r_rb.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/fr_class_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/fr_class_index.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/fr_file_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/fr_file_index.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/fr_method_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/fr_method_index.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/index.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/rdoc/rdoc-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/rdoc/rdoc-style.css -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Base64/cdesc-Base64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Base64/cdesc-Base64.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Base64/decode64-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Base64/decode64-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Base64/encode64-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Base64/encode64-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Callback/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Callback/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Callback/to_s-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Callback/to_s-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/CallbackList/add-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/CallbackList/add-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/CallbackList/each-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/CallbackList/each-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/CallbackList/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/CallbackList/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/C/cdesc-C.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/C/cdesc-C.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/C/ext-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/C/ext-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/C/hash-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/C/hash-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/C/legacy%3f-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/C/legacy%3f-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/C/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/C/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/C/node-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/C/node-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/C/ver-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/C/ver-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/Helper/c-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/Helper/c-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/Helper/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/Helper/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/Helper/ver-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/Helper/ver-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/cdesc-Caps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/cdesc-Caps.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/generate_ver-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Caps/generate_ver-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/auth-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/auth-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/auth_sasl-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/auth_sasl-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/bind-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/bind-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/cdesc-Client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/cdesc-Client.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/close-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/close-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/connect-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/connect-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/password%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/password%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/register-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/register-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/start-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/start-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/unbind-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Client/unbind-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Component/auth-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Component/auth-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Component/close-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Component/close-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Component/connect-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Component/connect-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Component/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Component/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Component/start-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Component/start-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Connection/connect-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Connection/connect-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Connection/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Connection/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Connection/start-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Connection/start-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Delay/XDelay/from-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Delay/XDelay/from-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Delay/XDelay/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Delay/XDelay/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Delay/XDelay/stamp-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Delay/XDelay/stamp-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Delay/cdesc-Delay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Delay/cdesc-Delay.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Discovery/Item/jid-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Discovery/Item/jid-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Discovery/Item/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Discovery/Item/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/ErrorResponse/code-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/ErrorResponse/code-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/ErrorResponse/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/ErrorResponse/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/ErrorResponse/text-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/ErrorResponse/text-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/ErrorResponse/type-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/ErrorResponse/type-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Framework/Base/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Framework/Base/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Framework/Bot/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Framework/Bot/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/IdGenerator/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/IdGenerator/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/cdesc-Iq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/cdesc-Iq.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/command-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/command-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/new_authset-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/new_authset-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/new_browseget-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/new_browseget-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/new_query-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/new_query-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/new_register-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/new_register-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/new_registerget-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/new_registerget-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/new_rosterget-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/new_rosterget-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/new_rosterset-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/new_rosterset-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/pubsub-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/pubsub-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/query%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/query%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/query-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/query-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/queryns-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/queryns-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/set_type-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/set_type-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/type%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/type%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/type-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/type-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/vcard-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Iq/vcard-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/%3c%3d%3e-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/%3c%3d%3e-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/%3d%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/%3d%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/bare%21-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/bare%21-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/bare-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/bare-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/bared%3f-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/bared%3f-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/cdesc-JID.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/cdesc-JID.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/domain%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/domain%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/domain-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/domain-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/empty%3f-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/empty%3f-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/eql%3f-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/eql%3f-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/escape-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/escape-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/hash-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/hash-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/node%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/node%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/node-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/node-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/resource%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/resource%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/resource-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/resource-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/strip%21-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/strip%21-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/strip-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/strip-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/stripped%3f-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/stripped%3f-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/to_s-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/JID/to_s-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/MUCBrowser/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/MUCBrowser/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/MUCClient/exit-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/MUCClient/exit-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/MUCClient/join-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/MUCClient/join-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/MUCClient/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/MUCClient/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/MUCClient/nick-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/MUCClient/nick-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/MUCClient/room-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/MUCClient/room-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/MUCClient/send-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/MUCClient/send-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/UserItem/jid-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/UserItem/jid-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/UserItem/nick-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/UserItem/nick-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/UserItem/role-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/UserItem/role-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/XMUC/cdesc-XMUC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/XMUC/cdesc-XMUC.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/XMUC/password-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/XMUC/password-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/XMUCUser/items-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/XMUCUser/items-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/cdesc-MUC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/MUC/cdesc-MUC.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/body%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/body%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/body-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/body-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/chat_state-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/chat_state-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/set_body-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/set_body-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/set_thread-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/set_thread-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/set_type-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/set_type-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/subject%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/subject%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/subject-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/subject-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/thread%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/thread%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/thread-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/thread-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/type%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/type%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/type-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Message/type-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/%3c%3d%3e-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/%3c%3d%3e-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/priority-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/priority-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/set_show-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/set_show-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/set_type-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/set_type-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/show%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/show%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/show-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/show-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/status%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/status%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/status-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/status-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/type%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/type%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/type-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Presence/type-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/PubSub/Item/id%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/PubSub/Item/id%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/PubSub/Item/id-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/PubSub/Item/id-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/PubSub/Item/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/PubSub/Item/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/PubSub/Items/each-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/PubSub/Items/each-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/RPC/Client/call-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/RPC/Client/call-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/RPC/Client/call2-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/RPC/Client/call2-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/RPC/Client/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/RPC/Client/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/RPC/Server/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/RPC/Server/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/RPC/cdesc-RPC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/RPC/cdesc-RPC.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/SASL/Base/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/SASL/Base/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/SASL/Plain/auth-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/SASL/Plain/auth-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/SASL/cdesc-SASL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/SASL/cdesc-SASL.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/SASL/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/SASL/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Semaphore/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Semaphore/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Semaphore/run-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Semaphore/run-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Semaphore/wait-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Semaphore/wait-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Stream/close%21-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Stream/close%21-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Stream/close-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Stream/close-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Stream/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Stream/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Stream/receive-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Stream/receive-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Stream/send-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Stream/send-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Stream/send_data-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Stream/send_data-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Stream/start-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Stream/start-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Stream/stop-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Stream/stop-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/StreamParser/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/StreamParser/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Test/cdesc-Test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Test/cdesc-Test.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Vcard/Helper/get-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Vcard/Helper/get-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Vcard/Helper/get-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Vcard/Helper/get-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Vcard/Helper/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Vcard/Helper/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Vcard/Helper/set-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Vcard/Helper/set-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Vcard/Helper/set-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Vcard/Helper/set-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Vcard/cdesc-Vcard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/Vcard/cdesc-Vcard.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/X/cdesc-X.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/X/cdesc-X.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XHTML/HTML/body-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XHTML/HTML/body-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XHTML/HTML/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XHTML/HTML/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XHTML/cdesc-XHTML.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XHTML/cdesc-XHTML.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XMPPElement/new-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XMPPElement/new-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XMPPStanza/error-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XMPPStanza/error-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XMPPStanza/from-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XMPPStanza/from-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XMPPStanza/id%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XMPPStanza/id%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XMPPStanza/id-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XMPPStanza/id-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XMPPStanza/to%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XMPPStanza/to%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XMPPStanza/to-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XMPPStanza/to-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XMPPStanza/type-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XMPPStanza/type-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XParent/x-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/XParent/x-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/cdesc-Jabber.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/cdesc-Jabber.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/debug%3d-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/debug%3d-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/debug-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/debug-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/debuglog-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/debuglog-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/logger%3d-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/logger%3d-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/logger-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/logger-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/warnings%3d-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/warnings%3d-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/Jabber/warnlog-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/Jabber/warnlog-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/REXML/Element/%3d%3d-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/REXML/Element/%3d%3d-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/REXML/Element/import-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/REXML/Element/import-c.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/REXML/Element/import-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/REXML/Element/import-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/REXML/Element/typed_add-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/REXML/Element/typed_add-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/REXML/IOSource/position-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/REXML/IOSource/position-i.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/REXML/cdesc-REXML.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/REXML/cdesc-REXML.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/XMLRPC/cdesc-XMLRPC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-0.5/ri/XMLRPC/cdesc-XMLRPC.yaml -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-0.5/ri/created.rid: -------------------------------------------------------------------------------- 1 | Wed, 09 Dec 2009 14:26:44 -0600 2 | -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-simple-0.8.8/rdoc/classes/Jabber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-simple-0.8.8/rdoc/classes/Jabber.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-simple-0.8.8/rdoc/created.rid: -------------------------------------------------------------------------------- 1 | Wed, 09 Dec 2009 14:36:43 -0600 2 | -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-simple-0.8.8/rdoc/files/COPYING.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-simple-0.8.8/rdoc/files/COPYING.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-simple-0.8.8/rdoc/files/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-simple-0.8.8/rdoc/files/README.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-simple-0.8.8/rdoc/fr_class_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-simple-0.8.8/rdoc/fr_class_index.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-simple-0.8.8/rdoc/fr_file_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-simple-0.8.8/rdoc/fr_file_index.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-simple-0.8.8/rdoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-simple-0.8.8/rdoc/index.html -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-simple-0.8.8/rdoc/rdoc-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/doc/xmpp4r-simple-0.8.8/rdoc/rdoc-style.css -------------------------------------------------------------------------------- /third-party/gem/doc/xmpp4r-simple-0.8.8/ri/created.rid: -------------------------------------------------------------------------------- 1 | Wed, 09 Dec 2009 14:36:43 -0600 2 | -------------------------------------------------------------------------------- /third-party/gem/gems/Shoulda-1.2.0/Manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/Shoulda-1.2.0/Manifest.txt -------------------------------------------------------------------------------- /third-party/gem/gems/Shoulda-1.2.0/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/Shoulda-1.2.0/README.txt -------------------------------------------------------------------------------- /third-party/gem/gems/Shoulda-1.2.0/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/Shoulda-1.2.0/Rakefile -------------------------------------------------------------------------------- /third-party/gem/gems/Shoulda-1.2.0/bin/convert_file_to_shoulda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/Shoulda-1.2.0/bin/convert_file_to_shoulda -------------------------------------------------------------------------------- /third-party/gem/gems/Shoulda-1.2.0/lib/proc_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/Shoulda-1.2.0/lib/proc_extensions.rb -------------------------------------------------------------------------------- /third-party/gem/gems/Shoulda-1.2.0/lib/shoulda.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/Shoulda-1.2.0/lib/shoulda.rb -------------------------------------------------------------------------------- /third-party/gem/gems/Shoulda-1.2.0/test/test_shoulda.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/Shoulda-1.2.0/test/test_shoulda.rb -------------------------------------------------------------------------------- /third-party/gem/gems/assert2-0.5.5/lib/assert2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/assert2-0.5.5/lib/assert2.rb -------------------------------------------------------------------------------- /third-party/gem/gems/assert2-0.5.5/lib/assert2/flunk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/assert2-0.5.5/lib/assert2/flunk.rb -------------------------------------------------------------------------------- /third-party/gem/gems/assert2-0.5.5/lib/assert2/ripdoc.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/assert2-0.5.5/lib/assert2/ripdoc.html.erb -------------------------------------------------------------------------------- /third-party/gem/gems/assert2-0.5.5/lib/assert2/ripdoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/assert2-0.5.5/lib/assert2/ripdoc.rb -------------------------------------------------------------------------------- /third-party/gem/gems/assert2-0.5.5/lib/assert2/rjs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/assert2-0.5.5/lib/assert2/rjs.rb -------------------------------------------------------------------------------- /third-party/gem/gems/assert2-0.5.5/lib/assert2/xhtml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/assert2-0.5.5/lib/assert2/xhtml.rb -------------------------------------------------------------------------------- /third-party/gem/gems/assert2-0.5.5/lib/assert2/xhtml.rb~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/assert2-0.5.5/lib/assert2/xhtml.rb~ -------------------------------------------------------------------------------- /third-party/gem/gems/assert2-0.5.5/lib/assert2/xpath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/assert2-0.5.5/lib/assert2/xpath.rb -------------------------------------------------------------------------------- /third-party/gem/gems/assert2-0.5.5/lib/assert2/xpath.rb~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/assert2-0.5.5/lib/assert2/xpath.rb~ -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/CHANGES -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/README -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/Rakefile -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/TAGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/TAGS -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/doc/GoogleExample.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/doc/GoogleExample.rdoc -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/flexmock.blurb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/flexmock.blurb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/install.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/lib/flexmock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/lib/flexmock.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/lib/flexmock/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/lib/flexmock/base.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/lib/flexmock/composite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/lib/flexmock/composite.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/lib/flexmock/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/lib/flexmock/core.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/lib/flexmock/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/lib/flexmock/errors.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/lib/flexmock/expectation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/lib/flexmock/expectation.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/lib/flexmock/noop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/lib/flexmock/noop.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/lib/flexmock/ordering.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/lib/flexmock/ordering.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/lib/flexmock/partial_mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/lib/flexmock/partial_mock.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/lib/flexmock/rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/lib/flexmock/rails.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/lib/flexmock/recorder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/lib/flexmock/recorder.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/lib/flexmock/rspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/lib/flexmock/rspec.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/lib/flexmock/test_unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/lib/flexmock/test_unit.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/lib/flexmock/undefined.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/lib/flexmock/undefined.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/lib/flexmock/validators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/lib/flexmock/validators.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/test/asserts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/test/asserts.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/test/redirect_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/test/redirect_error.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/test/test_aliasing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/test/test_aliasing.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/test/test_demeter_mocking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/test/test_demeter_mocking.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/test/test_flexmodel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/test/test_flexmodel.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/test/test_naming.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/test/test_naming.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/test/test_new_instances.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/test/test_new_instances.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/test/test_partial_mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/test/test_partial_mock.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/test/test_rails_view_stub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/test/test_rails_view_stub.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/test/test_record_mode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/test/test_record_mode.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/test/test_samples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/test/test_samples.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/test/test_should_receive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/test/test_should_receive.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/test/test_tu_integration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/test/test_tu_integration.rb -------------------------------------------------------------------------------- /third-party/gem/gems/flexmock-0.8.6/test/test_undefined.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/flexmock-0.8.6/test/test_undefined.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/CHANGELOG -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/COPYING -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/LICENSE -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/README.rdoc -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/README_ruby19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/README_ruby19.txt -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/Rakefile -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/base64.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/base64.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/bytestreams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/bytestreams.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/bytestreams/iq/si.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/bytestreams/iq/si.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/callbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/callbacks.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/caps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/caps.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/caps/c.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/caps/c.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/caps/helper/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/caps/helper/helper.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/client.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/command/iq/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/command/iq/command.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/component.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/connection.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/dataforms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/dataforms.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/dataforms/x/data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/dataforms/x/data.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/debuglog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/debuglog.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/delay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/delay.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/delay/x/delay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/delay/x/delay.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/discovery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/discovery.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/errors.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/framework/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/framework/base.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/framework/bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/framework/bot.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/httpbinding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/httpbinding.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/httpbinding/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/httpbinding/client.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/idgenerator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/idgenerator.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/iq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/iq.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/jid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/jid.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/last.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/last.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/last/helper/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/last/helper/helper.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/last/iq/last.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/last/iq/last.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/location.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/location/location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/location/location.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/message.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/muc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/muc.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/muc/iq/mucadmin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/muc/iq/mucadmin.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/muc/iq/mucowner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/muc/iq/mucowner.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/muc/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/muc/item.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/muc/x/muc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/muc/x/muc.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/muc/x/mucuseritem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/muc/x/mucuseritem.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/presence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/presence.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/pubsub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/pubsub.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/pubsub/iq/pubsub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/pubsub/iq/pubsub.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/query.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/reliable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/reliable.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/rexmladdons.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/rexmladdons.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/roster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/roster.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/roster/iq/roster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/roster/iq/roster.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/roster/x/roster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/roster/x/roster.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/rpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/rpc.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/rpc/helper/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/rpc/helper/client.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/rpc/helper/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/rpc/helper/server.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/rpc/iq/rpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/rpc/iq/rpc.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/sasl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/sasl.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/semaphore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/semaphore.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/stream.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/streamparser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/streamparser.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/tune.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/tune.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/tune/helper/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/tune/helper/helper.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/tune/tune.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/tune/tune.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/vcard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/vcard.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/vcard/helper/vcard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/vcard/helper/vcard.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/vcard/iq/vcard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/vcard/iq/vcard.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/version.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/version/iq/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/version/iq/version.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/x.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/x.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/xhtml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/xhtml.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/xhtml/html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/xhtml/html.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/xmpp4r.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/xmpp4r.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/xmppelement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/xmppelement.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/xmppstanza.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/lib/xmpp4r/xmppstanza.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/setup.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/bytestreams/tc_ibb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/bytestreams/tc_ibb.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/caps/tc_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/caps/tc_helper.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/dataforms/tc_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/dataforms/tc_data.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/delay/tc_xdelay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/delay/tc_xdelay.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/discovery/tc_responder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/discovery/tc_responder.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/last/tc_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/last/tc_helper.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/lib/assert_equal_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/lib/assert_equal_xml.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/lib/clienttester.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/lib/clienttester.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/muc/tc_muc_mucclient.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/muc/tc_muc_mucclient.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/muc/tc_mucowner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/muc/tc_mucowner.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/pubsub/tc_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/pubsub/tc_helper.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/pubsub/tc_nodeconfig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/pubsub/tc_nodeconfig.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/roster/tc_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/roster/tc_helper.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/roster/tc_iqqueryroster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/roster/tc_iqqueryroster.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/roster/tc_xroster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/roster/tc_xroster.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/rpc/tc_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/rpc/tc_helper.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_callbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_callbacks.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_class_names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_class_names.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_client.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_errors.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_idgenerator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_idgenerator.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_iq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_iq.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_iqquery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_iqquery.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_jid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_jid.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_message.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_presence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_presence.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_rexml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_rexml.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_stream.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_streamComponent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_streamComponent.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_streamError.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_streamError.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_streamSend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_streamSend.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_streamparser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_streamparser.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tc_xmppstanza.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tc_xmppstanza.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/ts_xmpp4r.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/ts_xmpp4r.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tune/tc_helper_recv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tune/tc_helper_recv.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tune/tc_helper_send.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tune/tc_helper_send.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/tune/tc_tune.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/tune/tc_tune.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/vcard/tc_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/vcard/tc_helper.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/vcard/tc_iqvcard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/vcard/tc_iqvcard.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/version/tc_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/version/tc_helper.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/test/xhtml/tc_html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/test/xhtml/tc_html.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/tools/gen_requires.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/tools/gen_requires.bash -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/tools/xmpp4r-gemspec-test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/tools/xmpp4r-gemspec-test.rb -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-0.5/xmpp4r.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-0.5/xmpp4r.gemspec -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-simple-0.8.8/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-simple-0.8.8/CHANGELOG -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-simple-0.8.8/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-simple-0.8.8/COPYING -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-simple-0.8.8/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-simple-0.8.8/README -------------------------------------------------------------------------------- /third-party/gem/gems/xmpp4r-simple-0.8.8/lib/xmpp4r-simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/gems/xmpp4r-simple-0.8.8/lib/xmpp4r-simple.rb -------------------------------------------------------------------------------- /third-party/gem/specifications/Shoulda-1.2.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/specifications/Shoulda-1.2.0.gemspec -------------------------------------------------------------------------------- /third-party/gem/specifications/assert2-0.5.5.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/specifications/assert2-0.5.5.gemspec -------------------------------------------------------------------------------- /third-party/gem/specifications/flexmock-0.8.6.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/specifications/flexmock-0.8.6.gemspec -------------------------------------------------------------------------------- /third-party/gem/specifications/xmpp4r-0.5.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/specifications/xmpp4r-0.5.gemspec -------------------------------------------------------------------------------- /third-party/gem/specifications/xmpp4r-simple-0.8.8.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marick/growing-oo-software-in-ruby/HEAD/third-party/gem/specifications/xmpp4r-simple-0.8.8.gemspec --------------------------------------------------------------------------------