-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrosetta_queue.gemspec
126 lines (121 loc) · 5.26 KB
/
rosetta_queue.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{rosetta_queue}
s.version = "0.5.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Ben Mabey", "Chris Wyckoff"]
s.date = %q{2009-12-20}
s.description = %q{Messaging gateway API with adapters for many messaging systems available in Ruby. Messaging systems can be easily switched out with a small configuration change. Code for testing on the object and application level is also provided.}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"MIT-LICENSE.txt",
"README.rdoc"
]
s.files = [
"History.txt",
"MIT-LICENSE.txt",
"README.rdoc",
"Rakefile",
"VERSION.yml",
"cucumber.yml",
"features/filtering.feature",
"features/messaging.feature",
"features/step_definitions/common_messaging_steps.rb",
"features/step_definitions/filtering_steps.rb",
"features/step_definitions/point_to_point_steps.rb",
"features/step_definitions/publish_subscribe_steps.rb",
"features/support/env.rb",
"features/support/sample_consumers.rb",
"lib/rosetta_queue.rb",
"lib/rosetta_queue/adapter.rb",
"lib/rosetta_queue/adapters/amqp.rb",
"lib/rosetta_queue/adapters/amqp_evented.rb",
"lib/rosetta_queue/adapters/amqp_synch.rb",
"lib/rosetta_queue/adapters/base.rb",
"lib/rosetta_queue/adapters/beanstalk.rb",
"lib/rosetta_queue/adapters/fake.rb",
"lib/rosetta_queue/adapters/null.rb",
"lib/rosetta_queue/adapters/stomp.rb",
"lib/rosetta_queue/consumer.rb",
"lib/rosetta_queue/consumer_managers/base.rb",
"lib/rosetta_queue/consumer_managers/evented.rb",
"lib/rosetta_queue/consumer_managers/threaded.rb",
"lib/rosetta_queue/core_ext/string.rb",
"lib/rosetta_queue/core_ext/time.rb",
"lib/rosetta_queue/destinations.rb",
"lib/rosetta_queue/exception_handler.rb",
"lib/rosetta_queue/exceptions.rb",
"lib/rosetta_queue/filters.rb",
"lib/rosetta_queue/logger.rb",
"lib/rosetta_queue/message_handler.rb",
"lib/rosetta_queue/producer.rb",
"lib/rosetta_queue/spec_helpers.rb",
"lib/rosetta_queue/spec_helpers/hash.rb",
"lib/rosetta_queue/spec_helpers/helpers.rb",
"lib/rosetta_queue/spec_helpers/publishing_matchers.rb",
"spec/rosetta_queue/adapter_spec.rb",
"spec/rosetta_queue/adapters/amqp_synchronous_spec.rb",
"spec/rosetta_queue/adapters/beanstalk_spec.rb",
"spec/rosetta_queue/adapters/fake_spec.rb",
"spec/rosetta_queue/adapters/null_spec.rb",
"spec/rosetta_queue/adapters/shared_adapter_behavior.rb",
"spec/rosetta_queue/adapters/shared_fanout_behavior.rb",
"spec/rosetta_queue/adapters/stomp_spec.rb",
"spec/rosetta_queue/consumer_managers/base_spec.rb",
"spec/rosetta_queue/consumer_managers/evented_spec.rb",
"spec/rosetta_queue/consumer_managers/shared_manager_behavior.rb",
"spec/rosetta_queue/consumer_managers/threaded_spec.rb",
"spec/rosetta_queue/consumer_spec.rb",
"spec/rosetta_queue/core_ext/string_spec.rb",
"spec/rosetta_queue/destinations_spec.rb",
"spec/rosetta_queue/exception_handler_spec.rb",
"spec/rosetta_queue/filters_spec.rb",
"spec/rosetta_queue/message_handler_spec.rb",
"spec/rosetta_queue/producer_spec.rb",
"spec/spec.opts",
"spec/spec_helper.rb"
]
s.homepage = %q{http://github.com/cwyckoff/rosetta_queue}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{rosetta-queue}
s.rubygems_version = %q{1.3.5}
s.summary = %q{Messaging gateway API with adapters for many messaging systems available in Ruby.}
s.test_files = [
"spec/rosetta_queue/adapter_spec.rb",
"spec/rosetta_queue/adapters/amqp_synchronous_spec.rb",
"spec/rosetta_queue/adapters/beanstalk_spec.rb",
"spec/rosetta_queue/adapters/fake_spec.rb",
"spec/rosetta_queue/adapters/null_spec.rb",
"spec/rosetta_queue/adapters/shared_adapter_behavior.rb",
"spec/rosetta_queue/adapters/shared_fanout_behavior.rb",
"spec/rosetta_queue/adapters/stomp_spec.rb",
"spec/rosetta_queue/consumer_managers/base_spec.rb",
"spec/rosetta_queue/consumer_managers/evented_spec.rb",
"spec/rosetta_queue/consumer_managers/shared_manager_behavior.rb",
"spec/rosetta_queue/consumer_managers/threaded_spec.rb",
"spec/rosetta_queue/consumer_spec.rb",
"spec/rosetta_queue/core_ext/string_spec.rb",
"spec/rosetta_queue/destinations_spec.rb",
"spec/rosetta_queue/exception_handler_spec.rb",
"spec/rosetta_queue/filters_spec.rb",
"spec/rosetta_queue/message_handler_spec.rb",
"spec/rosetta_queue/producer_spec.rb",
"spec/spec_helper.rb",
"examples/sample_amqp_consumer.rb",
"examples/sample_amqp_fanout_consumer.rb",
"examples/sample_amqp_fanout_producer.rb",
"examples/sample_amqp_producer.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end