amqp_topic_binding 0.1.0 → 0.2.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: b76a01c88917457f86c49bd2b5cc166a9928352d
4
- data.tar.gz: b6fc354ee12a0863f809c6b5c3816e2e31a7ec2d
2
+ SHA256:
3
+ metadata.gz: af09d97b8a6ce383a919a8e501a5e505abd41b6ea25a3006fcd8971ef87ca0a9
4
+ data.tar.gz: b672451353553b9b090c032d9f65972f06caa63f5f70845d954317eb47464e95
5
5
  SHA512:
6
- metadata.gz: c51459f6d7930074500b3d53bf214dd242be670477c6168c894a1486fd69652664f7b83d45837596e4bdc6e9a54d395650736eba5d48654655c839e758f35bfe
7
- data.tar.gz: cd7a98eb88974a4e4747492a0f6a212e4c916dc78ab1a38c6cb78dd2f7e9ebdc912b0e825a97389822f906417c30d5f6f8bec2e20041da4575dc47f8ce0bdc95
6
+ metadata.gz: d9924ac044340b9a07587adbfa83279fabe4dad241f4e2727195b123ddc634efcea648703216e83099fcaffabebd991daed06bdb1dc556b47f890bdb98e20457
7
+ data.tar.gz: 7f6b205ec8f8be0ca01526c6b0cb56d9e0f95745f4bf0d9680bdae424a6c9862803c7822ae1d6d72354cfafb05b895754ac2ca222ae8e886dfc4bdeb24b07981
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Rusty Geldmacher
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -5,6 +5,7 @@ require 'amqp_topic_binding/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "amqp_topic_binding"
8
+ spec.licenses = ['MIT']
8
9
  spec.version = AmqpTopicBinding::VERSION
9
10
  spec.authors = ["Rusty Geldmacher"]
10
11
  spec.email = ["russell.geldmacher@gmail.com"]
@@ -18,7 +19,7 @@ Gem::Specification.new do |spec|
18
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
20
  spec.require_paths = ["lib"]
20
21
 
21
- spec.add_development_dependency "bundler", "~> 1.10"
22
- spec.add_development_dependency "rake", "~> 10.0"
22
+ spec.add_development_dependency "bundler"
23
+ spec.add_development_dependency "rake", ">= 12.3.3"
23
24
  spec.add_development_dependency "rspec"
24
25
  end
@@ -1,3 +1,3 @@
1
1
  module AmqpTopicBinding
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,43 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amqp_topic_binding
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rusty Geldmacher
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-12-01 00:00:00.000000000 Z
11
+ date: 2021-03-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '1.10'
19
+ version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '1.10'
26
+ version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '10.0'
33
+ version: 12.3.3
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '10.0'
40
+ version: 12.3.3
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -61,6 +61,7 @@ extra_rdoc_files: []
61
61
  files:
62
62
  - ".gitignore"
63
63
  - Gemfile
64
+ - LICENSE.txt
64
65
  - README.md
65
66
  - Rakefile
66
67
  - amqp_topic_binding.gemspec
@@ -70,9 +71,10 @@ files:
70
71
  - lib/amqp_topic_binding/matcher.rb
71
72
  - lib/amqp_topic_binding/version.rb
72
73
  homepage: https://github.com/rustygeldmacher/amqp_topic_binding
73
- licenses: []
74
+ licenses:
75
+ - MIT
74
76
  metadata: {}
75
- post_install_message:
77
+ post_install_message:
76
78
  rdoc_options: []
77
79
  require_paths:
78
80
  - lib
@@ -87,9 +89,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
89
  - !ruby/object:Gem::Version
88
90
  version: '0'
89
91
  requirements: []
90
- rubyforge_project:
91
- rubygems_version: 2.6.7
92
- signing_key:
92
+ rubygems_version: 3.2.0
93
+ signing_key:
93
94
  specification_version: 4
94
95
  summary: A matcher for the AMQP topic binding algorithm
95
96
  test_files: []