circuitry 2.1.0 → 2.1.1

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: 14368085a767ad616196eb22569c3c981af716d0
4
- data.tar.gz: 639f43f5b3e192241e5b142c5251331ee8f86362
3
+ metadata.gz: f96fa19eef4e73b058cf470c6551e07a5f478a97
4
+ data.tar.gz: faeadab02b2bbf5aa6f1ca6ed59932ca9463ffe5
5
5
  SHA512:
6
- metadata.gz: 15d2f7452c6f1324850b6b83a825ecc9c5bc7895319660b785917625dbf0a991f92ce7f4303c239df4eb520b8c128e427fd69c85069e687986fdc198d693266b
7
- data.tar.gz: 8b4073842d2dca9813ee809ffcbab89ce8949ba148edbfa7d32531be5a79764eccc4f067489decbccccd143f86afa7db8767c55b34b9be64337ca9bc18aa8b41
6
+ metadata.gz: fcf9f9976723c3bd6abe59d18cabdd27a3730b48f409d120201ab22f537443f47fa2087e64d19429e1241000ad71a88a538e05bae9f94c5a5d3fc79975a9d52f
7
+ data.tar.gz: 45e85b9010fc0967df18b7a9c19645950ba2d70273949485457a7f8ec72cf1bc50a990bd69bfb504e333c2a040152107f11a5bb4dfb8eda27074c89031bcdfcc
@@ -1,3 +1,7 @@
1
+ ## Circuitry 2.1.1 (Jan 30, 2016)
2
+
3
+ * Fixed missing require in subscriber *Brandon Croft*
4
+
1
5
  ## Circuitry 2.1.0 (Jan 28, 2016)
2
6
 
3
7
  * Added publisher and subscriber middleware. *Matt Huggins*
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # Circuitry
2
2
 
3
- [![Code Climate](https://codeclimate.com/repos/55720235e30ba0148f003033/badges/697cd6b997cc25e808f3/gpa.svg)](https://codeclimate.com/repos/55720235e30ba0148f003033/feed) [![Test Coverage](https://codeclimate.com/repos/55720235e30ba0148f003033/badges/697cd6b997cc25e808f3/coverage.svg)](https://codeclimate.com/repos/55720235e30ba0148f003033/coverage)
3
+ [![Code Climate](https://codeclimate.com/github/kapost/circuitry/badges/gpa.svg)](https://codeclimate.com/github/kapost/circuitry)
4
+ [![Test Coverage](https://codeclimate.com/github/kapost/circuitry/badges/coverage.svg)](https://codeclimate.com/github/kapost/circuitry/coverage)
4
5
 
5
6
  Decouple ruby applications using [SNS](http://aws.amazon.com/sns/) fanout with [SQS](http://aws.amazon.com/sqs/) processing.
6
7
 
@@ -10,7 +10,6 @@ require 'circuitry/processor'
10
10
  require 'circuitry/processors/batcher'
11
11
  require 'circuitry/processors/forker'
12
12
  require 'circuitry/processors/threader'
13
- require 'circuitry/configuration'
14
13
  require 'circuitry/publisher'
15
14
  require 'circuitry/subscriber'
16
15
  require 'circuitry/version'
@@ -1,5 +1,6 @@
1
1
  require 'retries'
2
2
  require 'timeout'
3
+ require 'circuitry/queue_creator'
3
4
  require 'circuitry/concerns/async'
4
5
  require 'circuitry/services/sqs'
5
6
  require 'circuitry/message'
@@ -1,3 +1,3 @@
1
1
  module Circuitry
2
- VERSION = '2.1.0'
2
+ VERSION = '2.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: circuitry
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Huggins
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2016-01-28 00:00:00.000000000 Z
12
+ date: 2016-01-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: aws-sdk
@@ -293,7 +293,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
293
293
  version: '0'
294
294
  requirements: []
295
295
  rubyforge_project:
296
- rubygems_version: 2.4.8
296
+ rubygems_version: 2.5.1
297
297
  signing_key:
298
298
  specification_version: 4
299
299
  summary: Decouple ruby applications using Amazon SNS fanout with SQS processing.