forked from stompgem/stomp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stomp.gemspec
96 lines (91 loc) · 2.92 KB
/
stomp.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
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{stomp}
s.version = "1.2.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Brian McCallister", "Marius Mathiesen", "Thiago Morello", "Guy M. Allard"]
s.date = %q{2012-03-24}
s.description = %q{Ruby client for the Stomp messaging protocol. Note that this gem is no longer supported on rubyforge.}
s.executables = ["catstomp", "stompcat"]
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
"CHANGELOG.rdoc",
"LICENSE",
"README.rdoc",
"Rakefile",
"bin/catstomp",
"bin/stompcat",
"examples/client11_ex1.rb",
"examples/client11_putget1.rb",
"examples/conn11_ex1.rb",
"examples/conn11_ex2.rb",
"examples/conn11_hb1.rb",
"examples/consumer.rb",
"examples/get11conn_ex1.rb",
"examples/get11conn_ex2.rb",
"examples/logexamp.rb",
"examples/logexamp_ssl.rb",
"examples/publisher.rb",
"examples/put11conn_ex1.rb",
"examples/putget11_rh1.rb",
"examples/slogger.rb",
"examples/ssl_uc1.rb",
"examples/ssl_uc1_ciphers.rb",
"examples/ssl_uc2.rb",
"examples/ssl_uc2_ciphers.rb",
"examples/ssl_uc3.rb",
"examples/ssl_uc3_ciphers.rb",
"examples/ssl_uc4.rb",
"examples/ssl_uc4_ciphers.rb",
"examples/ssl_ucx_default_ciphers.rb",
"examples/stomp11_common.rb",
"examples/topic_consumer.rb",
"examples/topic_publisher.rb",
"lib/stomp.rb",
"lib/stomp/client.rb",
"lib/stomp/codec.rb",
"lib/stomp/connection.rb",
"lib/stomp/constants.rb",
"lib/stomp/errors.rb",
"lib/stomp/ext/hash.rb",
"lib/stomp/message.rb",
"lib/stomp/sslparams.rb",
"lib/stomp/version.rb",
"spec/client_shared_examples.rb",
"spec/client_spec.rb",
"spec/connection_spec.rb",
"spec/message_spec.rb",
"spec/spec_helper.rb",
"stomp.gemspec",
"test/test_client.rb",
"test/test_codec.rb",
"test/test_connection.rb",
"test/test_connection1p.rb",
"test/test_helper.rb",
"test/test_message.rb",
"test/test_ssl.rb",
"test/tlogger.rb"
]
s.homepage = %q{https://github.com/morellon/stomp}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{Ruby client for the Stomp messaging protocol}
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, [">= 2.3"])
else
s.add_dependency(%q<rspec>, [">= 2.3"])
end
else
s.add_dependency(%q<rspec>, [">= 2.3"])
end
end