act-fluent-logger-rails 0.4.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +15 -8
- data/Appraisals +11 -6
- data/CHANGELOG.md +6 -1
- data/act-fluent-logger-rails.gemspec +2 -2
- data/gemfiles/rails_4.0.gemfile +1 -1
- data/gemfiles/rails_4.1.gemfile +3 -3
- data/gemfiles/rails_4.2.gemfile +3 -3
- data/gemfiles/rails_5.0.gemfile +3 -3
- data/gemfiles/rails_5.2.gemfile +9 -0
- data/lib/act-fluent-logger-rails/logger.rb +5 -1
- data/lib/act-fluent-logger-rails/version.rb +1 -1
- metadata +7 -11
- data/gemfiles/rails_4.0.gemfile.lock +0 -74
- data/gemfiles/rails_4.1.gemfile.lock +0 -78
- data/gemfiles/rails_4.2.gemfile.lock +0 -97
- data/gemfiles/rails_5.0.gemfile.lock +0 -95
- data/gemfiles/rails_5.1.gemfile.lock +0 -93
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 125a872f83e8ef5c46ca1ca293b1365fcb3aed52
|
4
|
+
data.tar.gz: bea7ea99906b406bfda4945cd0683c0e69c61638
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2d70096552e8e57783d48c0c055b9528648196aa8ae3863d54aae716c6976b2ab758a2058247df4ed58e3f23d7a6f71e251484cd85c6c0d0fede2694609089c
|
7
|
+
data.tar.gz: 7f6b11895029ade7a9e2a80d5d4934a252f3f915f27878e22a705307c9d11daaba9790b07fc2619c55eb09af2b0ff8a598aa3695bb5e33c5a487ed4c1ac70a2c
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -1,23 +1,30 @@
|
|
1
1
|
language: ruby
|
2
2
|
rvm:
|
3
|
-
- 2.0.0-p648
|
4
3
|
- 2.1.10
|
5
|
-
- 2.2.
|
6
|
-
- 2.3.
|
7
|
-
- 2.4.
|
4
|
+
- 2.2.10
|
5
|
+
- 2.3.7
|
6
|
+
- 2.4.4
|
7
|
+
- 2.5.1
|
8
8
|
gemfile:
|
9
9
|
- gemfiles/rails_4.0.gemfile
|
10
10
|
- gemfiles/rails_4.1.gemfile
|
11
11
|
- gemfiles/rails_4.2.gemfile
|
12
12
|
- gemfiles/rails_5.0.gemfile
|
13
13
|
- gemfiles/rails_5.1.gemfile
|
14
|
+
- gemfiles/rails_5.2.gemfile
|
14
15
|
matrix:
|
15
16
|
exclude:
|
16
|
-
- rvm: 2.0.0-p648
|
17
|
-
gemfile: gemfiles/rails_5.0.gemfile
|
18
|
-
- rvm: 2.0.0-p648
|
19
|
-
gemfile: gemfiles/rails_5.1.gemfile
|
20
17
|
- rvm: 2.1.10
|
21
18
|
gemfile: gemfiles/rails_5.0.gemfile
|
22
19
|
- rvm: 2.1.10
|
23
20
|
gemfile: gemfiles/rails_5.1.gemfile
|
21
|
+
- rvm: 2.1.10
|
22
|
+
gemfile: gemfiles/rails_5.2.gemfile
|
23
|
+
- rvm: 2.4.4
|
24
|
+
gemfile: gemfiles/rails_4.0.gemfile
|
25
|
+
- rvm: 2.4.4
|
26
|
+
gemfile: gemfiles/rails_4.1.gemfile
|
27
|
+
- rvm: 2.5.1
|
28
|
+
gemfile: gemfiles/rails_4.0.gemfile
|
29
|
+
- rvm: 2.5.1
|
30
|
+
gemfile: gemfiles/rails_4.1.gemfile
|
data/Appraisals
CHANGED
@@ -4,21 +4,26 @@ appraise 'rails-4.0' do
|
|
4
4
|
end
|
5
5
|
|
6
6
|
appraise 'rails-4.1' do
|
7
|
-
gem 'railties', '4.1.
|
8
|
-
gem 'activesupport', '4.1.
|
7
|
+
gem 'railties', '4.1.16'
|
8
|
+
gem 'activesupport', '4.1.16'
|
9
9
|
end
|
10
10
|
|
11
11
|
appraise 'rails-4.2' do
|
12
|
-
gem 'railties', '4.2.
|
13
|
-
gem 'activesupport', '4.2.
|
12
|
+
gem 'railties', '4.2.8'
|
13
|
+
gem 'activesupport', '4.2.8'
|
14
14
|
end
|
15
15
|
|
16
16
|
appraise 'rails-5.0' do
|
17
|
-
gem 'railties', '5.0.
|
18
|
-
gem 'activesupport', '5.0.
|
17
|
+
gem 'railties', '5.0.2'
|
18
|
+
gem 'activesupport', '5.0.2'
|
19
19
|
end
|
20
20
|
|
21
21
|
appraise 'rails-5.1' do
|
22
22
|
gem 'railties', '5.1.0'
|
23
23
|
gem 'activesupport', '5.1.0'
|
24
24
|
end
|
25
|
+
|
26
|
+
appraise 'rails-5.2' do
|
27
|
+
gem 'railties', '5.2.0'
|
28
|
+
gem 'activesupport', '5.2.0'
|
29
|
+
end
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
## 0.5.0 / April 29 2017
|
2
|
+
|
3
|
+
* Rails 5.2
|
4
|
+
* support nanosecond_precision(Support nanosecond precision when sending logs to Fluentd #43)*
|
5
|
+
|
1
6
|
## 0.4.0 / April 29 2017
|
2
7
|
|
3
8
|
* Rails 5.1
|
@@ -12,7 +17,7 @@
|
|
12
17
|
|
13
18
|
## 0.2.0 / Mar 20 2016
|
14
19
|
|
15
|
-
* Add severity_key parameter.
|
20
|
+
* Add severity_key parameter. It is The key of severity(DEBUG, INFO, WARN, ERROR).
|
16
21
|
|
17
22
|
## 0.1.10 / Dec 23 2015
|
18
23
|
|
@@ -20,6 +20,6 @@ Gem::Specification.new do |gem|
|
|
20
20
|
|
21
21
|
gem.add_development_dependency "rspec", '~> 3.5.0'
|
22
22
|
gem.add_runtime_dependency "fluent-logger"
|
23
|
-
gem.add_runtime_dependency "railties", ">= 4", "< 5.
|
24
|
-
gem.add_runtime_dependency "activesupport", ">= 4", "< 5.
|
23
|
+
gem.add_runtime_dependency "railties", ">= 4", "< 5.3"
|
24
|
+
gem.add_runtime_dependency "activesupport", ">= 4", "< 5.3"
|
25
25
|
end
|
data/gemfiles/rails_4.0.gemfile
CHANGED
data/gemfiles/rails_4.1.gemfile
CHANGED
data/gemfiles/rails_4.2.gemfile
CHANGED
data/gemfiles/rails_5.0.gemfile
CHANGED
@@ -37,6 +37,7 @@ module ActFluentLoggerRails
|
|
37
37
|
tag: fluent_config['tag'],
|
38
38
|
host: fluent_config['fluent_host'],
|
39
39
|
port: fluent_config['fluent_port'],
|
40
|
+
nanosecond_precision: fluent_config['nanosecond_precision'],
|
40
41
|
messages_type: fluent_config['messages_type'],
|
41
42
|
severity_key: fluent_config['severity_key'],
|
42
43
|
}
|
@@ -58,6 +59,7 @@ module ActFluentLoggerRails
|
|
58
59
|
fluent_host: uri.host,
|
59
60
|
fluent_port: uri.port,
|
60
61
|
tag: uri.path[1..-1],
|
62
|
+
nanosecond_precision: params['nanosecond_precision'].try(:first),
|
61
63
|
messages_type: params['messages_type'].try(:first),
|
62
64
|
severity_key: params['severity_key'].try(:first),
|
63
65
|
}.stringify_keys
|
@@ -76,11 +78,13 @@ module ActFluentLoggerRails
|
|
76
78
|
self.level = level
|
77
79
|
port = options[:port]
|
78
80
|
host = options[:host]
|
81
|
+
nanosecond_precision = options[:nanosecond_precision]
|
79
82
|
@messages_type = (options[:messages_type] || :array).to_sym
|
80
83
|
@tag = options[:tag]
|
81
84
|
@severity_key = (options[:severity_key] || :severity).to_sym
|
82
85
|
@flush_immediately = options[:flush_immediately]
|
83
|
-
|
86
|
+
logger_opts = {host: host, port: port, nanosecond_precision: nanosecond_precision}
|
87
|
+
@fluent_logger = ::Fluent::Logger::FluentLogger.new(nil, logger_opts)
|
84
88
|
@severity = 0
|
85
89
|
@messages = []
|
86
90
|
@log_tags = log_tags
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: act-fluent-logger-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- TAHARA Yoshinori
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -47,7 +47,7 @@ dependencies:
|
|
47
47
|
version: '4'
|
48
48
|
- - "<"
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version: '5.
|
50
|
+
version: '5.3'
|
51
51
|
type: :runtime
|
52
52
|
prerelease: false
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -57,7 +57,7 @@ dependencies:
|
|
57
57
|
version: '4'
|
58
58
|
- - "<"
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: '5.
|
60
|
+
version: '5.3'
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
62
|
name: activesupport
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
@@ -67,7 +67,7 @@ dependencies:
|
|
67
67
|
version: '4'
|
68
68
|
- - "<"
|
69
69
|
- !ruby/object:Gem::Version
|
70
|
-
version: '5.
|
70
|
+
version: '5.3'
|
71
71
|
type: :runtime
|
72
72
|
prerelease: false
|
73
73
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -77,7 +77,7 @@ dependencies:
|
|
77
77
|
version: '4'
|
78
78
|
- - "<"
|
79
79
|
- !ruby/object:Gem::Version
|
80
|
-
version: '5.
|
80
|
+
version: '5.3'
|
81
81
|
description: Fluent logger
|
82
82
|
email:
|
83
83
|
- read.eval.print@gmail.com
|
@@ -95,15 +95,11 @@ files:
|
|
95
95
|
- Rakefile
|
96
96
|
- act-fluent-logger-rails.gemspec
|
97
97
|
- gemfiles/rails_4.0.gemfile
|
98
|
-
- gemfiles/rails_4.0.gemfile.lock
|
99
98
|
- gemfiles/rails_4.1.gemfile
|
100
|
-
- gemfiles/rails_4.1.gemfile.lock
|
101
99
|
- gemfiles/rails_4.2.gemfile
|
102
|
-
- gemfiles/rails_4.2.gemfile.lock
|
103
100
|
- gemfiles/rails_5.0.gemfile
|
104
|
-
- gemfiles/rails_5.0.gemfile.lock
|
105
101
|
- gemfiles/rails_5.1.gemfile
|
106
|
-
- gemfiles/rails_5.
|
102
|
+
- gemfiles/rails_5.2.gemfile
|
107
103
|
- lib/act-fluent-logger-rails.rb
|
108
104
|
- lib/act-fluent-logger-rails/logger.rb
|
109
105
|
- lib/act-fluent-logger-rails/version.rb
|
@@ -1,74 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ../
|
3
|
-
specs:
|
4
|
-
act-fluent-logger-rails (0.3.0)
|
5
|
-
activesupport (>= 4, < 5.1)
|
6
|
-
fluent-logger
|
7
|
-
railties (>= 4, < 5.1)
|
8
|
-
|
9
|
-
GEM
|
10
|
-
remote: https://rubygems.org/
|
11
|
-
specs:
|
12
|
-
actionpack (4.0.13)
|
13
|
-
activesupport (= 4.0.13)
|
14
|
-
builder (~> 3.1.0)
|
15
|
-
erubis (~> 2.7.0)
|
16
|
-
rack (~> 1.5.2)
|
17
|
-
rack-test (~> 0.6.2)
|
18
|
-
activesupport (4.0.13)
|
19
|
-
i18n (~> 0.6, >= 0.6.9)
|
20
|
-
minitest (~> 4.2)
|
21
|
-
multi_json (~> 1.3)
|
22
|
-
thread_safe (~> 0.1)
|
23
|
-
tzinfo (~> 0.3.37)
|
24
|
-
appraisal (2.1.0)
|
25
|
-
bundler
|
26
|
-
rake
|
27
|
-
thor (>= 0.14.0)
|
28
|
-
builder (3.1.4)
|
29
|
-
diff-lcs (1.2.5)
|
30
|
-
erubis (2.7.0)
|
31
|
-
fluent-logger (0.5.1)
|
32
|
-
msgpack (>= 0.4.4, < 0.6.0, != 0.5.3, != 0.5.2, != 0.5.1, != 0.5.0)
|
33
|
-
i18n (0.7.0)
|
34
|
-
minitest (4.7.5)
|
35
|
-
msgpack (0.5.12)
|
36
|
-
multi_json (1.12.1)
|
37
|
-
rack (1.5.5)
|
38
|
-
rack-test (0.6.3)
|
39
|
-
rack (>= 1.0)
|
40
|
-
railties (4.0.13)
|
41
|
-
actionpack (= 4.0.13)
|
42
|
-
activesupport (= 4.0.13)
|
43
|
-
rake (>= 0.8.7)
|
44
|
-
thor (>= 0.18.1, < 2.0)
|
45
|
-
rake (11.2.2)
|
46
|
-
rspec (3.5.0)
|
47
|
-
rspec-core (~> 3.5.0)
|
48
|
-
rspec-expectations (~> 3.5.0)
|
49
|
-
rspec-mocks (~> 3.5.0)
|
50
|
-
rspec-core (3.5.0)
|
51
|
-
rspec-support (~> 3.5.0)
|
52
|
-
rspec-expectations (3.5.0)
|
53
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
54
|
-
rspec-support (~> 3.5.0)
|
55
|
-
rspec-mocks (3.5.0)
|
56
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
57
|
-
rspec-support (~> 3.5.0)
|
58
|
-
rspec-support (3.5.0)
|
59
|
-
thor (0.19.1)
|
60
|
-
thread_safe (0.3.5)
|
61
|
-
tzinfo (0.3.50)
|
62
|
-
|
63
|
-
PLATFORMS
|
64
|
-
ruby
|
65
|
-
|
66
|
-
DEPENDENCIES
|
67
|
-
act-fluent-logger-rails!
|
68
|
-
activesupport (= 4.0.13)
|
69
|
-
appraisal
|
70
|
-
railties (= 4.0.13)
|
71
|
-
rspec (~> 3.5.0)
|
72
|
-
|
73
|
-
BUNDLED WITH
|
74
|
-
1.12.5
|
@@ -1,78 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ../
|
3
|
-
specs:
|
4
|
-
act-fluent-logger-rails (0.3.0)
|
5
|
-
activesupport (>= 4, < 5.1)
|
6
|
-
fluent-logger
|
7
|
-
railties (>= 4, < 5.1)
|
8
|
-
|
9
|
-
GEM
|
10
|
-
remote: https://rubygems.org/
|
11
|
-
specs:
|
12
|
-
actionpack (4.1.15)
|
13
|
-
actionview (= 4.1.15)
|
14
|
-
activesupport (= 4.1.15)
|
15
|
-
rack (~> 1.5.2)
|
16
|
-
rack-test (~> 0.6.2)
|
17
|
-
actionview (4.1.15)
|
18
|
-
activesupport (= 4.1.15)
|
19
|
-
builder (~> 3.1)
|
20
|
-
erubis (~> 2.7.0)
|
21
|
-
activesupport (4.1.15)
|
22
|
-
i18n (~> 0.6, >= 0.6.9)
|
23
|
-
json (~> 1.7, >= 1.7.7)
|
24
|
-
minitest (~> 5.1)
|
25
|
-
thread_safe (~> 0.1)
|
26
|
-
tzinfo (~> 1.1)
|
27
|
-
appraisal (2.1.0)
|
28
|
-
bundler
|
29
|
-
rake
|
30
|
-
thor (>= 0.14.0)
|
31
|
-
builder (3.2.2)
|
32
|
-
diff-lcs (1.2.5)
|
33
|
-
erubis (2.7.0)
|
34
|
-
fluent-logger (0.5.1)
|
35
|
-
msgpack (>= 0.4.4, < 0.6.0, != 0.5.3, != 0.5.2, != 0.5.1, != 0.5.0)
|
36
|
-
i18n (0.7.0)
|
37
|
-
json (1.8.3)
|
38
|
-
minitest (5.9.0)
|
39
|
-
msgpack (0.5.12)
|
40
|
-
rack (1.5.5)
|
41
|
-
rack-test (0.6.3)
|
42
|
-
rack (>= 1.0)
|
43
|
-
railties (4.1.15)
|
44
|
-
actionpack (= 4.1.15)
|
45
|
-
activesupport (= 4.1.15)
|
46
|
-
rake (>= 0.8.7)
|
47
|
-
thor (>= 0.18.1, < 2.0)
|
48
|
-
rake (11.2.2)
|
49
|
-
rspec (3.5.0)
|
50
|
-
rspec-core (~> 3.5.0)
|
51
|
-
rspec-expectations (~> 3.5.0)
|
52
|
-
rspec-mocks (~> 3.5.0)
|
53
|
-
rspec-core (3.5.0)
|
54
|
-
rspec-support (~> 3.5.0)
|
55
|
-
rspec-expectations (3.5.0)
|
56
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
57
|
-
rspec-support (~> 3.5.0)
|
58
|
-
rspec-mocks (3.5.0)
|
59
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
60
|
-
rspec-support (~> 3.5.0)
|
61
|
-
rspec-support (3.5.0)
|
62
|
-
thor (0.19.1)
|
63
|
-
thread_safe (0.3.5)
|
64
|
-
tzinfo (1.2.2)
|
65
|
-
thread_safe (~> 0.1)
|
66
|
-
|
67
|
-
PLATFORMS
|
68
|
-
ruby
|
69
|
-
|
70
|
-
DEPENDENCIES
|
71
|
-
act-fluent-logger-rails!
|
72
|
-
activesupport (= 4.1.15)
|
73
|
-
appraisal
|
74
|
-
railties (= 4.1.15)
|
75
|
-
rspec (~> 3.5.0)
|
76
|
-
|
77
|
-
BUNDLED WITH
|
78
|
-
1.12.5
|
@@ -1,97 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ../
|
3
|
-
specs:
|
4
|
-
act-fluent-logger-rails (0.3.0)
|
5
|
-
activesupport (>= 4, < 5.1)
|
6
|
-
fluent-logger
|
7
|
-
railties (>= 4, < 5.1)
|
8
|
-
|
9
|
-
GEM
|
10
|
-
remote: https://rubygems.org/
|
11
|
-
specs:
|
12
|
-
actionpack (4.2.6)
|
13
|
-
actionview (= 4.2.6)
|
14
|
-
activesupport (= 4.2.6)
|
15
|
-
rack (~> 1.6)
|
16
|
-
rack-test (~> 0.6.2)
|
17
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
18
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
19
|
-
actionview (4.2.6)
|
20
|
-
activesupport (= 4.2.6)
|
21
|
-
builder (~> 3.1)
|
22
|
-
erubis (~> 2.7.0)
|
23
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
24
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
25
|
-
activesupport (4.2.6)
|
26
|
-
i18n (~> 0.7)
|
27
|
-
json (~> 1.7, >= 1.7.7)
|
28
|
-
minitest (~> 5.1)
|
29
|
-
thread_safe (~> 0.3, >= 0.3.4)
|
30
|
-
tzinfo (~> 1.1)
|
31
|
-
appraisal (2.1.0)
|
32
|
-
bundler
|
33
|
-
rake
|
34
|
-
thor (>= 0.14.0)
|
35
|
-
builder (3.2.2)
|
36
|
-
diff-lcs (1.2.5)
|
37
|
-
erubis (2.7.0)
|
38
|
-
fluent-logger (0.5.1)
|
39
|
-
msgpack (>= 0.4.4, < 0.6.0, != 0.5.3, != 0.5.2, != 0.5.1, != 0.5.0)
|
40
|
-
i18n (0.7.0)
|
41
|
-
json (1.8.3)
|
42
|
-
loofah (2.0.3)
|
43
|
-
nokogiri (>= 1.5.9)
|
44
|
-
mini_portile2 (2.1.0)
|
45
|
-
minitest (5.9.0)
|
46
|
-
msgpack (0.5.12)
|
47
|
-
nokogiri (1.6.8)
|
48
|
-
mini_portile2 (~> 2.1.0)
|
49
|
-
pkg-config (~> 1.1.7)
|
50
|
-
pkg-config (1.1.7)
|
51
|
-
rack (1.6.4)
|
52
|
-
rack-test (0.6.3)
|
53
|
-
rack (>= 1.0)
|
54
|
-
rails-deprecated_sanitizer (1.0.3)
|
55
|
-
activesupport (>= 4.2.0.alpha)
|
56
|
-
rails-dom-testing (1.0.7)
|
57
|
-
activesupport (>= 4.2.0.beta, < 5.0)
|
58
|
-
nokogiri (~> 1.6.0)
|
59
|
-
rails-deprecated_sanitizer (>= 1.0.1)
|
60
|
-
rails-html-sanitizer (1.0.3)
|
61
|
-
loofah (~> 2.0)
|
62
|
-
railties (4.2.6)
|
63
|
-
actionpack (= 4.2.6)
|
64
|
-
activesupport (= 4.2.6)
|
65
|
-
rake (>= 0.8.7)
|
66
|
-
thor (>= 0.18.1, < 2.0)
|
67
|
-
rake (11.2.2)
|
68
|
-
rspec (3.5.0)
|
69
|
-
rspec-core (~> 3.5.0)
|
70
|
-
rspec-expectations (~> 3.5.0)
|
71
|
-
rspec-mocks (~> 3.5.0)
|
72
|
-
rspec-core (3.5.0)
|
73
|
-
rspec-support (~> 3.5.0)
|
74
|
-
rspec-expectations (3.5.0)
|
75
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
76
|
-
rspec-support (~> 3.5.0)
|
77
|
-
rspec-mocks (3.5.0)
|
78
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
79
|
-
rspec-support (~> 3.5.0)
|
80
|
-
rspec-support (3.5.0)
|
81
|
-
thor (0.19.1)
|
82
|
-
thread_safe (0.3.5)
|
83
|
-
tzinfo (1.2.2)
|
84
|
-
thread_safe (~> 0.1)
|
85
|
-
|
86
|
-
PLATFORMS
|
87
|
-
ruby
|
88
|
-
|
89
|
-
DEPENDENCIES
|
90
|
-
act-fluent-logger-rails!
|
91
|
-
activesupport (= 4.2.6)
|
92
|
-
appraisal
|
93
|
-
railties (= 4.2.6)
|
94
|
-
rspec (~> 3.5.0)
|
95
|
-
|
96
|
-
BUNDLED WITH
|
97
|
-
1.12.5
|
@@ -1,95 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ../
|
3
|
-
specs:
|
4
|
-
act-fluent-logger-rails (0.3.0)
|
5
|
-
activesupport (>= 4, < 5.1)
|
6
|
-
fluent-logger
|
7
|
-
railties (>= 4, < 5.1)
|
8
|
-
|
9
|
-
GEM
|
10
|
-
remote: https://rubygems.org/
|
11
|
-
specs:
|
12
|
-
actionpack (5.0.0)
|
13
|
-
actionview (= 5.0.0)
|
14
|
-
activesupport (= 5.0.0)
|
15
|
-
rack (~> 2.0)
|
16
|
-
rack-test (~> 0.6.3)
|
17
|
-
rails-dom-testing (~> 2.0)
|
18
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
19
|
-
actionview (5.0.0)
|
20
|
-
activesupport (= 5.0.0)
|
21
|
-
builder (~> 3.1)
|
22
|
-
erubis (~> 2.7.0)
|
23
|
-
rails-dom-testing (~> 2.0)
|
24
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
25
|
-
activesupport (5.0.0)
|
26
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
27
|
-
i18n (~> 0.7)
|
28
|
-
minitest (~> 5.1)
|
29
|
-
tzinfo (~> 1.1)
|
30
|
-
appraisal (2.1.0)
|
31
|
-
bundler
|
32
|
-
rake
|
33
|
-
thor (>= 0.14.0)
|
34
|
-
builder (3.2.2)
|
35
|
-
concurrent-ruby (1.0.2)
|
36
|
-
diff-lcs (1.2.5)
|
37
|
-
erubis (2.7.0)
|
38
|
-
fluent-logger (0.5.1)
|
39
|
-
msgpack (>= 0.4.4, < 0.6.0, != 0.5.3, != 0.5.2, != 0.5.1, != 0.5.0)
|
40
|
-
i18n (0.7.0)
|
41
|
-
loofah (2.0.3)
|
42
|
-
nokogiri (>= 1.5.9)
|
43
|
-
method_source (0.8.2)
|
44
|
-
mini_portile2 (2.1.0)
|
45
|
-
minitest (5.9.0)
|
46
|
-
msgpack (0.5.12)
|
47
|
-
nokogiri (1.6.8)
|
48
|
-
mini_portile2 (~> 2.1.0)
|
49
|
-
pkg-config (~> 1.1.7)
|
50
|
-
pkg-config (1.1.7)
|
51
|
-
rack (2.0.1)
|
52
|
-
rack-test (0.6.3)
|
53
|
-
rack (>= 1.0)
|
54
|
-
rails-dom-testing (2.0.1)
|
55
|
-
activesupport (>= 4.2.0, < 6.0)
|
56
|
-
nokogiri (~> 1.6.0)
|
57
|
-
rails-html-sanitizer (1.0.3)
|
58
|
-
loofah (~> 2.0)
|
59
|
-
railties (5.0.0)
|
60
|
-
actionpack (= 5.0.0)
|
61
|
-
activesupport (= 5.0.0)
|
62
|
-
method_source
|
63
|
-
rake (>= 0.8.7)
|
64
|
-
thor (>= 0.18.1, < 2.0)
|
65
|
-
rake (11.2.2)
|
66
|
-
rspec (3.5.0)
|
67
|
-
rspec-core (~> 3.5.0)
|
68
|
-
rspec-expectations (~> 3.5.0)
|
69
|
-
rspec-mocks (~> 3.5.0)
|
70
|
-
rspec-core (3.5.0)
|
71
|
-
rspec-support (~> 3.5.0)
|
72
|
-
rspec-expectations (3.5.0)
|
73
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
74
|
-
rspec-support (~> 3.5.0)
|
75
|
-
rspec-mocks (3.5.0)
|
76
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
77
|
-
rspec-support (~> 3.5.0)
|
78
|
-
rspec-support (3.5.0)
|
79
|
-
thor (0.19.1)
|
80
|
-
thread_safe (0.3.5)
|
81
|
-
tzinfo (1.2.2)
|
82
|
-
thread_safe (~> 0.1)
|
83
|
-
|
84
|
-
PLATFORMS
|
85
|
-
ruby
|
86
|
-
|
87
|
-
DEPENDENCIES
|
88
|
-
act-fluent-logger-rails!
|
89
|
-
activesupport (= 5.0.0)
|
90
|
-
appraisal
|
91
|
-
railties (= 5.0.0)
|
92
|
-
rspec (~> 3.5.0)
|
93
|
-
|
94
|
-
BUNDLED WITH
|
95
|
-
1.12.5
|
@@ -1,93 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
act-fluent-logger-rails (0.3.1)
|
5
|
-
activesupport (>= 4, < 5.2)
|
6
|
-
fluent-logger
|
7
|
-
railties (>= 4, < 5.2)
|
8
|
-
|
9
|
-
GEM
|
10
|
-
remote: https://rubygems.org/
|
11
|
-
specs:
|
12
|
-
actionpack (5.1.0)
|
13
|
-
actionview (= 5.1.0)
|
14
|
-
activesupport (= 5.1.0)
|
15
|
-
rack (~> 2.0)
|
16
|
-
rack-test (~> 0.6.3)
|
17
|
-
rails-dom-testing (~> 2.0)
|
18
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
19
|
-
actionview (5.1.0)
|
20
|
-
activesupport (= 5.1.0)
|
21
|
-
builder (~> 3.1)
|
22
|
-
erubi (~> 1.4)
|
23
|
-
rails-dom-testing (~> 2.0)
|
24
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
25
|
-
activesupport (5.1.0)
|
26
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
27
|
-
i18n (~> 0.7)
|
28
|
-
minitest (~> 5.1)
|
29
|
-
tzinfo (~> 1.1)
|
30
|
-
appraisal (2.2.0)
|
31
|
-
bundler
|
32
|
-
rake
|
33
|
-
thor (>= 0.14.0)
|
34
|
-
builder (3.2.3)
|
35
|
-
concurrent-ruby (1.0.5)
|
36
|
-
diff-lcs (1.3)
|
37
|
-
erubi (1.6.0)
|
38
|
-
fluent-logger (0.7.1)
|
39
|
-
msgpack (>= 1.0.0, < 2)
|
40
|
-
i18n (0.8.1)
|
41
|
-
loofah (2.0.3)
|
42
|
-
nokogiri (>= 1.5.9)
|
43
|
-
method_source (0.8.2)
|
44
|
-
mini_portile2 (2.1.0)
|
45
|
-
minitest (5.10.1)
|
46
|
-
msgpack (1.1.0)
|
47
|
-
nokogiri (1.7.1)
|
48
|
-
mini_portile2 (~> 2.1.0)
|
49
|
-
rack (2.0.1)
|
50
|
-
rack-test (0.6.3)
|
51
|
-
rack (>= 1.0)
|
52
|
-
rails-dom-testing (2.0.2)
|
53
|
-
activesupport (>= 4.2.0, < 6.0)
|
54
|
-
nokogiri (~> 1.6)
|
55
|
-
rails-html-sanitizer (1.0.3)
|
56
|
-
loofah (~> 2.0)
|
57
|
-
railties (5.1.0)
|
58
|
-
actionpack (= 5.1.0)
|
59
|
-
activesupport (= 5.1.0)
|
60
|
-
method_source
|
61
|
-
rake (>= 0.8.7)
|
62
|
-
thor (>= 0.18.1, < 2.0)
|
63
|
-
rake (12.0.0)
|
64
|
-
rspec (3.5.0)
|
65
|
-
rspec-core (~> 3.5.0)
|
66
|
-
rspec-expectations (~> 3.5.0)
|
67
|
-
rspec-mocks (~> 3.5.0)
|
68
|
-
rspec-core (3.5.4)
|
69
|
-
rspec-support (~> 3.5.0)
|
70
|
-
rspec-expectations (3.5.0)
|
71
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
72
|
-
rspec-support (~> 3.5.0)
|
73
|
-
rspec-mocks (3.5.0)
|
74
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
75
|
-
rspec-support (~> 3.5.0)
|
76
|
-
rspec-support (3.5.0)
|
77
|
-
thor (0.19.4)
|
78
|
-
thread_safe (0.3.6)
|
79
|
-
tzinfo (1.2.3)
|
80
|
-
thread_safe (~> 0.1)
|
81
|
-
|
82
|
-
PLATFORMS
|
83
|
-
ruby
|
84
|
-
|
85
|
-
DEPENDENCIES
|
86
|
-
act-fluent-logger-rails!
|
87
|
-
activesupport (= 5.1.0)
|
88
|
-
appraisal
|
89
|
-
railties (= 5.1.0)
|
90
|
-
rspec (~> 3.5.0)
|
91
|
-
|
92
|
-
BUNDLED WITH
|
93
|
-
1.14.6
|