uri-amqp 1.0.0 → 1.0.1

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
2
  SHA1:
3
- metadata.gz: af3666a553e305914130cac061e885ca8be5a219
4
- data.tar.gz: 2a199bd2ca05731ae98c57a5e772c7b82da543dc
3
+ metadata.gz: f7de338a32e3ba26d0f93225ed1d37999a1dc693
4
+ data.tar.gz: 3d0f71029080bfb8e24d086bcfcacab932e9f602
5
5
  SHA512:
6
- metadata.gz: d16c45bbf768cd35bae040b4a20da35aa08b5ebb981d16698eef4aed81bc791babe3b4f1ba3a4d58f97fc919d5947bf162b87d516c5896ce66721dd973b519e8
7
- data.tar.gz: d64c114b72cbf2a9ea5d0c38d3d3bb049277ff1065ed50d5711d1d7a866f74ff3a31f1ea3e05adf666fb0ba8ab904cae7634baa51e553300f8a9cf4e9e64c646
6
+ metadata.gz: c870fba77bfdd9d8db92648080d07f5002bd704ae6826b5cbfc21ab10e5ea8f229ba297c3dc230b9a820a182c13a01c6ff0808a05de449c24b7d73e144abcc12
7
+ data.tar.gz: 44bcacbb30d973c4fc4d1f4e6210a911ae134b6d91196f4919a0c40cc2774fd67d2a315e96239372807ad617f708827c8170e36594f1ef97d93362af0b2e0ca4
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![Gem Version](https://badge.fury.io/rb/uri-amqp.svg)](https://badge.fury.io/rb/uri-amqp)
2
+
1
3
  # URI::AMQP
2
4
 
3
5
  [Custom URI](https://ruby-doc.org/stdlib-2.4.2/libdoc/uri/rdoc/URI.html#module-URI-label-Adding+custom+URIs) implementation for AMQP
@@ -68,9 +70,9 @@ uri = URI.parse("amqp://host/vhost?certfile=/examples/tls/client_cert.pem&keyfil
68
70
 
69
71
  ### References
70
72
 
71
- # https://www.rabbitmq.com/uri-spec.html
72
- # https://www.rabbitmq.com/uri-query-parameters.html
73
- # https://www.rabbitmq.com/ssl.html
73
+ - https://www.rabbitmq.com/uri-spec.html
74
+ - https://www.rabbitmq.com/uri-query-parameters.html
75
+ - https://www.rabbitmq.com/ssl.html
74
76
 
75
77
  ## Development
76
78
 
data/lib/uri/amqp.rb CHANGED
@@ -3,7 +3,7 @@ require "uri/generic"
3
3
 
4
4
  module URI
5
5
  class AMQP < Generic
6
- VERSION = "1.0.0"
6
+ VERSION = "1.0.1"
7
7
 
8
8
  DEFAULT_PORT = 5672
9
9
 
data/uri-amqp.gemspec CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
11
11
  spec.email = ["andrew.babichev@gmail.com"]
12
12
 
13
13
  spec.summary = %q{URI::AMQP}
14
- spec.description = %q{AMQP URI}
14
+ spec.description = %q{URI stdlib module extension for AMQP}
15
15
  spec.homepage = "https://github.com/Tensho/uri-amqp"
16
16
  spec.license = "MIT"
17
17
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uri-amqp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Babichev
@@ -80,7 +80,7 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
- description: AMQP URI
83
+ description: URI stdlib module extension for AMQP
84
84
  email:
85
85
  - andrew.babichev@gmail.com
86
86
  executables: []