stomp 1.4.2 → 1.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d3b0e0643f14d3e248a463fd9e7dda3bbf193c3c
4
+ data.tar.gz: 3a0cc2781ddda5adec47b27085cbb4bd3154d7e3
5
+ SHA512:
6
+ metadata.gz: d9f5f664f9ef05288b5e237c4871ae61ec571e109eed6db1babda61fff7ca374b200b5f127a8b999c6becab0442a40d56987d0a896330180fcdd33d2e92ec28f
7
+ data.tar.gz: f559956891901862a57db82e33439bc46796a5c30b5eb8cdad29bace81a8d88f111a49cb826f5362b15a3e6176176a7a2136ad57322d24c64ccb0cfff7ebd0c3
@@ -1,5 +1,9 @@
1
1
  # Stomp Gem Change Log
2
2
 
3
+ ## 1.4.3 20160821
4
+
5
+ * Quick fix of install failures. Do not try to use install 1.4.2.
6
+
3
7
  ## 1.4.2 20160820
4
8
 
5
9
  * Refine SSL examples.
data/README.md CHANGED
@@ -93,6 +93,7 @@ A Stomp URL must begin with 'stomp://' and can be in one of the following forms:
93
93
 
94
94
  See _CHANGELOG.rdoc_ for details.
95
95
 
96
+ * Gem version 1.4.3. Fix broken install. Do not try to install 1.4.2.
96
97
  * Gem version 1.4.2. Fix memory leak, and others !: see CHANGELOG.md for details.
97
98
  * Gem version 1.4.1. Important SSL changes !: see CHANGELOG.md for details.
98
99
  * Gem version 1.4.0. Note: Change sementics of :parse_timeout, see CHANGELOG.md for details.
data/Rakefile CHANGED
@@ -39,7 +39,7 @@ begin
39
39
  gem.homepage = "https://github.com/stompgem/stomp"
40
40
  gem.authors = ["Brian McCallister", 'Marius Mathiesen', 'Thiago Morello',
41
41
  'Guy M. Allard']
42
- gem.add_development_dependency "rspec", '>= 2.14.1'
42
+ gem.add_development_dependency 'rspec', '~> 2.14', '>= 2.14.1'
43
43
  end
44
44
  Jeweler::GemcutterTasks.new
45
45
  rescue LoadError
@@ -6,8 +6,8 @@ module Stomp
6
6
  module Version #:nodoc: all
7
7
  MAJOR = 1
8
8
  MINOR = 4
9
- PATCH = "2"
10
- # PATCH = "2.plvl.001"
9
+ PATCH = "3"
10
+ # PATCH = "3.plvl.001"
11
11
  STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
12
12
  end
13
13
  end
@@ -2,15 +2,17 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
+ # stub: stomp 1.4.3 ruby lib
5
6
 
6
7
  Gem::Specification.new do |s|
7
- s.name = %q{stomp}
8
- s.version = "1.4.2"
8
+ s.name = "stomp"
9
+ s.version = "1.4.3"
9
10
 
10
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
+ s.require_paths = ["lib"]
11
13
  s.authors = ["Brian McCallister", "Marius Mathiesen", "Thiago Morello", "Guy M. Allard"]
12
- s.date = %q{2016-08-20}
13
- s.description = %q{Ruby client for the Stomp messaging protocol. Note that this gem is no longer supported on rubyforge.}
14
+ s.date = "2016-08-21"
15
+ s.description = "Ruby client for the Stomp messaging protocol. Note that this gem is no longer supported on rubyforge."
14
16
  s.email = ["brianm@apache.org", "marius@stones.com", "morellon@gmail.com", "allard.guy.m@gmail.com"]
15
17
  s.executables = ["catstomp", "stompcat"]
16
18
  s.extra_rdoc_files = [
@@ -19,7 +21,6 @@ Gem::Specification.new do |s|
19
21
  ]
20
22
  s.files = [
21
23
  "CHANGELOG.md",
22
- "Gemfile",
23
24
  "LICENSE",
24
25
  "README.md",
25
26
  "Rakefile",
@@ -108,35 +109,21 @@ Gem::Specification.new do |s|
108
109
  "test/tlogger.rb",
109
110
  "test/unitst.sh"
110
111
  ]
111
- s.homepage = %q{https://github.com/stompgem/stomp}
112
+ s.homepage = "https://github.com/stompgem/stomp"
112
113
  s.licenses = ["Apache-2.0"]
113
- s.require_paths = ["lib"]
114
- s.rubygems_version = %q{1.3.7}
115
- s.summary = %q{Ruby client for the Stomp messaging protocol}
114
+ s.rubygems_version = "2.5.1"
115
+ s.summary = "Ruby client for the Stomp messaging protocol"
116
116
 
117
117
  if s.respond_to? :specification_version then
118
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
119
- s.specification_version = 3
118
+ s.specification_version = 4
120
119
 
121
120
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
122
- s.add_runtime_dependency(%q<stomp>, [">= 0"])
123
- s.add_runtime_dependency(%q<rake>, ["~> 0.8.2"])
124
- s.add_development_dependency(%q<rspec>, [">= 2.14.1"])
125
- s.add_development_dependency(%q<rspec>, [">= 2.14.1"])
126
- s.add_development_dependency(%q<rspec>, [">= 2.14.1"])
121
+ s.add_development_dependency(%q<rspec>, [">= 2.14.1", "~> 2.14"])
127
122
  else
128
- s.add_dependency(%q<stomp>, [">= 0"])
129
- s.add_dependency(%q<rake>, ["~> 0.8.2"])
130
- s.add_dependency(%q<rspec>, [">= 2.14.1"])
131
- s.add_dependency(%q<rspec>, [">= 2.14.1"])
132
- s.add_dependency(%q<rspec>, [">= 2.14.1"])
123
+ s.add_dependency(%q<rspec>, [">= 2.14.1", "~> 2.14"])
133
124
  end
134
125
  else
135
- s.add_dependency(%q<stomp>, [">= 0"])
136
- s.add_dependency(%q<rake>, ["~> 0.8.2"])
137
- s.add_dependency(%q<rspec>, [">= 2.14.1"])
138
- s.add_dependency(%q<rspec>, [">= 2.14.1"])
139
- s.add_dependency(%q<rspec>, [">= 2.14.1"])
126
+ s.add_dependency(%q<rspec>, [">= 2.14.1", "~> 2.14"])
140
127
  end
141
128
  end
142
129
 
metadata CHANGED
@@ -1,15 +1,9 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: stomp
3
- version: !ruby/object:Gem::Version
4
- hash: 3
5
- prerelease: false
6
- segments:
7
- - 1
8
- - 4
9
- - 2
10
- version: 1.4.2
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.4.3
11
5
  platform: ruby
12
- authors:
6
+ authors:
13
7
  - Brian McCallister
14
8
  - Marius Mathiesen
15
9
  - Thiago Morello
@@ -17,105 +11,44 @@ authors:
17
11
  autorequire:
18
12
  bindir: bin
19
13
  cert_chain: []
20
-
21
- date: 2016-08-20 00:00:00 -04:00
22
- default_executable:
23
- dependencies:
24
- - !ruby/object:Gem::Dependency
25
- prerelease: false
26
- name: stomp
27
- version_requirements: &id001 !ruby/object:Gem::Requirement
28
- none: false
29
- requirements:
30
- - - ">="
31
- - !ruby/object:Gem::Version
32
- hash: 3
33
- segments:
34
- - 0
35
- version: "0"
36
- requirement: *id001
37
- type: :runtime
38
- - !ruby/object:Gem::Dependency
39
- prerelease: false
40
- name: rake
41
- version_requirements: &id002 !ruby/object:Gem::Requirement
42
- none: false
43
- requirements:
44
- - - ~>
45
- - !ruby/object:Gem::Version
46
- hash: 59
47
- segments:
48
- - 0
49
- - 8
50
- - 2
51
- version: 0.8.2
52
- requirement: *id002
53
- type: :runtime
54
- - !ruby/object:Gem::Dependency
55
- prerelease: false
56
- name: rspec
57
- version_requirements: &id003 !ruby/object:Gem::Requirement
58
- none: false
59
- requirements:
60
- - - ">="
61
- - !ruby/object:Gem::Version
62
- hash: 53
63
- segments:
64
- - 2
65
- - 14
66
- - 1
67
- version: 2.14.1
68
- requirement: *id003
69
- type: :development
70
- - !ruby/object:Gem::Dependency
71
- prerelease: false
14
+ date: 2016-08-21 00:00:00.000000000 Z
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
72
17
  name: rspec
73
- version_requirements: &id004 !ruby/object:Gem::Requirement
74
- none: false
75
- requirements:
18
+ requirement: !ruby/object:Gem::Requirement
19
+ requirements:
76
20
  - - ">="
77
- - !ruby/object:Gem::Version
78
- hash: 53
79
- segments:
80
- - 2
81
- - 14
82
- - 1
21
+ - !ruby/object:Gem::Version
83
22
  version: 2.14.1
84
- requirement: *id004
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '2.14'
85
26
  type: :development
86
- - !ruby/object:Gem::Dependency
87
27
  prerelease: false
88
- name: rspec
89
- version_requirements: &id005 !ruby/object:Gem::Requirement
90
- none: false
91
- requirements:
28
+ version_requirements: !ruby/object:Gem::Requirement
29
+ requirements:
92
30
  - - ">="
93
- - !ruby/object:Gem::Version
94
- hash: 53
95
- segments:
96
- - 2
97
- - 14
98
- - 1
31
+ - !ruby/object:Gem::Version
99
32
  version: 2.14.1
100
- requirement: *id005
101
- type: :development
102
- description: Ruby client for the Stomp messaging protocol. Note that this gem is no longer supported on rubyforge.
103
- email:
33
+ - - "~>"
34
+ - !ruby/object:Gem::Version
35
+ version: '2.14'
36
+ description: Ruby client for the Stomp messaging protocol. Note that this gem is
37
+ no longer supported on rubyforge.
38
+ email:
104
39
  - brianm@apache.org
105
40
  - marius@stones.com
106
41
  - morellon@gmail.com
107
42
  - allard.guy.m@gmail.com
108
- executables:
43
+ executables:
109
44
  - catstomp
110
45
  - stompcat
111
46
  extensions: []
112
-
113
- extra_rdoc_files:
47
+ extra_rdoc_files:
114
48
  - LICENSE
115
49
  - README.md
116
- files:
50
+ files:
117
51
  - CHANGELOG.md
118
- - Gemfile
119
52
  - LICENSE
120
53
  - README.md
121
54
  - Rakefile
@@ -203,39 +136,28 @@ files:
203
136
  - test/test_urlogin.rb
204
137
  - test/tlogger.rb
205
138
  - test/unitst.sh
206
- has_rdoc: true
207
139
  homepage: https://github.com/stompgem/stomp
208
- licenses:
140
+ licenses:
209
141
  - Apache-2.0
142
+ metadata: {}
210
143
  post_install_message:
211
144
  rdoc_options: []
212
-
213
- require_paths:
145
+ require_paths:
214
146
  - lib
215
- required_ruby_version: !ruby/object:Gem::Requirement
216
- none: false
217
- requirements:
147
+ required_ruby_version: !ruby/object:Gem::Requirement
148
+ requirements:
218
149
  - - ">="
219
- - !ruby/object:Gem::Version
220
- hash: 3
221
- segments:
222
- - 0
223
- version: "0"
224
- required_rubygems_version: !ruby/object:Gem::Requirement
225
- none: false
226
- requirements:
150
+ - !ruby/object:Gem::Version
151
+ version: '0'
152
+ required_rubygems_version: !ruby/object:Gem::Requirement
153
+ requirements:
227
154
  - - ">="
228
- - !ruby/object:Gem::Version
229
- hash: 3
230
- segments:
231
- - 0
232
- version: "0"
155
+ - !ruby/object:Gem::Version
156
+ version: '0'
233
157
  requirements: []
234
-
235
158
  rubyforge_project:
236
- rubygems_version: 1.3.7
159
+ rubygems_version: 2.5.1
237
160
  signing_key:
238
- specification_version: 3
161
+ specification_version: 4
239
162
  summary: Ruby client for the Stomp messaging protocol
240
163
  test_files: []
241
-
data/Gemfile DELETED
@@ -1,5 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gemspec
4
-
5
- gem 'rake', '~> 0.8.2'