action_subscriber 4.0.0 → 4.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +3 -0
- data/bin/action_subscriber +2 -0
- data/lib/action_subscriber/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a06cad234357e4194584f11c8b6ea3525ea14f2
|
4
|
+
data.tar.gz: 796c79df7cd3a5a3d74564bfa4c21632aaf83fa8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65460f70236d3d4a0bb9318c8653ae74b3dddb703ffc8d12426111648c12d692b741ead806265eca4c52d417cdb62736ec8b570dcad6e2b13f69758e704d5f93
|
7
|
+
data.tar.gz: dfa68d0a77ff67ecc5be071d5e5591558ab93e9d0f8f02164f9012c277e05c9254e7303ef279e9a486b709c5179113ab6fe0a78c7892995494eaaf90a2285208
|
data/.travis.yml
CHANGED
data/bin/action_subscriber
CHANGED
@@ -9,11 +9,13 @@ module ActionSubscriber
|
|
9
9
|
class_option :app, :default => "./config/environment.rb"
|
10
10
|
class_option :host
|
11
11
|
class_option :hosts
|
12
|
+
class_option :password
|
12
13
|
class_option :prefetch, :type => :numeric, :desc => "how many messages to hold in the local queue in subscribe mode"
|
13
14
|
class_option :pop_interval, :type => :numeric, :desc => "how long to wait between asking for messages (in milliseconds)"
|
14
15
|
class_option :port, :type => :numeric
|
15
16
|
class_option :threadpool_size, :type => :numeric
|
16
17
|
class_option :times_to_pop, :type => :numeric, :desc => "how many messages to get from each queue each time we ask rabbit"
|
18
|
+
class_option :username
|
17
19
|
|
18
20
|
desc "start", "Start the action subscriber subscription server"
|
19
21
|
long_desc <<-BABOUDESC.strip_heredoc
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: action_subscriber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Stien
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2016-
|
15
|
+
date: 2016-11-21 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: activesupport
|
@@ -268,7 +268,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
268
268
|
version: '0'
|
269
269
|
requirements: []
|
270
270
|
rubyforge_project:
|
271
|
-
rubygems_version: 2.
|
271
|
+
rubygems_version: 2.5.1
|
272
272
|
signing_key:
|
273
273
|
specification_version: 4
|
274
274
|
summary: ActionSubscriber is a DSL that allows a rails app to consume messages from
|