amqparty 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d6047915de23d151247589934dd34801037ab1bd
4
- data.tar.gz: f9e343ae15f68f657ff574c9d48b56b5b08dadc9
3
+ metadata.gz: 837f644498485b339c0843e83687310801b8f72a
4
+ data.tar.gz: 4b2a9108814da41ef961fced3f89091e188dc7ce
5
5
  SHA512:
6
- metadata.gz: d2cdde060724a17ee543de89cdebf3fd5639b0e4b751a45dd67de1348b591c5a43a7f8780826519d4f5d269e74c83f41d271c15ca9799947db3a176f37dcc211
7
- data.tar.gz: 3ac5934329b9ffe0fa1af1876575df444c97b9887abcdcffc3cac38b14065c561c4ce930cd5ec6e9feb14bcf92d0b85cef275e2af49ce43fb8da74987acd2e15
6
+ metadata.gz: 3a67f6e589de2faab1c1b0c274a16330d8faf229c4fe7befc66a69e98e0d5b4aacce550858ce7c2f73e83306d89a3c3e78c919f002f738ce3483bcd3087acd0c
7
+ data.tar.gz: 6973fc63278afc8eac00984aeda2c541836ab31469d442a1c053621eddc340973d6b08f10d8319e1a16527fd71defd8cd2d38a92bc2eb410c73326d1316f43d1
@@ -1,3 +1,7 @@
1
+ # 0.0.8
2
+
3
+ * Stopped warning from redfining a constant with itself
4
+
1
5
  # 0.0.2
2
6
 
3
7
  * Initial public version
@@ -2,7 +2,10 @@ module AMQParty
2
2
  class AMQPartyError < StandardError; end
3
3
  class UnsupportedURISchemeError < AMQPartyError; end
4
4
  class UnconfiguredError < AMQPartyError; end
5
- HTTParty::Request::SupportedURISchemes = HTTParty::Request::SupportedURISchemes + ['amqp', 'amqps']
5
+ HTTParty::Request::SupportedURISchemesOriginal = HTTParty::Request::SupportedURISchemes
6
+ HTTParty::Request.send(:remove_const, "SupportedURISchemes")
7
+ HTTParty::Request::SupportedURISchemes = HTTParty::Request::SupportedURISchemesOriginal + ['amqp', 'amqps']
8
+
6
9
 
7
10
  class Request < HTTParty::Request
8
11
  def perform(&block)
@@ -1,3 +1,3 @@
1
1
  module AMQParty
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amqparty
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Szmajda
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-10-01 00:00:00.000000000 Z
12
+ date: 2015-11-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: httparty
@@ -152,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
152
  version: '0'
153
153
  requirements: []
154
154
  rubyforge_project:
155
- rubygems_version: 2.4.8
155
+ rubygems_version: 2.4.5.1
156
156
  signing_key:
157
157
  specification_version: 4
158
158
  summary: AMQP-HTTP compliant replacement for HTTParty