fluq 0.8.0 → 0.8.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: 7820b9f9dfe9f91d1e8b3939363fa6471b2b233e
4
- data.tar.gz: 3f8c2e1c3160e2db2f6f1f2c78496b759c536bd1
3
+ metadata.gz: e23cabbd227ea09c4cdfe5136238ce0841da18be
4
+ data.tar.gz: 028e4623cbc6e9580861564d98a081089734e2a2
5
5
  SHA512:
6
- metadata.gz: d5292f948e9c5b97d13acfd6822778586f812c7a40ab19122cf59b476443246ae5276f1eea07fb6daad9ce344edc70fe0f9873624e376910fe9513cf6a27ae5a
7
- data.tar.gz: 486b08a58d7aaabf5c73af6ab525aec4b743079fa45247907c34b1c8d78dc1e47e5199436bec376f733c9cfad5f7713663c329c060ac40c7c4d7f9e26d406e38
6
+ metadata.gz: b8f60f7a687e279b30d524a03e4edb07cbc5fe9889f3a32252d7a1057d86750f1a21d334538721683fd0c8381d630dd0fbf4e34bcc296b2bf2687346ccedcf11
7
+ data.tar.gz: 085d5a45ff2b32dd9e627744da0e2a329f325f2e8d3bf6f4f8b5dd03a3d0751b77275eea4ececc9214e6bde40ffb9cbf97794cb6e6b1301ea28a3706e52abcb8
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fluq (0.8.0)
4
+ fluq (0.8.1)
5
5
  celluloid-io (~> 0.15.0)
6
6
  multi_json
7
7
  timed_lru
@@ -21,7 +21,7 @@ GEM
21
21
  term-ansicolor
22
22
  thor
23
23
  diff-lcs (1.2.5)
24
- docile (1.1.2)
24
+ docile (1.1.3)
25
25
  jrjackson (0.2.6)
26
26
  mime-types (2.1)
27
27
  msgpack (0.5.8)
@@ -38,9 +38,9 @@ GEM
38
38
  rspec-expectations (~> 2.14.0)
39
39
  rspec-mocks (~> 2.14.0)
40
40
  rspec-core (2.14.7)
41
- rspec-expectations (2.14.4)
41
+ rspec-expectations (2.14.5)
42
42
  diff-lcs (>= 1.1.3, < 2.0)
43
- rspec-mocks (2.14.4)
43
+ rspec-mocks (2.14.5)
44
44
  rubysl-logger (2.0.0)
45
45
  rubysl-singleton (2.0.0)
46
46
  simplecov (0.8.2)
@@ -53,7 +53,7 @@ GEM
53
53
  thor (0.18.1)
54
54
  timed_lru (0.3.1)
55
55
  timers (1.1.0)
56
- tins (0.13.1)
56
+ tins (0.13.2)
57
57
  yard (0.8.7.3)
58
58
 
59
59
  PLATFORMS
@@ -1,6 +1,6 @@
1
1
  module FluQ::Input
2
2
  end
3
3
 
4
- %w'base socket'.each do |name|
4
+ %w'base noop socket'.each do |name|
5
5
  require "fluq/input/#{name}"
6
- end
6
+ end
@@ -0,0 +1,9 @@
1
+ class FluQ::Input::Noop < FluQ::Input::Base
2
+
3
+ # Start the server
4
+ def run
5
+ super
6
+ loop { sleep(1e9) }
7
+ end
8
+
9
+ end
@@ -1,3 +1,3 @@
1
1
  module FluQ
2
- VERSION = "0.8.0"
2
+ VERSION = "0.8.1"
3
3
  end
@@ -0,0 +1,12 @@
1
+ require 'spec_helper'
2
+
3
+ describe FluQ::Input::Noop do
4
+
5
+ subject { described_class.new "my-feed", [FluQ::Handler::Test] }
6
+ it { should be_a(FluQ::Input::Base) }
7
+ its(:wrapped_object) { should be_instance_of(described_class) }
8
+
9
+ its(:name) { should == "noop" }
10
+ its(:description) { should == "noop" }
11
+
12
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluq
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Black Square Media
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-30 00:00:00.000000000 Z
11
+ date: 2014-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: celluloid-io
@@ -163,6 +163,7 @@ files:
163
163
  - lib/fluq/handler/noop.rb
164
164
  - lib/fluq/input.rb
165
165
  - lib/fluq/input/base.rb
166
+ - lib/fluq/input/noop.rb
166
167
  - lib/fluq/input/socket.rb
167
168
  - lib/fluq/mixins.rb
168
169
  - lib/fluq/mixins/loggable.rb
@@ -185,6 +186,7 @@ files:
185
186
  - spec/fluq/handler/log_spec.rb
186
187
  - spec/fluq/handler/noop_spec.rb
187
188
  - spec/fluq/input/base_spec.rb
189
+ - spec/fluq/input/noop_spec.rb
188
190
  - spec/fluq/input/socket_spec.rb
189
191
  - spec/fluq/mixins/loggable_spec.rb
190
192
  - spec/fluq/runner_spec.rb
@@ -216,7 +218,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
216
218
  version: 1.8.0
217
219
  requirements: []
218
220
  rubyforge_project:
219
- rubygems_version: 2.2.1
221
+ rubygems_version: 2.2.0.rc.1
220
222
  signing_key:
221
223
  specification_version: 4
222
224
  summary: FluQ