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 +4 -4
- data/Gemfile.lock +5 -5
- data/lib/fluq/input.rb +2 -2
- data/lib/fluq/input/noop.rb +9 -0
- data/lib/fluq/version.rb +1 -1
- data/spec/fluq/input/noop_spec.rb +12 -0
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e23cabbd227ea09c4cdfe5136238ce0841da18be
|
4
|
+
data.tar.gz: 028e4623cbc6e9580861564d98a081089734e2a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8f60f7a687e279b30d524a03e4edb07cbc5fe9889f3a32252d7a1057d86750f1a21d334538721683fd0c8381d630dd0fbf4e34bcc296b2bf2687346ccedcf11
|
7
|
+
data.tar.gz: 085d5a45ff2b32dd9e627744da0e2a329f325f2e8d3bf6f4f8b5dd03a3d0751b77275eea4ececc9214e6bde40ffb9cbf97794cb6e6b1301ea28a3706e52abcb8
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
fluq (0.8.
|
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.
|
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.
|
41
|
+
rspec-expectations (2.14.5)
|
42
42
|
diff-lcs (>= 1.1.3, < 2.0)
|
43
|
-
rspec-mocks (2.14.
|
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.
|
56
|
+
tins (0.13.2)
|
57
57
|
yard (0.8.7.3)
|
58
58
|
|
59
59
|
PLATFORMS
|
data/lib/fluq/input.rb
CHANGED
data/lib/fluq/version.rb
CHANGED
@@ -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.
|
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-
|
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
|