act-fluent-logger-rails 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 04d055709961370ec26fc8ab6ee6b3baed0082c7
4
- data.tar.gz: 5a95cb9fb40bb95be1d78eb97c4793f1609bff00
3
+ metadata.gz: f0834dba9426994161c913acff5c6627043aa523
4
+ data.tar.gz: 93b491bffed255d88e9af788f46d5c5fdabd060e
5
5
  SHA512:
6
- metadata.gz: 46a6fa9fc3e7242266a2e73fb6dba526d34d91e4123497dabdcf970b01c62f665765acc9592b90a9593a1e5eca2866627977d91cd6a6d11cd09dcced720d2fdf
7
- data.tar.gz: 06e933dd15de557d22890c6d0adbdd25260e21278598f6f17d5292f8b7cf96f86e67161114b6e681b0c8e99932628ab7b79274521fac59b92eadbaffc3cbfb17
6
+ metadata.gz: a64860e00dc6563cda6746461d5bac1feca9a8094dbdd7f12a2eefcf1f9f5349e5b1135972557ef0da9f48533631b6158cacf454a496e6f3bb2fb3236e16d445
7
+ data.tar.gz: 38eacf10ee7ae321e956b16412b7a2343b8f3212d6bed8e988f31186f7e315b6e07b6e66dfb19087f4a046cd4c850736a8593c233dcb9047a325b4ebe64397ea
data/Appraisals CHANGED
@@ -1,15 +1,19 @@
1
1
  appraise 'rails-4.0' do
2
- gem 'rails', '4.0.13'
2
+ gem 'railties', '4.0.13'
3
+ gem 'activesupport', '4.0.13'
3
4
  end
4
5
 
5
6
  appraise 'rails-4.1' do
6
- gem 'rails', '4.1.15'
7
+ gem 'railties', '4.1.15'
8
+ gem 'activesupport', '4.1.15'
7
9
  end
8
10
 
9
11
  appraise 'rails-4.2' do
10
- gem 'rails', '4.2.6'
12
+ gem 'railties', '4.2.6'
13
+ gem 'activesupport', '4.2.6'
11
14
  end
12
15
 
13
16
  appraise 'rails-5.0' do
14
- gem 'rails', '5.0.0'
17
+ gem 'railties', '5.0.0'
18
+ gem 'activesupport', '5.0.0'
15
19
  end
@@ -1,3 +1,7 @@
1
+ ## 0.3.1 / August 18 2016
2
+
3
+ * Replace dependency from rails to railties and activesupport.
4
+
1
5
  ## 0.3.0 / July 12 2016
2
6
 
3
7
  * Rails 5
@@ -20,5 +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 "rails", ">= 4", "< 5.1"
23
+ gem.add_runtime_dependency "railties", ">= 4", "< 5.1"
24
+ gem.add_runtime_dependency "activesupport", ">= 4", "< 5.1"
24
25
  end
@@ -3,6 +3,7 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "rails", "4.0.13"
6
+ gem "railties", "4.0.13"
7
+ gem "activesupport", "4.0.13"
7
8
 
8
9
  gemspec :path => "../"
@@ -2,30 +2,19 @@ PATH
2
2
  remote: ../
3
3
  specs:
4
4
  act-fluent-logger-rails (0.3.0)
5
+ activesupport (>= 4, < 5.1)
5
6
  fluent-logger
6
- rails (>= 4, < 5.1)
7
+ railties (>= 4, < 5.1)
7
8
 
8
9
  GEM
9
10
  remote: https://rubygems.org/
10
11
  specs:
11
- actionmailer (4.0.13)
12
- actionpack (= 4.0.13)
13
- mail (~> 2.5, >= 2.5.4)
14
12
  actionpack (4.0.13)
15
13
  activesupport (= 4.0.13)
16
14
  builder (~> 3.1.0)
17
15
  erubis (~> 2.7.0)
18
16
  rack (~> 1.5.2)
19
17
  rack-test (~> 0.6.2)
20
- activemodel (4.0.13)
21
- activesupport (= 4.0.13)
22
- builder (~> 3.1.0)
23
- activerecord (4.0.13)
24
- activemodel (= 4.0.13)
25
- activerecord-deprecated_finders (~> 1.0.2)
26
- activesupport (= 4.0.13)
27
- arel (~> 4.0.0)
28
- activerecord-deprecated_finders (1.0.4)
29
18
  activesupport (4.0.13)
30
19
  i18n (~> 0.6, >= 0.6.9)
31
20
  minitest (~> 4.2)
@@ -36,33 +25,18 @@ GEM
36
25
  bundler
37
26
  rake
38
27
  thor (>= 0.14.0)
39
- arel (4.0.2)
40
28
  builder (3.1.4)
41
- concurrent-ruby (1.0.2)
42
29
  diff-lcs (1.2.5)
43
30
  erubis (2.7.0)
44
31
  fluent-logger (0.5.1)
45
32
  msgpack (>= 0.4.4, < 0.6.0, != 0.5.3, != 0.5.2, != 0.5.1, != 0.5.0)
46
33
  i18n (0.7.0)
47
- mail (2.6.4)
48
- mime-types (>= 1.16, < 4)
49
- mime-types (3.1)
50
- mime-types-data (~> 3.2015)
51
- mime-types-data (3.2016.0521)
52
34
  minitest (4.7.5)
53
35
  msgpack (0.5.12)
54
36
  multi_json (1.12.1)
55
37
  rack (1.5.5)
56
38
  rack-test (0.6.3)
57
39
  rack (>= 1.0)
58
- rails (4.0.13)
59
- actionmailer (= 4.0.13)
60
- actionpack (= 4.0.13)
61
- activerecord (= 4.0.13)
62
- activesupport (= 4.0.13)
63
- bundler (>= 1.3.0, < 2.0)
64
- railties (= 4.0.13)
65
- sprockets-rails (~> 2.0)
66
40
  railties (4.0.13)
67
41
  actionpack (= 4.0.13)
68
42
  activesupport (= 4.0.13)
@@ -82,13 +56,6 @@ GEM
82
56
  diff-lcs (>= 1.2.0, < 2.0)
83
57
  rspec-support (~> 3.5.0)
84
58
  rspec-support (3.5.0)
85
- sprockets (3.6.3)
86
- concurrent-ruby (~> 1.0)
87
- rack (> 1, < 3)
88
- sprockets-rails (2.3.3)
89
- actionpack (>= 3.0)
90
- activesupport (>= 3.0)
91
- sprockets (>= 2.8, < 4.0)
92
59
  thor (0.19.1)
93
60
  thread_safe (0.3.5)
94
61
  tzinfo (0.3.50)
@@ -98,8 +65,9 @@ PLATFORMS
98
65
 
99
66
  DEPENDENCIES
100
67
  act-fluent-logger-rails!
68
+ activesupport (= 4.0.13)
101
69
  appraisal
102
- rails (= 4.0.13)
70
+ railties (= 4.0.13)
103
71
  rspec (~> 3.5.0)
104
72
 
105
73
  BUNDLED WITH
@@ -3,6 +3,7 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "rails", "4.1.15"
6
+ gem "railties", "4.1.15"
7
+ gem "activesupport", "4.1.15"
7
8
 
8
9
  gemspec :path => "../"
@@ -2,16 +2,13 @@ PATH
2
2
  remote: ../
3
3
  specs:
4
4
  act-fluent-logger-rails (0.3.0)
5
+ activesupport (>= 4, < 5.1)
5
6
  fluent-logger
6
- rails (>= 4, < 5.1)
7
+ railties (>= 4, < 5.1)
7
8
 
8
9
  GEM
9
10
  remote: https://rubygems.org/
10
11
  specs:
11
- actionmailer (4.1.15)
12
- actionpack (= 4.1.15)
13
- actionview (= 4.1.15)
14
- mail (~> 2.5, >= 2.5.4)
15
12
  actionpack (4.1.15)
16
13
  actionview (= 4.1.15)
17
14
  activesupport (= 4.1.15)
@@ -21,13 +18,6 @@ GEM
21
18
  activesupport (= 4.1.15)
22
19
  builder (~> 3.1)
23
20
  erubis (~> 2.7.0)
24
- activemodel (4.1.15)
25
- activesupport (= 4.1.15)
26
- builder (~> 3.1)
27
- activerecord (4.1.15)
28
- activemodel (= 4.1.15)
29
- activesupport (= 4.1.15)
30
- arel (~> 5.0.0)
31
21
  activesupport (4.1.15)
32
22
  i18n (~> 0.6, >= 0.6.9)
33
23
  json (~> 1.7, >= 1.7.7)
@@ -38,35 +28,18 @@ GEM
38
28
  bundler
39
29
  rake
40
30
  thor (>= 0.14.0)
41
- arel (5.0.1.20140414130214)
42
31
  builder (3.2.2)
43
- concurrent-ruby (1.0.2)
44
32
  diff-lcs (1.2.5)
45
33
  erubis (2.7.0)
46
34
  fluent-logger (0.5.1)
47
35
  msgpack (>= 0.4.4, < 0.6.0, != 0.5.3, != 0.5.2, != 0.5.1, != 0.5.0)
48
36
  i18n (0.7.0)
49
37
  json (1.8.3)
50
- mail (2.6.4)
51
- mime-types (>= 1.16, < 4)
52
- mime-types (3.1)
53
- mime-types-data (~> 3.2015)
54
- mime-types-data (3.2016.0521)
55
38
  minitest (5.9.0)
56
39
  msgpack (0.5.12)
57
40
  rack (1.5.5)
58
41
  rack-test (0.6.3)
59
42
  rack (>= 1.0)
60
- rails (4.1.15)
61
- actionmailer (= 4.1.15)
62
- actionpack (= 4.1.15)
63
- actionview (= 4.1.15)
64
- activemodel (= 4.1.15)
65
- activerecord (= 4.1.15)
66
- activesupport (= 4.1.15)
67
- bundler (>= 1.3.0, < 2.0)
68
- railties (= 4.1.15)
69
- sprockets-rails (~> 2.0)
70
43
  railties (4.1.15)
71
44
  actionpack (= 4.1.15)
72
45
  activesupport (= 4.1.15)
@@ -86,13 +59,6 @@ GEM
86
59
  diff-lcs (>= 1.2.0, < 2.0)
87
60
  rspec-support (~> 3.5.0)
88
61
  rspec-support (3.5.0)
89
- sprockets (3.6.3)
90
- concurrent-ruby (~> 1.0)
91
- rack (> 1, < 3)
92
- sprockets-rails (2.3.3)
93
- actionpack (>= 3.0)
94
- activesupport (>= 3.0)
95
- sprockets (>= 2.8, < 4.0)
96
62
  thor (0.19.1)
97
63
  thread_safe (0.3.5)
98
64
  tzinfo (1.2.2)
@@ -103,8 +69,9 @@ PLATFORMS
103
69
 
104
70
  DEPENDENCIES
105
71
  act-fluent-logger-rails!
72
+ activesupport (= 4.1.15)
106
73
  appraisal
107
- rails (= 4.1.15)
74
+ railties (= 4.1.15)
108
75
  rspec (~> 3.5.0)
109
76
 
110
77
  BUNDLED WITH
@@ -3,6 +3,7 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "rails", "4.2.6"
6
+ gem "railties", "4.2.6"
7
+ gem "activesupport", "4.2.6"
7
8
 
8
9
  gemspec :path => "../"
@@ -2,18 +2,13 @@ PATH
2
2
  remote: ../
3
3
  specs:
4
4
  act-fluent-logger-rails (0.3.0)
5
+ activesupport (>= 4, < 5.1)
5
6
  fluent-logger
6
- rails (>= 4, < 5.1)
7
+ railties (>= 4, < 5.1)
7
8
 
8
9
  GEM
9
10
  remote: https://rubygems.org/
10
11
  specs:
11
- actionmailer (4.2.6)
12
- actionpack (= 4.2.6)
13
- actionview (= 4.2.6)
14
- activejob (= 4.2.6)
15
- mail (~> 2.5, >= 2.5.4)
16
- rails-dom-testing (~> 1.0, >= 1.0.5)
17
12
  actionpack (4.2.6)
18
13
  actionview (= 4.2.6)
19
14
  activesupport (= 4.2.6)
@@ -27,16 +22,6 @@ GEM
27
22
  erubis (~> 2.7.0)
28
23
  rails-dom-testing (~> 1.0, >= 1.0.5)
29
24
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
30
- activejob (4.2.6)
31
- activesupport (= 4.2.6)
32
- globalid (>= 0.3.0)
33
- activemodel (4.2.6)
34
- activesupport (= 4.2.6)
35
- builder (~> 3.1)
36
- activerecord (4.2.6)
37
- activemodel (= 4.2.6)
38
- activesupport (= 4.2.6)
39
- arel (~> 6.0)
40
25
  activesupport (4.2.6)
41
26
  i18n (~> 0.7)
42
27
  json (~> 1.7, >= 1.7.7)
@@ -47,24 +32,15 @@ GEM
47
32
  bundler
48
33
  rake
49
34
  thor (>= 0.14.0)
50
- arel (6.0.3)
51
35
  builder (3.2.2)
52
- concurrent-ruby (1.0.2)
53
36
  diff-lcs (1.2.5)
54
37
  erubis (2.7.0)
55
38
  fluent-logger (0.5.1)
56
39
  msgpack (>= 0.4.4, < 0.6.0, != 0.5.3, != 0.5.2, != 0.5.1, != 0.5.0)
57
- globalid (0.3.6)
58
- activesupport (>= 4.1.0)
59
40
  i18n (0.7.0)
60
41
  json (1.8.3)
61
42
  loofah (2.0.3)
62
43
  nokogiri (>= 1.5.9)
63
- mail (2.6.4)
64
- mime-types (>= 1.16, < 4)
65
- mime-types (3.1)
66
- mime-types-data (~> 3.2015)
67
- mime-types-data (3.2016.0521)
68
44
  mini_portile2 (2.1.0)
69
45
  minitest (5.9.0)
70
46
  msgpack (0.5.12)
@@ -75,17 +51,6 @@ GEM
75
51
  rack (1.6.4)
76
52
  rack-test (0.6.3)
77
53
  rack (>= 1.0)
78
- rails (4.2.6)
79
- actionmailer (= 4.2.6)
80
- actionpack (= 4.2.6)
81
- actionview (= 4.2.6)
82
- activejob (= 4.2.6)
83
- activemodel (= 4.2.6)
84
- activerecord (= 4.2.6)
85
- activesupport (= 4.2.6)
86
- bundler (>= 1.3.0, < 2.0)
87
- railties (= 4.2.6)
88
- sprockets-rails
89
54
  rails-deprecated_sanitizer (1.0.3)
90
55
  activesupport (>= 4.2.0.alpha)
91
56
  rails-dom-testing (1.0.7)
@@ -113,13 +78,6 @@ GEM
113
78
  diff-lcs (>= 1.2.0, < 2.0)
114
79
  rspec-support (~> 3.5.0)
115
80
  rspec-support (3.5.0)
116
- sprockets (3.6.3)
117
- concurrent-ruby (~> 1.0)
118
- rack (> 1, < 3)
119
- sprockets-rails (3.1.1)
120
- actionpack (>= 4.0)
121
- activesupport (>= 4.0)
122
- sprockets (>= 3.0.0)
123
81
  thor (0.19.1)
124
82
  thread_safe (0.3.5)
125
83
  tzinfo (1.2.2)
@@ -130,8 +88,9 @@ PLATFORMS
130
88
 
131
89
  DEPENDENCIES
132
90
  act-fluent-logger-rails!
91
+ activesupport (= 4.2.6)
133
92
  appraisal
134
- rails (= 4.2.6)
93
+ railties (= 4.2.6)
135
94
  rspec (~> 3.5.0)
136
95
 
137
96
  BUNDLED WITH
@@ -3,6 +3,7 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "rails", "5.0.0"
6
+ gem "railties", "5.0.0"
7
+ gem "activesupport", "5.0.0"
7
8
 
8
9
  gemspec :path => "../"
@@ -2,22 +2,13 @@ PATH
2
2
  remote: ../
3
3
  specs:
4
4
  act-fluent-logger-rails (0.3.0)
5
+ activesupport (>= 4, < 5.1)
5
6
  fluent-logger
6
- rails (>= 4, < 5.1)
7
+ railties (>= 4, < 5.1)
7
8
 
8
9
  GEM
9
10
  remote: https://rubygems.org/
10
11
  specs:
11
- actioncable (5.0.0)
12
- actionpack (= 5.0.0)
13
- nio4r (~> 1.2)
14
- websocket-driver (~> 0.6.1)
15
- actionmailer (5.0.0)
16
- actionpack (= 5.0.0)
17
- actionview (= 5.0.0)
18
- activejob (= 5.0.0)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
12
  actionpack (5.0.0)
22
13
  actionview (= 5.0.0)
23
14
  activesupport (= 5.0.0)
@@ -31,15 +22,6 @@ GEM
31
22
  erubis (~> 2.7.0)
32
23
  rails-dom-testing (~> 2.0)
33
24
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
34
- activejob (5.0.0)
35
- activesupport (= 5.0.0)
36
- globalid (>= 0.3.6)
37
- activemodel (5.0.0)
38
- activesupport (= 5.0.0)
39
- activerecord (5.0.0)
40
- activemodel (= 5.0.0)
41
- activesupport (= 5.0.0)
42
- arel (~> 7.0)
43
25
  activesupport (5.0.0)
44
26
  concurrent-ruby (~> 1.0, >= 1.0.2)
45
27
  i18n (~> 0.7)
@@ -49,28 +31,19 @@ GEM
49
31
  bundler
50
32
  rake
51
33
  thor (>= 0.14.0)
52
- arel (7.0.0)
53
34
  builder (3.2.2)
54
35
  concurrent-ruby (1.0.2)
55
36
  diff-lcs (1.2.5)
56
37
  erubis (2.7.0)
57
38
  fluent-logger (0.5.1)
58
39
  msgpack (>= 0.4.4, < 0.6.0, != 0.5.3, != 0.5.2, != 0.5.1, != 0.5.0)
59
- globalid (0.3.6)
60
- activesupport (>= 4.1.0)
61
40
  i18n (0.7.0)
62
41
  loofah (2.0.3)
63
42
  nokogiri (>= 1.5.9)
64
- mail (2.6.4)
65
- mime-types (>= 1.16, < 4)
66
43
  method_source (0.8.2)
67
- mime-types (3.1)
68
- mime-types-data (~> 3.2015)
69
- mime-types-data (3.2016.0521)
70
44
  mini_portile2 (2.1.0)
71
45
  minitest (5.9.0)
72
46
  msgpack (0.5.12)
73
- nio4r (1.2.1)
74
47
  nokogiri (1.6.8)
75
48
  mini_portile2 (~> 2.1.0)
76
49
  pkg-config (~> 1.1.7)
@@ -78,18 +51,6 @@ GEM
78
51
  rack (2.0.1)
79
52
  rack-test (0.6.3)
80
53
  rack (>= 1.0)
81
- rails (5.0.0)
82
- actioncable (= 5.0.0)
83
- actionmailer (= 5.0.0)
84
- actionpack (= 5.0.0)
85
- actionview (= 5.0.0)
86
- activejob (= 5.0.0)
87
- activemodel (= 5.0.0)
88
- activerecord (= 5.0.0)
89
- activesupport (= 5.0.0)
90
- bundler (>= 1.3.0, < 2.0)
91
- railties (= 5.0.0)
92
- sprockets-rails (>= 2.0.0)
93
54
  rails-dom-testing (2.0.1)
94
55
  activesupport (>= 4.2.0, < 6.0)
95
56
  nokogiri (~> 1.6.0)
@@ -115,28 +76,19 @@ GEM
115
76
  diff-lcs (>= 1.2.0, < 2.0)
116
77
  rspec-support (~> 3.5.0)
117
78
  rspec-support (3.5.0)
118
- sprockets (3.6.3)
119
- concurrent-ruby (~> 1.0)
120
- rack (> 1, < 3)
121
- sprockets-rails (3.1.1)
122
- actionpack (>= 4.0)
123
- activesupport (>= 4.0)
124
- sprockets (>= 3.0.0)
125
79
  thor (0.19.1)
126
80
  thread_safe (0.3.5)
127
81
  tzinfo (1.2.2)
128
82
  thread_safe (~> 0.1)
129
- websocket-driver (0.6.4)
130
- websocket-extensions (>= 0.1.0)
131
- websocket-extensions (0.1.2)
132
83
 
133
84
  PLATFORMS
134
85
  ruby
135
86
 
136
87
  DEPENDENCIES
137
88
  act-fluent-logger-rails!
89
+ activesupport (= 5.0.0)
138
90
  appraisal
139
- rails (= 5.0.0)
91
+ railties (= 5.0.0)
140
92
  rspec (~> 3.5.0)
141
93
 
142
94
  BUNDLED WITH
@@ -1,3 +1,3 @@
1
1
  module ActFluentLoggerRails
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
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.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - TAHARA Yoshinori
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-12 00:00:00.000000000 Z
11
+ date: 2016-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -39,7 +39,27 @@ dependencies:
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
- name: rails
42
+ name: railties
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '4'
48
+ - - "<"
49
+ - !ruby/object:Gem::Version
50
+ version: '5.1'
51
+ type: :runtime
52
+ prerelease: false
53
+ version_requirements: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: '4'
58
+ - - "<"
59
+ - !ruby/object:Gem::Version
60
+ version: '5.1'
61
+ - !ruby/object:Gem::Dependency
62
+ name: activesupport
43
63
  requirement: !ruby/object:Gem::Requirement
44
64
  requirements:
45
65
  - - ">="