# -*- encoding: utf-8 -*- # stub: amqp 1.1.4 ruby lib Gem::Specification.new do |s| s.name = "amqp".freeze s.version = "1.1.4".freeze s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= s.require_paths = ["lib".freeze] s.authors = ["Aman Gupta".freeze, "Jakub Stastny aka botanicus".freeze, "Michael S. Klishin".freeze] s.date = "2013-11-26" s.description = "Widely used, feature-rich asynchronous RabbitMQ client with batteries included.".freeze s.email = ["michael@novemberain.com".freeze, "stastny@101ideas.cz".freeze] s.extra_rdoc_files = ["README.md".freeze, "docs/08Migration.textile".freeze, "docs/AMQP091ModelExplained.textile".freeze, "docs/Bindings.textile".freeze, "docs/Clustering.textile".freeze, "docs/ConnectingToTheBroker.textile".freeze, "docs/ConnectionEncryptionWithTLS.textile".freeze, "docs/DocumentationGuidesIndex.textile".freeze, "docs/Durability.textile".freeze, "docs/ErrorHandling.textile".freeze, "docs/Exchanges.textile".freeze, "docs/GettingStarted.textile".freeze, "docs/PatternsAndUseCases.textile".freeze, "docs/Queues.textile".freeze, "docs/RabbitMQVersions.textile".freeze, "docs/RunningTests.textile".freeze, "docs/TestingWithEventedSpec.textile".freeze, "docs/Troubleshooting.textile".freeze, "docs/VendorSpecificExtensions.textile".freeze] s.files = [".gitignore".freeze, ".rspec".freeze, ".ruby-version".freeze, ".travis.yml".freeze, ".yardopts".freeze, "ChangeLog.md".freeze, "Gemfile".freeze, "README.md".freeze, "Rakefile".freeze, "amqp.gemspec".freeze, "bin/ci/before_build.sh".freeze, "bin/cleanify.rb".freeze, "bin/docup".freeze, "bin/irb".freeze, "bin/set_test_suite_realms_up.sh".freeze, "docs/08Migration.textile".freeze, "docs/AMQP091ModelExplained.textile".freeze, "docs/Bindings.textile".freeze, "docs/Clustering.textile".freeze, "docs/ConnectingToTheBroker.textile".freeze, "docs/ConnectionEncryptionWithTLS.textile".freeze, "docs/DocumentationGuidesIndex.textile".freeze, "docs/Durability.textile".freeze, "docs/ErrorHandling.textile".freeze, "docs/Exchanges.textile".freeze, "docs/GettingStarted.textile".freeze, "docs/PatternsAndUseCases.textile".freeze, "docs/Queues.textile".freeze, "docs/RabbitMQVersions.textile".freeze, "docs/RunningTests.textile".freeze, "docs/TestingWithEventedSpec.textile".freeze, "docs/Troubleshooting.textile".freeze, "docs/VendorSpecificExtensions.textile".freeze, "docs/diagrams/001_hello_world_example_routing.png".freeze, "docs/diagrams/002_blabbr_example_routing.png".freeze, "docs/diagrams/003_weathr_example_routing.png".freeze, "docs/diagrams/004_fanout_exchange.png".freeze, "docs/diagrams/005_direct_exchange.png".freeze, "docs/diagrams/006_amqp_091_message_acknowledgements.png".freeze, "docs/diagrams/007_rabbitmq_publisher_confirms.png".freeze, "docs/diagrams/redhat/direct_exchange.png".freeze, "docs/diagrams/redhat/fanout_exchange.png".freeze, "docs/diagrams/redhat/topic_exchange.png".freeze, "examples/channels/open_channel_with_one_arity_callback.rb".freeze, "examples/channels/open_channel_without_assignment.rb".freeze, "examples/channels/prefetch_as_constructor_argument.rb".freeze, "examples/channels/qos_aka_prefetch.rb".freeze, "examples/channels/qos_aka_prefetch_without_callback.rb".freeze, "examples/connection/connect_and_immediately_disconnect.rb".freeze, "examples/error_handling/automatic_recovery_of_channel_and_queues.rb".freeze, "examples/error_handling/automatically_recovering_hello_world_consumer.rb".freeze, "examples/error_handling/automatically_recovering_hello_world_consumer_that_uses_a_server_named_queue.rb".freeze, "examples/error_handling/basic_connection_failover.rb".freeze, "examples/error_handling/channel_level_exception.rb".freeze, "examples/error_handling/channel_level_exception_with_multiple_channels_involved.rb".freeze, "examples/error_handling/connection_level_exception.rb".freeze, "examples/error_handling/connection_level_exception_with_objects.rb".freeze, "examples/error_handling/connection_loss_handler.rb".freeze, "examples/error_handling/global_channel_level_exception_handler.rb".freeze, "examples/error_handling/handling_authentication_failure_with_a_callback.rb".freeze, "examples/error_handling/handling_authentication_failure_with_a_rescue_block.rb".freeze, "examples/error_handling/handling_vhost_misconfiguration_with_a_rescue_block.rb".freeze, "examples/error_handling/hello_world_producer.rb".freeze, "examples/error_handling/insufficient_permissions.rb".freeze, "examples/error_handling/manual_connection_and_channel_recovery.rb".freeze, "examples/error_handling/queue_exclusivity_violation.rb".freeze, "examples/error_handling/queue_name_violation.rb".freeze, "examples/error_handling/reopening_a_channel_after_channel_level_exception.rb".freeze, "examples/error_handling/tcp_connection_failure_handling_with_a_rescue_block.rb".freeze, "examples/error_handling/tcp_connection_failure_with_a_callback.rb".freeze, "examples/exchanges/autodeletion_of_exchanges.rb".freeze, "examples/exchanges/declare_an_exchange_without_assignment.rb".freeze, "examples/extensions/rabbitmq/connection_blocking.rb".freeze, "examples/extensions/rabbitmq/per_queue_message_ttl.rb".freeze, "examples/extensions/rabbitmq/publisher_confirmations_with_transient_messages.rb".freeze, "examples/extensions/rabbitmq/using_alternate_exchanges.rb".freeze, "examples/guides/getting_started/01_hello_world.rb".freeze, "examples/guides/getting_started/02_hello_world_dslified.rb".freeze, "examples/guides/getting_started/03_blabbr.rb".freeze, "examples/guides/getting_started/04_weathr.rb".freeze, "examples/guides/queues/01a_declaring_a_server_named_queue_using_queue_constructor.rb".freeze, "examples/guides/queues/01b_declaring_a_queue_using_queue_constructor.rb".freeze, "examples/guides/queues/02a_declaring_a_durable_shared_queue.rb".freeze, "examples/guides/queues/02b_declaring_a_durable_shared_queue.rb".freeze, "examples/guides/queues/03a_declaring_a_temporary_exclusive_queue.rb".freeze, "examples/guides/queues/03b_declaring_a_temporary_exclusive_queue.rb".freeze, "examples/guides/queues/04_bind_a_queue_using_exchange_instance.rb".freeze, "examples/guides/queues/05_bind_a_queue_using_exchange_name.rb".freeze, "examples/guides/queues/06_subscribe_to_receive_messages.rb".freeze, "examples/guides/queues/07_fetch_a_message_from_the_queue.rb".freeze, "examples/guides/queues/08_unsubscribing_a_consumer.rb".freeze, "examples/guides/queues/09_unbinding_from_exchange.rb".freeze, "examples/guides/queues/10_purge_a_queue.rb".freeze, "examples/guides/queues/11_deleting_a_queue.rb".freeze, "examples/guides/queues/12_objects_that_consume_messages.rb".freeze, "examples/guides/queues/13_objects_that_consume_messages_take_two.rb".freeze, "examples/hello_world.rb".freeze, "examples/hello_world_with_an_empty_string.rb".freeze, "examples/hello_world_with_eventmachine_in_a_separate_thread.rb".freeze, "examples/hello_world_with_large_payload.rb".freeze, "examples/inspecting_server_information.rb".freeze, "examples/issues/amq_client_issue_7.rb".freeze, "examples/issues/amq_protocol_issue_14.rb".freeze, "examples/issues/issue_121.rb".freeze, "examples/issues/issue_75.rb".freeze, "examples/issues/issue_79.rb".freeze, "examples/issues/issue_80.rb".freeze, "examples/issues/issue_93.rb".freeze, "examples/issues/issue_94.rb".freeze, "examples/patterns/command/consumer.rb".freeze, "examples/patterns/command/producer.rb".freeze, "examples/patterns/event/consumer.rb".freeze, "examples/patterns/event/producer.rb".freeze, "examples/patterns/request_reply/client.rb".freeze, "examples/patterns/request_reply/server.rb".freeze, "examples/publishing/publishing_a_one_off_message.rb".freeze, "examples/publishing/publishing_callback.rb".freeze, "examples/publishing/returned_messages.rb".freeze, "examples/publishing/simplistic_scatter_gather.rb".freeze, "examples/queues/accessing_message_metadata.rb".freeze, "examples/queues/automatic_binding_for_default_direct_exchange.rb".freeze, "examples/queues/basic_get.rb".freeze, "examples/queues/cancel_default_consumer.rb".freeze, "examples/queues/declare_a_queue_without_assignment.rb".freeze, "examples/queues/declare_and_bind_a_server_named_queue.rb".freeze, "examples/queues/queue_status.rb".freeze, "examples/queues/rejecting_messages_without_requeueuing.rb".freeze, "examples/queues/using_explicit_acknowledgements.rb".freeze, "examples/rack/publish_a_message_on_request/thin.ru".freeze, "examples/routing/fanout_routing.rb".freeze, "examples/routing/headers_routing.rb".freeze, "examples/routing/pubsub.rb".freeze, "examples/routing/round_robin_with_direct_exchange.rb".freeze, "examples/routing/round_robin_with_the_default_exchange.rb".freeze, "examples/routing/unroutable_mandatory_message_is_returned.rb".freeze, "examples/routing/weather_updates.rb".freeze, "examples/tls/using_tls.rb".freeze, "examples/tls_certificates/client/cert.pem".freeze, "examples/tls_certificates/client/key.pem".freeze, "examples/tls_certificates/client/keycert.p12".freeze, "examples/tls_certificates/client/req.pem".freeze, "examples/tls_certificates/server/cert.pem".freeze, "examples/tls_certificates/server/key.pem".freeze, "examples/tls_certificates/server/keycert.p12".freeze, "examples/tls_certificates/server/req.pem".freeze, "examples/tls_certificates/testca/cacert.cer".freeze, "examples/tls_certificates/testca/cacert.pem".freeze, "examples/tls_certificates/testca/certs/01.pem".freeze, "examples/tls_certificates/testca/certs/02.pem".freeze, "examples/tls_certificates/testca/index.txt".freeze, "examples/tls_certificates/testca/index.txt.attr".freeze, "examples/tls_certificates/testca/index.txt.attr.old".freeze, "examples/tls_certificates/testca/index.txt.old".freeze, "examples/tls_certificates/testca/openssl.cnf".freeze, "examples/tls_certificates/testca/private/cakey.pem".freeze, "examples/tls_certificates/testca/serial".freeze, "examples/tls_certificates/testca/serial.old".freeze, "lib/amq/protocol/get_response.rb".freeze, "lib/amqp.rb".freeze, "lib/amqp/auth_mechanism_adapter.rb".freeze, "lib/amqp/auth_mechanism_adapter/external.rb".freeze, "lib/amqp/auth_mechanism_adapter/plain.rb".freeze, "lib/amqp/bit_set.rb".freeze, "lib/amqp/broker.rb".freeze, "lib/amqp/callbacks.rb".freeze, "lib/amqp/channel.rb".freeze, "lib/amqp/compatibility/ruby187_patchlevel_check.rb".freeze, "lib/amqp/consumer.rb".freeze, "lib/amqp/consumer_tag_generator.rb".freeze, "lib/amqp/deferrable.rb".freeze, "lib/amqp/entity.rb".freeze, "lib/amqp/exceptions.rb".freeze, "lib/amqp/exchange.rb".freeze, "lib/amqp/extensions/rabbitmq.rb".freeze, "lib/amqp/framing/string/frame.rb".freeze, "lib/amqp/handlers_registry.rb".freeze, "lib/amqp/header.rb".freeze, "lib/amqp/int_allocator.rb".freeze, "lib/amqp/integration/rails.rb".freeze, "lib/amqp/openable.rb".freeze, "lib/amqp/queue.rb".freeze, "lib/amqp/session.rb".freeze, "lib/amqp/settings.rb".freeze, "lib/amqp/utilities/event_loop_helper.rb".freeze, "lib/amqp/utilities/server_type.rb".freeze, "lib/amqp/version.rb".freeze, "repl".freeze, "spec/integration/authentication_spec.rb".freeze, "spec/integration/automatic_binding_for_default_direct_exchange_spec.rb".freeze, "spec/integration/automatic_recovery_predicate_spec.rb".freeze, "spec/integration/basic_get_spec.rb".freeze, "spec/integration/basic_publish_with_message_framing_spec.rb".freeze, "spec/integration/basic_return_spec.rb".freeze, "spec/integration/channel_close_spec.rb".freeze, "spec/integration/channel_level_exception_handling_spec.rb".freeze, "spec/integration/channel_level_exception_with_multiple_channels_spec.rb".freeze, "spec/integration/concurrent_publishing_on_a_shared_channel_spec.rb".freeze, "spec/integration/connection_close_spec.rb".freeze, "spec/integration/connection_level_exception_handling_spec.rb".freeze, "spec/integration/declare_and_immediately_bind_a_server_named_queue_spec.rb".freeze, "spec/integration/declare_one_hundred_server_named_queues_spec.rb".freeze, "spec/integration/direct_exchange_routing_spec.rb".freeze, "spec/integration/exchange_declaration_spec.rb".freeze, "spec/integration/extensions/rabbitmq/publisher_confirmations_spec.rb".freeze, "spec/integration/fanout_exchange_routing_spec.rb".freeze, "spec/integration/headers_exchange_routing_spec.rb".freeze, "spec/integration/hello_world_spec.rb".freeze, "spec/integration/mandatory_messages_spec.rb".freeze, "spec/integration/message_acknowledgement_spec.rb".freeze, "spec/integration/message_metadata_access_spec.rb".freeze, "spec/integration/multiple_consumers_per_queue_spec.rb".freeze, "spec/integration/ordering_of_published_messages_spec.rb".freeze, "spec/integration/queue_declaration_spec.rb".freeze, "spec/integration/queue_exclusivity_spec.rb".freeze, "spec/integration/queue_redeclaration_with_incompatible_attributes_spec.rb".freeze, "spec/integration/queue_status_spec.rb".freeze, "spec/integration/recovery/per_channel_automatic_recovery_on_graceful_broker_shutdown_spec.rb".freeze, "spec/integration/recovery/per_channel_automatic_recovery_spec.rb".freeze, "spec/integration/redelivery_of_unacknowledged_messages_spec.rb".freeze, "spec/integration/regressions/concurrent_publishing_on_the_same_channel_spec.rb".freeze, "spec/integration/regressions/empty_message_body_spec.rb".freeze, "spec/integration/regressions/issue66_spec.rb".freeze, "spec/integration/remove_individual_binding_spec.rb".freeze, "spec/integration/reply_queue_communication_spec.rb".freeze, "spec/integration/store_and_forward_spec.rb".freeze, "spec/integration/stress/publishing_of_messages_with_incrementing_sizes_spec.rb".freeze, "spec/integration/topic_subscription_spec.rb".freeze, "spec/integration/tx_commit_spec.rb".freeze, "spec/integration/tx_rollback_spec.rb".freeze, "spec/spec_helper.rb".freeze, "spec/unit/amqp/bit_set_spec.rb".freeze, "spec/unit/amqp/channel_id_allocation_spec.rb".freeze, "spec/unit/amqp/client_spec.rb".freeze, "spec/unit/amqp/connection_spec.rb".freeze, "spec/unit/amqp/int_allocator_spec.rb".freeze] s.homepage = "http://rubyamqp.info".freeze s.licenses = ["Ruby".freeze] s.rdoc_options = ["--include=examples --main README.md".freeze] s.rubygems_version = "3.5.10".freeze s.summary = "Widely used, feature-rich asynchronous RabbitMQ client with batteries included".freeze s.specification_version = 4 s.add_runtime_dependency(%q.freeze, [">= 0".freeze]) s.add_runtime_dependency(%q.freeze, [">= 1.9.0".freeze]) end