table_help 0.1.1 → 0.1.2

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: 61af2d6d87068a5556baa4a426dc135a1cba79be
4
- data.tar.gz: 3a4f7bedddaeaa25c1c47a58a4b9cdcaf77fbd0a
3
+ metadata.gz: 4be3773c9fbe863cdc31bc9d7294a51dbffe38e2
4
+ data.tar.gz: b034d31f89ba39ebaf94c95c8fb5e992da2aa099
5
5
  SHA512:
6
- metadata.gz: d56e09307140ed8348fc963c30f05f478cf1b4081914bab7a77572b3ba14042d8285e953758901aebae16c88320a80eb0d1f0590fb34bc1563d82f2c0caa933e
7
- data.tar.gz: d707d87fca1584a922a50273513317351e96f7efb89f6b0235dc038793997bc2fb3938d56e4019d2dc00555e378faaecfb6f6165f3ecc24dca86d95fa6b6bb1d
6
+ metadata.gz: caa77d40a5b9952ec4ffffedf4115b08766f3b173c9ef632d8fdfa043a80445183e97da6f56c649abb70e25f909decbcedbf81bfcd3f3d27003d2a770f876a01
7
+ data.tar.gz: 8b2985a4504154ff426af1861eb53f6cef649ffa000da4ac4f66690a6b5c5bf24d22e5f3555d880c1dd3acb4d0b589c7d00f72b46d67f7c0220e168e4b103603
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # TableHelp
2
2
 
3
3
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
4
+ [![Gem Version](https://badge.fury.io/rb/table_help.svg)](https://badge.fury.io/rb/table_help)
4
5
  [![Build Status](https://travis-ci.org/yhirano55/table_help.svg?branch=master)](https://travis-ci.org/yhirano55/table_help)
5
6
 
6
7
  Provide helper methods to build collection or resource tables for Rails 5.
@@ -39,7 +40,7 @@ Or install it yourself as:
39
40
  <ul>
40
41
  <li><%= link_to "Show", article %></li>
41
42
  <li><%= link_to "Edit", edit_article_path(article) %></li>
42
- <li><%= link_to "Destroy", edit_article_path(article), method: :delete %></li>
43
+ <li><%= link_to "Destroy", article, method: :delete %></li>
43
44
  </ul>
44
45
  <% end %>
45
46
  <% end %>
@@ -58,7 +59,7 @@ Or install it yourself as:
58
59
  <% t.row do |article| %>
59
60
  <ul>
60
61
  <li><%= link_to "Edit", edit_article_path(article) %></li>
61
- <li><%= link_to "Destroy", edit_article_path(article), method: :delete %></li>
62
+ <li><%= link_to "Destroy", article, method: :delete %></li>
62
63
  </ul>
63
64
  <% end %>
64
65
  <% end %>
@@ -22,7 +22,7 @@ module TableHelp
22
22
  when DateTime, Time
23
23
  I18n.l(value)
24
24
  when Numeric
25
- (name.to_sym == :id) ? value : value.to_s(:delimited)
25
+ name.to_s.match?(/_*id\z/) ? value : value.to_s(:delimited)
26
26
  else
27
27
  value
28
28
  end
@@ -1,3 +1,3 @@
1
1
  module TableHelp
2
- VERSION = "0.1.1".freeze
2
+ VERSION = "0.1.2".freeze
3
3
  end
@@ -1,804 +1,32 @@
1
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (2 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:11)
2
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (2 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:11)
3
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:26:47 +0900
4
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (2 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:11)
5
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:27:25 +0900
1
+ DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
2
+ Started GET "/articles" for 127.0.0.1 at 2017-10-10 15:17:45 +0900
6
3
  Processing by ArticlesController#index as HTML
7
4
  Rendering articles/index.html.erb
8
- Rendered articles/index.html.erb (8.9ms)
9
- Completed 500 Internal Server Error in 30ms
5
+ Rendered articles/index.html.erb (16.4ms)
6
+ Completed 200 OK in 27ms (Views: 25.3ms)
10
7
 
11
8
 
12
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:12)
13
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:28:40 +0900
14
- Processing by ArticlesController#index as HTML
15
- Rendering articles/index.html.erb
16
- Rendered articles/index.html.erb (9.1ms)
17
- Completed 500 Internal Server Error in 22ms
18
-
19
-
20
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:15)
21
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:29:44 +0900
22
- Processing by ArticlesController#index as HTML
23
- Rendering articles/index.html.erb
24
- Rendered articles/index.html.erb (7.3ms)
25
- Completed 500 Internal Server Error in 21ms
26
-
27
-
28
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:12)
29
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:30:32 +0900
30
- Processing by ArticlesController#index as HTML
31
- Rendering articles/index.html.erb
32
- Rendered articles/index.html.erb (8.7ms)
33
- Completed 500 Internal Server Error in 25ms
34
-
35
-
36
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:12)
37
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:31:08 +0900
38
- Processing by ArticlesController#index as HTML
39
- Rendering articles/index.html.erb
40
- Rendered articles/index.html.erb (7.6ms)
41
- Completed 500 Internal Server Error in 21ms
42
-
43
-
44
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:16)
45
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:33:39 +0900
46
- Processing by ArticlesController#index as HTML
47
- Rendering articles/index.html.erb
48
- Rendered articles/index.html.erb (6.8ms)
49
- Completed 500 Internal Server Error in 20ms
50
-
51
-
52
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:16)
53
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:36:07 +0900
54
- Processing by ArticlesController#index as HTML
55
- Rendering articles/index.html.erb
56
- Rendered articles/index.html.erb (11.7ms)
57
- Completed 200 OK in 33ms (Views: 20.1ms)
58
-
59
-
60
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:12)
61
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:37:02 +0900
62
- Processing by ArticlesController#index as HTML
63
- Rendering articles/index.html.erb
64
- Rendered articles/index.html.erb (12.8ms)
65
- Completed 200 OK in 22ms (Views: 20.4ms)
66
-
67
-
68
- Started GET "/articles/2" for 127.0.0.1 at 2017-10-08 10:37:02 +0900
69
- Processing by ArticlesController#show as HTML
70
- Parameters: {"id"=>"2"}
71
- Rendering articles/show.html.erb
72
- Rendered articles/show.html.erb (2.5ms)
73
- Completed 200 OK in 14ms (Views: 8.9ms)
74
-
75
-
76
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:12)
77
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:38:18 +0900
78
- Processing by ArticlesController#index as HTML
79
- Rendering articles/index.html.erb
80
- Rendered articles/index.html.erb (12.8ms)
81
- Completed 200 OK in 24ms (Views: 22.2ms)
82
-
83
-
84
- Started GET "/articles/1" for 127.0.0.1 at 2017-10-08 10:38:18 +0900
85
- Processing by ArticlesController#show as HTML
86
- Parameters: {"id"=>"1"}
87
- Rendering articles/show.html.erb
88
- Rendered articles/show.html.erb (5.1ms)
89
- Completed 200 OK in 20ms (Views: 16.6ms)
90
-
91
-
92
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:12)
93
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:39:45 +0900
94
- Processing by ArticlesController#index as HTML
95
- Rendering articles/index.html.erb
96
- Rendered articles/index.html.erb (10.2ms)
97
- Completed 200 OK in 28ms (Views: 25.7ms)
98
-
99
-
100
- Started GET "/articles/4" for 127.0.0.1 at 2017-10-08 10:39:45 +0900
101
- Processing by ArticlesController#show as HTML
102
- Parameters: {"id"=>"4"}
103
- Rendering articles/show.html.erb
104
- Rendered articles/show.html.erb (2.0ms)
105
- Completed 200 OK in 10ms (Views: 7.9ms)
106
-
107
-
108
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
109
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:40:36 +0900
110
- Processing by ArticlesController#index as HTML
111
- Rendering articles/index.html.erb
112
- Rendered articles/index.html.erb (12.2ms)
113
- Completed 200 OK in 27ms (Views: 24.3ms)
114
-
115
-
116
- Started GET "/articles/5" for 127.0.0.1 at 2017-10-08 10:40:36 +0900
117
- Processing by ArticlesController#show as HTML
118
- Parameters: {"id"=>"5"}
119
- Rendering articles/show.html.erb
120
- Rendered articles/show.html.erb (2.8ms)
121
- Completed 200 OK in 14ms (Views: 10.4ms)
122
-
123
-
124
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:24)
125
- Started GET "/articles/1" for 127.0.0.1 at 2017-10-08 10:41:09 +0900
126
- Processing by ArticlesController#show as HTML
127
- Parameters: {"id"=>"1"}
128
- Rendering articles/show.html.erb
129
- Rendered articles/show.html.erb (9.1ms)
130
- Completed 200 OK in 22ms (Views: 18.8ms)
131
-
132
-
133
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
134
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:41:19 +0900
135
- Processing by ArticlesController#index as HTML
136
- Rendering articles/index.html.erb
137
- Rendered articles/index.html.erb (8.7ms)
138
- Completed 200 OK in 18ms (Views: 16.6ms)
139
-
140
-
141
- Started GET "/articles/1" for 127.0.0.1 at 2017-10-08 10:41:19 +0900
142
- Processing by ArticlesController#show as HTML
143
- Parameters: {"id"=>"1"}
144
- Rendering articles/show.html.erb
145
- Rendered articles/show.html.erb (4.8ms)
146
- Completed 200 OK in 12ms (Views: 10.1ms)
147
-
148
-
149
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
150
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:45:31 +0900
151
- Processing by ArticlesController#index as HTML
152
- Rendering articles/index.html.erb
153
- Rendered articles/index.html.erb (11.7ms)
154
- Completed 200 OK in 26ms (Views: 24.2ms)
155
-
156
-
157
- Started GET "/articles/4" for 127.0.0.1 at 2017-10-08 10:45:32 +0900
158
- Processing by ArticlesController#show as HTML
159
- Parameters: {"id"=>"4"}
160
- Rendering articles/show.html.erb
161
- Rendered articles/show.html.erb (2.0ms)
162
- Completed 200 OK in 13ms (Views: 10.0ms)
163
-
164
-
165
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
166
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:45:46 +0900
167
- Processing by ArticlesController#index as HTML
168
- Rendering articles/index.html.erb
169
- Rendered articles/index.html.erb (14.6ms)
170
- Completed 200 OK in 34ms (Views: 30.9ms)
171
-
172
-
173
- Started GET "/articles/2" for 127.0.0.1 at 2017-10-08 10:45:46 +0900
174
- Processing by ArticlesController#show as HTML
175
- Parameters: {"id"=>"2"}
176
- Rendering articles/show.html.erb
177
- Rendered articles/show.html.erb (2.0ms)
178
- Completed 200 OK in 17ms (Views: 11.5ms)
179
-
180
-
181
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
182
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:46:20 +0900
183
- Processing by ArticlesController#index as HTML
184
- Rendering articles/index.html.erb
185
- Rendered articles/index.html.erb (13.6ms)
186
- Completed 200 OK in 31ms (Views: 27.6ms)
187
-
188
-
189
- Started GET "/articles/1" for 127.0.0.1 at 2017-10-08 10:46:21 +0900
190
- Processing by ArticlesController#show as HTML
191
- Parameters: {"id"=>"1"}
192
- Rendering articles/show.html.erb
193
- Rendered articles/show.html.erb (4.7ms)
194
- Completed 200 OK in 22ms (Views: 13.6ms)
195
-
196
-
197
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
198
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:47:21 +0900
199
- Processing by ArticlesController#index as HTML
200
- Rendering articles/index.html.erb
201
- Rendered articles/index.html.erb (7.5ms)
202
- Completed 200 OK in 16ms (Views: 14.6ms)
203
-
204
-
205
- Started GET "/articles/4" for 127.0.0.1 at 2017-10-08 10:47:21 +0900
206
- Processing by ArticlesController#show as HTML
207
- Parameters: {"id"=>"4"}
208
- Rendering articles/show.html.erb
209
- Rendered articles/show.html.erb (1.6ms)
210
- Completed 200 OK in 10ms (Views: 7.2ms)
211
-
212
-
213
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
214
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:48:47 +0900
215
- Processing by ArticlesController#index as HTML
216
- Rendering articles/index.html.erb
217
- Rendered articles/index.html.erb (11.7ms)
218
- Completed 200 OK in 25ms (Views: 23.2ms)
219
-
220
-
221
- Started GET "/articles/5" for 127.0.0.1 at 2017-10-08 10:48:47 +0900
9
+ Started GET "/articles/5" for 127.0.0.1 at 2017-10-10 15:17:45 +0900
222
10
  Processing by ArticlesController#show as HTML
223
11
  Parameters: {"id"=>"5"}
224
12
  Rendering articles/show.html.erb
225
- Rendered articles/show.html.erb (1.8ms)
226
- Completed 200 OK in 11ms (Views: 7.6ms)
227
-
228
-
229
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
230
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:49:31 +0900
231
- Processing by ArticlesController#index as HTML
232
- Rendering articles/index.html.erb
233
- Rendered articles/index.html.erb (12.7ms)
234
- Completed 200 OK in 22ms (Views: 20.6ms)
235
-
236
-
237
- Started GET "/articles/5" for 127.0.0.1 at 2017-10-08 10:49:31 +0900
238
- Processing by ArticlesController#show as HTML
239
- Parameters: {"id"=>"5"}
240
- Rendering articles/show.html.erb
241
- Rendered articles/show.html.erb (1.7ms)
242
- Completed 200 OK in 10ms (Views: 7.6ms)
243
-
244
-
245
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
246
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:50:41 +0900
247
- Processing by ArticlesController#index as HTML
248
- Rendering articles/index.html.erb
249
- Rendered articles/index.html.erb (11.0ms)
250
- Completed 200 OK in 26ms (Views: 23.9ms)
251
-
252
-
253
- Started GET "/articles/1" for 127.0.0.1 at 2017-10-08 10:50:41 +0900
254
- Processing by ArticlesController#show as HTML
255
- Parameters: {"id"=>"1"}
256
- Rendering articles/show.html.erb
257
- Rendered articles/show.html.erb (1.4ms)
258
- Completed 200 OK in 9ms (Views: 7.1ms)
259
-
260
-
261
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
262
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:51:22 +0900
263
- Processing by ArticlesController#index as HTML
264
- Rendering articles/index.html.erb
265
- Rendered articles/index.html.erb (14.5ms)
266
- Completed 200 OK in 28ms (Views: 26.2ms)
267
-
268
-
269
- Started GET "/articles/2" for 127.0.0.1 at 2017-10-08 10:51:22 +0900
270
- Processing by ArticlesController#show as HTML
271
- Parameters: {"id"=>"2"}
272
- Rendering articles/show.html.erb
273
- Rendered articles/show.html.erb (2.1ms)
274
- Completed 200 OK in 13ms (Views: 9.5ms)
275
-
276
-
277
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
278
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:53:13 +0900
279
- Processing by ArticlesController#index as HTML
280
- Rendering articles/index.html.erb
281
- Rendered articles/index.html.erb (8.0ms)
282
- Completed 200 OK in 16ms (Views: 15.2ms)
283
-
284
-
285
- Started GET "/articles/4" for 127.0.0.1 at 2017-10-08 10:53:13 +0900
286
- Processing by ArticlesController#show as HTML
287
- Parameters: {"id"=>"4"}
288
- Rendering articles/show.html.erb
289
- Rendered articles/show.html.erb (1.5ms)
290
- Completed 200 OK in 9ms (Views: 6.9ms)
291
-
292
-
293
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
294
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:53:32 +0900
295
- Processing by ArticlesController#index as HTML
296
- Rendering articles/index.html.erb
297
- Rendered articles/index.html.erb (14.1ms)
298
- Completed 200 OK in 24ms (Views: 22.6ms)
299
-
300
-
301
- Started GET "/articles/1" for 127.0.0.1 at 2017-10-08 10:53:32 +0900
302
- Processing by ArticlesController#show as HTML
303
- Parameters: {"id"=>"1"}
304
- Rendering articles/show.html.erb
305
- Rendered articles/show.html.erb (1.4ms)
306
- Completed 200 OK in 9ms (Views: 6.9ms)
307
-
308
-
309
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
310
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:56:20 +0900
311
- Processing by ArticlesController#index as HTML
312
- Rendering articles/index.html.erb
313
- Rendered articles/index.html.erb (16.8ms)
314
- Completed 200 OK in 33ms (Views: 31.9ms)
315
-
316
-
317
- Started GET "/articles/3" for 127.0.0.1 at 2017-10-08 10:56:21 +0900
318
- Processing by ArticlesController#show as HTML
319
- Parameters: {"id"=>"3"}
320
- Rendering articles/show.html.erb
321
- Rendered articles/show.html.erb (1.6ms)
322
- Completed 200 OK in 19ms (Views: 9.4ms)
323
-
324
-
325
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
326
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:57:44 +0900
327
- Processing by ArticlesController#index as HTML
328
- Rendering articles/index.html.erb
329
- Rendered articles/index.html.erb (7.5ms)
330
- Completed 200 OK in 18ms (Views: 17.0ms)
331
-
332
-
333
- Started GET "/articles/5" for 127.0.0.1 at 2017-10-08 10:57:44 +0900
334
- Processing by ArticlesController#show as HTML
335
- Parameters: {"id"=>"5"}
336
- Rendering articles/show.html.erb
337
- Rendered articles/show.html.erb (2.3ms)
338
- Completed 200 OK in 13ms (Views: 9.6ms)
339
-
340
-
341
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
342
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 10:59:00 +0900
343
- Processing by ArticlesController#index as HTML
344
- Rendering articles/index.html.erb
345
- Rendered articles/index.html.erb (12.5ms)
346
- Completed 200 OK in 20ms (Views: 19.2ms)
347
-
348
-
349
- Started GET "/articles/3" for 127.0.0.1 at 2017-10-08 10:59:01 +0900
350
- Processing by ArticlesController#show as HTML
351
- Parameters: {"id"=>"3"}
352
- Rendering articles/show.html.erb
353
- Rendered articles/show.html.erb (1.5ms)
354
- Completed 200 OK in 9ms (Views: 7.0ms)
355
-
356
-
357
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
358
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:00:16 +0900
359
- Processing by ArticlesController#index as HTML
360
- Rendering articles/index.html.erb
361
- Rendered articles/index.html.erb (13.7ms)
362
- Completed 200 OK in 28ms (Views: 26.2ms)
363
-
364
-
365
- Started GET "/articles/3" for 127.0.0.1 at 2017-10-08 11:00:16 +0900
366
- Processing by ArticlesController#show as HTML
367
- Parameters: {"id"=>"3"}
368
- Rendering articles/show.html.erb
369
- Rendered articles/show.html.erb (2.0ms)
370
- Completed 200 OK in 14ms (Views: 8.2ms)
371
-
372
-
373
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
374
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:00:35 +0900
375
- Processing by ArticlesController#index as HTML
376
- Rendering articles/index.html.erb
377
- Rendered articles/index.html.erb (14.9ms)
378
- Completed 200 OK in 26ms (Views: 24.6ms)
379
-
380
-
381
- Started GET "/articles/3" for 127.0.0.1 at 2017-10-08 11:00:35 +0900
382
- Processing by ArticlesController#show as HTML
383
- Parameters: {"id"=>"3"}
384
- Rendering articles/show.html.erb
385
- Rendered articles/show.html.erb (2.1ms)
386
- Completed 200 OK in 10ms (Views: 7.6ms)
387
-
388
-
389
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
390
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:00:50 +0900
391
- Processing by ArticlesController#index as HTML
392
- Rendering articles/index.html.erb
393
- Rendered articles/index.html.erb (9.6ms)
394
- Completed 200 OK in 18ms (Views: 17.1ms)
395
-
396
-
397
- Started GET "/articles/1" for 127.0.0.1 at 2017-10-08 11:00:50 +0900
398
- Processing by ArticlesController#show as HTML
399
- Parameters: {"id"=>"1"}
400
- Rendering articles/show.html.erb
401
- Rendered articles/show.html.erb (1.8ms)
402
- Completed 200 OK in 12ms (Views: 8.1ms)
403
-
404
-
405
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
406
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:01:06 +0900
407
- Processing by ArticlesController#index as HTML
408
- Rendering articles/index.html.erb
409
- Rendered articles/index.html.erb (13.5ms)
410
- Completed 200 OK in 26ms (Views: 23.9ms)
411
-
412
-
413
- Started GET "/articles/1" for 127.0.0.1 at 2017-10-08 11:01:06 +0900
414
- Processing by ArticlesController#show as HTML
415
- Parameters: {"id"=>"1"}
416
- Rendering articles/show.html.erb
417
- Rendered articles/show.html.erb (1.7ms)
418
- Completed 200 OK in 11ms (Views: 7.8ms)
419
-
420
-
421
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
422
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:01:22 +0900
423
- Processing by ArticlesController#index as HTML
424
- Rendering articles/index.html.erb
425
- Rendered articles/index.html.erb (15.3ms)
426
- Completed 200 OK in 25ms (Views: 24.0ms)
427
-
428
-
429
- Started GET "/articles/1" for 127.0.0.1 at 2017-10-08 11:02:03 +0900
430
- Processing by ArticlesController#show as HTML
431
- Parameters: {"id"=>"1"}
432
- Rendering articles/show.html.erb
433
- Rendered articles/show.html.erb (4.5ms)
434
- Completed 200 OK in 14ms (Views: 11.6ms)
435
-
436
-
437
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
438
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:02:06 +0900
439
- Processing by ArticlesController#index as HTML
440
- Rendering articles/index.html.erb
441
- Rendered articles/index.html.erb (11.3ms)
442
- Completed 200 OK in 26ms (Views: 24.2ms)
443
-
444
-
445
- Started GET "/articles/4" for 127.0.0.1 at 2017-10-08 11:02:06 +0900
446
- Processing by ArticlesController#show as HTML
447
- Parameters: {"id"=>"4"}
448
- Rendering articles/show.html.erb
449
- Rendered articles/show.html.erb (4.1ms)
450
- Completed 200 OK in 12ms (Views: 10.1ms)
451
-
452
-
453
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
454
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:02:23 +0900
455
- Processing by ArticlesController#index as HTML
456
- Rendering articles/index.html.erb
457
- Rendered articles/index.html.erb (14.0ms)
458
- Completed 200 OK in 28ms (Views: 26.3ms)
459
-
460
-
461
- Started GET "/articles/3" for 127.0.0.1 at 2017-10-08 11:02:23 +0900
462
- Processing by ArticlesController#show as HTML
463
- Parameters: {"id"=>"3"}
464
- Rendering articles/show.html.erb
465
- Rendered articles/show.html.erb (6.3ms)
466
- Completed 200 OK in 18ms (Views: 14.8ms)
467
-
468
-
469
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
470
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:02:51 +0900
471
- Processing by ArticlesController#index as HTML
472
- Rendering articles/index.html.erb
473
- Rendered articles/index.html.erb (8.4ms)
474
- Completed 200 OK in 20ms (Views: 19.1ms)
475
-
476
-
477
- Started GET "/articles/4" for 127.0.0.1 at 2017-10-08 11:02:51 +0900
478
- Processing by ArticlesController#show as HTML
479
- Parameters: {"id"=>"4"}
480
- Rendering articles/show.html.erb
481
13
  Rendered articles/show.html.erb (2.1ms)
482
- Completed 200 OK in 13ms (Views: 8.8ms)
483
-
484
-
485
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
486
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:03:25 +0900
487
- Processing by ArticlesController#index as HTML
488
- Rendering articles/index.html.erb
489
- Rendered articles/index.html.erb (9.7ms)
490
- Completed 200 OK in 18ms (Views: 17.2ms)
491
-
492
-
493
- Started GET "/articles/2" for 127.0.0.1 at 2017-10-08 11:03:25 +0900
494
- Processing by ArticlesController#show as HTML
495
- Parameters: {"id"=>"2"}
496
- Rendering articles/show.html.erb
497
- Rendered articles/show.html.erb (3.5ms)
498
- Completed 200 OK in 14ms (Views: 10.8ms)
499
-
500
-
501
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
502
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:03:33 +0900
503
- Processing by ArticlesController#index as HTML
504
- Rendering articles/index.html.erb
505
- Rendered articles/index.html.erb (10.8ms)
506
- Completed 200 OK in 20ms (Views: 19.0ms)
507
-
508
-
509
- Started GET "/articles/1" for 127.0.0.1 at 2017-10-08 11:03:33 +0900
510
- Processing by ArticlesController#show as HTML
511
- Parameters: {"id"=>"1"}
512
- Rendering articles/show.html.erb
513
- Rendered articles/show.html.erb (1.5ms)
514
- Completed 200 OK in 15ms (Views: 7.1ms)
515
-
516
-
517
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
518
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:04:17 +0900
519
- Processing by ArticlesController#index as HTML
520
- Rendering articles/index.html.erb
521
- Rendered articles/index.html.erb (9.9ms)
522
- Completed 200 OK in 19ms (Views: 17.7ms)
523
-
524
-
525
- Started GET "/articles/6" for 127.0.0.1 at 2017-10-08 11:04:17 +0900
526
- Processing by ArticlesController#show as HTML
527
- Parameters: {"id"=>"6"}
528
- Rendering articles/show.html.erb
529
- Rendered articles/show.html.erb (2.1ms)
530
- Completed 200 OK in 11ms (Views: 8.5ms)
531
-
532
-
533
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
534
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:05:30 +0900
535
- Processing by ArticlesController#index as HTML
536
- Rendering articles/index.html.erb
537
- Rendered articles/index.html.erb (22.8ms)
538
- Completed 200 OK in 34ms (Views: 32.7ms)
539
-
540
-
541
- Started GET "/articles/3" for 127.0.0.1 at 2017-10-08 11:05:30 +0900
542
- Processing by ArticlesController#show as HTML
543
- Parameters: {"id"=>"3"}
544
- Rendering articles/show.html.erb
545
- Rendered articles/show.html.erb (1.8ms)
546
- Completed 200 OK in 12ms (Views: 8.4ms)
547
-
548
-
549
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
550
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:06:53 +0900
551
- Processing by ArticlesController#index as HTML
552
- Rendering articles/index.html.erb
553
- Rendered articles/index.html.erb (13.4ms)
554
- Completed 200 OK in 25ms (Views: 23.3ms)
555
-
556
-
557
- Started GET "/articles/2" for 127.0.0.1 at 2017-10-08 11:06:53 +0900
558
- Processing by ArticlesController#show as HTML
559
- Parameters: {"id"=>"2"}
560
- Rendering articles/show.html.erb
561
- Rendered articles/show.html.erb (1.7ms)
562
- Completed 200 OK in 11ms (Views: 7.4ms)
563
-
564
-
565
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
566
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:07:48 +0900
567
- Processing by ArticlesController#index as HTML
568
- Rendering articles/index.html.erb
569
- Rendered articles/index.html.erb (19.9ms)
570
- Completed 200 OK in 29ms (Views: 28.0ms)
571
-
572
-
573
- Started GET "/articles/5" for 127.0.0.1 at 2017-10-08 11:07:48 +0900
574
- Processing by ArticlesController#show as HTML
575
- Parameters: {"id"=>"5"}
576
- Rendering articles/show.html.erb
577
- Rendered articles/show.html.erb (1.6ms)
578
- Completed 200 OK in 11ms (Views: 7.5ms)
579
-
580
-
581
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
582
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:08:39 +0900
583
- Processing by ArticlesController#index as HTML
584
- Rendering articles/index.html.erb
585
- Rendered articles/index.html.erb (7.3ms)
586
- Completed 200 OK in 15ms (Views: 14.0ms)
587
-
588
-
589
- Started GET "/articles/6" for 127.0.0.1 at 2017-10-08 11:08:39 +0900
590
- Processing by ArticlesController#show as HTML
591
- Parameters: {"id"=>"6"}
592
- Rendering articles/show.html.erb
593
- Rendered articles/show.html.erb (1.5ms)
594
- Completed 200 OK in 11ms (Views: 9.0ms)
14
+ Completed 200 OK in 13ms (Views: 10.1ms)
595
15
 
596
16
 
597
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
598
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:09:01 +0900
17
+ DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
18
+ Started GET "/articles" for 127.0.0.1 at 2017-10-10 15:21:30 +0900
599
19
  Processing by ArticlesController#index as HTML
600
20
  Rendering articles/index.html.erb
601
- Rendered articles/index.html.erb (18.4ms)
602
- Completed 200 OK in 32ms (Views: 31.0ms)
21
+ Rendered articles/index.html.erb (18.5ms)
22
+ Completed 200 OK in 37ms (Views: 33.2ms)
603
23
 
604
24
 
605
- Started GET "/articles/6" for 127.0.0.1 at 2017-10-08 11:09:01 +0900
25
+ Started GET "/articles/6" for 127.0.0.1 at 2017-10-10 15:21:30 +0900
606
26
  Processing by ArticlesController#show as HTML
607
27
  Parameters: {"id"=>"6"}
608
28
  Rendering articles/show.html.erb
609
- Rendered articles/show.html.erb (1.8ms)
610
- Completed 200 OK in 10ms (Views: 7.5ms)
611
-
612
-
613
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
614
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:09:12 +0900
615
- Processing by ArticlesController#index as HTML
616
- Rendering articles/index.html.erb
617
- Rendered articles/index.html.erb (13.8ms)
618
- Completed 200 OK in 25ms (Views: 24.1ms)
619
-
620
-
621
- Started GET "/articles/5" for 127.0.0.1 at 2017-10-08 11:09:12 +0900
622
- Processing by ArticlesController#show as HTML
623
- Parameters: {"id"=>"5"}
624
- Rendering articles/show.html.erb
625
- Rendered articles/show.html.erb (2.4ms)
626
- Completed 200 OK in 10ms (Views: 8.1ms)
627
-
628
-
629
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
630
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:09:59 +0900
631
- Processing by ArticlesController#index as HTML
632
- Rendering articles/index.html.erb
633
- Rendered articles/index.html.erb (15.5ms)
634
- Completed 200 OK in 27ms (Views: 25.7ms)
635
-
636
-
637
- Started GET "/articles/2" for 127.0.0.1 at 2017-10-08 11:09:59 +0900
638
- Processing by ArticlesController#show as HTML
639
- Parameters: {"id"=>"2"}
640
- Rendering articles/show.html.erb
641
- Rendered articles/show.html.erb (1.8ms)
642
- Completed 200 OK in 11ms (Views: 7.7ms)
643
-
644
-
645
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
646
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:10:10 +0900
647
- Processing by ArticlesController#index as HTML
648
- Rendering articles/index.html.erb
649
- Rendered articles/index.html.erb (10.9ms)
650
- Completed 200 OK in 23ms (Views: 20.5ms)
651
-
652
-
653
- Started GET "/articles/1" for 127.0.0.1 at 2017-10-08 11:10:10 +0900
654
- Processing by ArticlesController#show as HTML
655
- Parameters: {"id"=>"1"}
656
- Rendering articles/show.html.erb
657
- Rendered articles/show.html.erb (2.3ms)
658
- Completed 200 OK in 10ms (Views: 8.1ms)
659
-
660
-
661
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
662
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:10:43 +0900
663
- Processing by ArticlesController#index as HTML
664
- Rendering articles/index.html.erb
665
- Rendered articles/index.html.erb (7.4ms)
666
- Completed 200 OK in 18ms (Views: 16.8ms)
667
-
668
-
669
- Started GET "/articles/2" for 127.0.0.1 at 2017-10-08 11:10:43 +0900
670
- Processing by ArticlesController#show as HTML
671
- Parameters: {"id"=>"2"}
672
- Rendering articles/show.html.erb
673
- Rendered articles/show.html.erb (1.8ms)
674
- Completed 200 OK in 10ms (Views: 7.3ms)
675
-
676
-
677
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
678
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:11:05 +0900
679
- Processing by ArticlesController#index as HTML
680
- Rendering articles/index.html.erb
681
- Rendered articles/index.html.erb (13.4ms)
682
- Completed 200 OK in 27ms (Views: 23.3ms)
683
-
684
-
685
- Started GET "/articles/1" for 127.0.0.1 at 2017-10-08 11:11:05 +0900
686
- Processing by ArticlesController#show as HTML
687
- Parameters: {"id"=>"1"}
688
- Rendering articles/show.html.erb
689
- Rendered articles/show.html.erb (1.9ms)
690
- Completed 200 OK in 14ms (Views: 8.7ms)
691
-
692
-
693
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
694
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:12:15 +0900
695
- Processing by ArticlesController#index as HTML
696
- Rendering articles/index.html.erb
697
- Rendered articles/index.html.erb (14.8ms)
698
- Completed 200 OK in 28ms (Views: 25.9ms)
699
-
700
-
701
- Started GET "/articles/1" for 127.0.0.1 at 2017-10-08 11:12:15 +0900
702
- Processing by ArticlesController#show as HTML
703
- Parameters: {"id"=>"1"}
704
- Rendering articles/show.html.erb
705
- Rendered articles/show.html.erb (2.2ms)
706
- Completed 200 OK in 15ms (Views: 10.4ms)
707
-
708
-
709
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
710
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:12:27 +0900
711
- Processing by ArticlesController#index as HTML
712
- Rendering articles/index.html.erb
713
- Rendered articles/index.html.erb (11.4ms)
714
- Completed 200 OK in 21ms (Views: 19.5ms)
715
-
716
-
717
- Started GET "/articles/6" for 127.0.0.1 at 2017-10-08 11:12:28 +0900
718
- Processing by ArticlesController#show as HTML
719
- Parameters: {"id"=>"6"}
720
- Rendering articles/show.html.erb
721
- Rendered articles/show.html.erb (1.7ms)
722
- Completed 200 OK in 10ms (Views: 7.7ms)
723
-
724
-
725
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
726
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:12:34 +0900
727
- Processing by ArticlesController#index as HTML
728
- Rendering articles/index.html.erb
729
- Rendered articles/index.html.erb (13.1ms)
730
- Completed 200 OK in 26ms (Views: 23.7ms)
731
-
732
-
733
- Started GET "/articles/1" for 127.0.0.1 at 2017-10-08 11:12:34 +0900
734
- Processing by ArticlesController#show as HTML
735
- Parameters: {"id"=>"1"}
736
- Rendering articles/show.html.erb
737
- Rendered articles/show.html.erb (1.9ms)
738
- Completed 200 OK in 12ms (Views: 8.0ms)
739
-
740
-
741
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
742
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:12:48 +0900
743
- Processing by ArticlesController#index as HTML
744
- Rendering articles/index.html.erb
745
- Rendered articles/index.html.erb (11.4ms)
746
- Completed 200 OK in 23ms (Views: 21.0ms)
747
-
748
-
749
- Started GET "/articles/2" for 127.0.0.1 at 2017-10-08 11:12:48 +0900
750
- Processing by ArticlesController#show as HTML
751
- Parameters: {"id"=>"2"}
752
- Rendering articles/show.html.erb
753
- Rendered articles/show.html.erb (1.8ms)
754
- Completed 200 OK in 10ms (Views: 7.6ms)
755
-
756
-
757
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
758
- Started GET "/articles" for 127.0.0.1 at 2017-10-08 11:13:42 +0900
759
- Processing by ArticlesController#index as HTML
760
- Rendering articles/index.html.erb
761
- Rendered articles/index.html.erb (7.5ms)
762
- Completed 200 OK in 17ms (Views: 15.1ms)
763
-
764
-
765
- Started GET "/articles/2" for 127.0.0.1 at 2017-10-08 11:13:43 +0900
766
- Processing by ArticlesController#show as HTML
767
- Parameters: {"id"=>"2"}
768
- Rendering articles/show.html.erb
769
- Rendered articles/show.html.erb (1.7ms)
770
- Completed 200 OK in 10ms (Views: 7.2ms)
771
-
772
-
773
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
774
- Started GET "/articles" for 127.0.0.1 at 2017-10-09 02:46:10 +0900
775
- Processing by ArticlesController#index as HTML
776
- Rendering articles/index.html.erb
777
- Rendered articles/index.html.erb (15.8ms)
778
- Completed 200 OK in 25ms (Views: 23.4ms)
779
-
780
-
781
- Started GET "/articles/2" for 127.0.0.1 at 2017-10-09 02:46:10 +0900
782
- Processing by ArticlesController#show as HTML
783
- Parameters: {"id"=>"2"}
784
- Rendering articles/show.html.erb
785
29
  Rendered articles/show.html.erb (2.1ms)
786
- Completed 200 OK in 14ms (Views: 9.6ms)
787
-
788
-
789
- DEPRECATION WARNING: You didn't set `secret_key_base`. Read the upgrade documentation to learn more about this new config option. (called from block (3 levels) in <top (required)> at /Users/yhirano/dev/src/github.com/yhirano55/table_help/spec/table_help_spec.rb:14)
790
- Started GET "/articles" for 127.0.0.1 at 2017-10-09 02:53:26 +0900
791
- Processing by ArticlesController#index as HTML
792
- Rendering articles/index.html.erb
793
- Rendered articles/index.html.erb (7.4ms)
794
- Completed 200 OK in 16ms (Views: 14.2ms)
795
-
796
-
797
- Started GET "/articles/6" for 127.0.0.1 at 2017-10-09 02:53:26 +0900
798
- Processing by ArticlesController#show as HTML
799
- Parameters: {"id"=>"6"}
800
- Rendering articles/show.html.erb
801
- Rendered articles/show.html.erb (1.6ms)
802
- Completed 200 OK in 10ms (Views: 7.2ms)
30
+ Completed 200 OK in 13ms (Views: 9.2ms)
803
31
 
804
32
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: table_help
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yoshiyuki Hirano
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-08 00:00:00.000000000 Z
11
+ date: 2017-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties