fluoride-collector 0.0.9 → 0.0.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/fluoride-collector/middleware.rb +3 -0
- metadata +13 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c39634739f83107debf3bfc8373ad2e696d90634
|
4
|
+
data.tar.gz: c81736108652c7fb2dfd55161d67832d06ffa688
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0504c478363f038d08a82bf3907f4a7554ba0fecda1cac27391241ce1c49185ebb3ccc1f08be82195bf1e31566312a13152bf3c507a911520b94c0b0fb3fb54f
|
7
|
+
data.tar.gz: 4dc075929facb50ee585446ebb26a0c6c96f75550f060a95df7b0fbc72747bfb7ede1ba83f27a7b9badba14b9a3578123fb291d2fc09e008837d1ada2f2fd8af
|
@@ -14,6 +14,9 @@ module Fluoride
|
|
14
14
|
private
|
15
15
|
|
16
16
|
def store(record)
|
17
|
+
if $stderr.respond_to? :puts
|
18
|
+
$stderr.puts "#{self.class.name}: Storing #{record.keys.inspect} with #{@config.persister_class.name}"
|
19
|
+
end
|
17
20
|
#take only pictures
|
18
21
|
@config.persister(collection_type, record).write
|
19
22
|
rescue Exception => ex
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluoride-collector
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Judson Lester
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2015-01-10 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: |2
|
15
15
|
Part of the Fluoride suite - tools for making your black box a bit whiter
|
@@ -20,23 +20,23 @@ executables: []
|
|
20
20
|
extensions: []
|
21
21
|
extra_rdoc_files: []
|
22
22
|
files:
|
23
|
-
-
|
23
|
+
- certs/ca-certificates.crt
|
24
|
+
- lib/fluoride-collector.rb
|
24
25
|
- lib/fluoride-collector/config.rb
|
25
|
-
- lib/fluoride-collector/middleware
|
26
|
+
- lib/fluoride-collector/middleware.rb
|
26
27
|
- lib/fluoride-collector/middleware/collect-exceptions.rb
|
28
|
+
- lib/fluoride-collector/middleware/collect-exchanges.rb
|
27
29
|
- lib/fluoride-collector/rails.rb
|
30
|
+
- lib/fluoride-collector/rails/railtie.rb
|
31
|
+
- lib/fluoride-collector/storage.rb
|
28
32
|
- lib/fluoride-collector/storage/fs.rb
|
29
33
|
- lib/fluoride-collector/storage/s3.rb
|
30
|
-
- lib/fluoride-collector/storage.rb
|
31
|
-
- lib/fluoride-collector/middleware.rb
|
32
|
-
- lib/fluoride-collector.rb
|
33
|
-
- spec/railtie.rb
|
34
34
|
- spec/middleware.rb
|
35
|
-
-
|
35
|
+
- spec/railtie.rb
|
36
|
+
- spec_help/file-sandbox.rb
|
36
37
|
- spec_help/gem_test_suite.rb
|
37
38
|
- spec_help/railtie-help.rb
|
38
|
-
- spec_help/
|
39
|
-
- certs/ca-certificates.crt
|
39
|
+
- spec_help/spec_helper.rb
|
40
40
|
homepage: http://nyarly.github.com/fluoride-collector
|
41
41
|
licenses:
|
42
42
|
- MIT
|
@@ -47,7 +47,7 @@ rdoc_options:
|
|
47
47
|
- --main
|
48
48
|
- doc/README
|
49
49
|
- --title
|
50
|
-
- fluoride-collector-0.0.
|
50
|
+
- fluoride-collector-0.0.10 Documentation
|
51
51
|
require_paths:
|
52
52
|
- lib/
|
53
53
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -62,7 +62,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
62
62
|
version: '0'
|
63
63
|
requirements: []
|
64
64
|
rubyforge_project:
|
65
|
-
rubygems_version: 2.
|
65
|
+
rubygems_version: 2.4.1
|
66
66
|
signing_key:
|
67
67
|
specification_version: 4
|
68
68
|
summary: Middleware to collect request and reponse pairs
|