table_help 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 07701ffc15d5313d31e28e2ad3d4d4842beacc11
4
+ data.tar.gz: 8af86e6dba4c5a7cd8c74aac54563fe0f4f80ec2
5
+ SHA512:
6
+ metadata.gz: 275cf7c643275c52f792fb7f7156b5f89ca9bb712ee0d6cd420e10670cbf68f764881ac38089d6cc08a67a10bc8e9639310d04cf01a75c9b3dcdaadade3bc5df
7
+ data.tar.gz: d58e16c9f74e5c71be3ed5f621fe12059b11fea5bb049b929cb7da6e813a6ffc0632dd6d51c28eaf1aa073fcf5d919b83b484d344c93f87f988c97db1ff8cb3c
data/README.md ADDED
@@ -0,0 +1,81 @@
1
+ # TableHelp
2
+
3
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
4
+ [![Build Status](https://travis-ci.org/yhirano55/table_help.svg?branch=master)](https://travis-ci.org/yhirano55/table_help)
5
+
6
+ Provide helper methods to build collection or resource tables for Rails 5.
7
+
8
+ `table_for` and `attributes_table_for` helper methods implemented in `TableHelp` are inspired by [ActiveAdmin](https://github.com/activeadmin/activeadmin).
9
+
10
+ ## Installation
11
+
12
+ Add this line to your application's Gemfile:
13
+
14
+ ```ruby
15
+ gem 'table_help'
16
+ ```
17
+
18
+ And then execute:
19
+
20
+ $ bundle
21
+
22
+ Or install it yourself as:
23
+
24
+ $ gem install table_help
25
+
26
+ ## Usage
27
+
28
+ ### Collection
29
+
30
+ ```html+erb
31
+ <%= table_for @articles do |t| %>
32
+ <% t.column :title %>
33
+ <% t.column :body do |article| %>
34
+ <%= truncate(article.body) %>
35
+ <% end %>
36
+ <% t.column :created_at %>
37
+ <% t.column :updated_at %>
38
+ <% t.column do |article| %>
39
+ <ul>
40
+ <li><%= link_to "Show", article %></li>
41
+ <li><%= link_to "Edit", edit_article_path(article) %></li>
42
+ <li><%= link_to "Destroy", edit_article_path(article), method: :delete %></li>
43
+ </ul>
44
+ <% end %>
45
+ <% end %>
46
+ ```
47
+
48
+ ### Resource
49
+
50
+ ```html+erb
51
+ <%= attributes_table_for @article do |t| %>
52
+ <% t.row :title %>
53
+ <% t.row :body do |article| %>
54
+ <%= truncate(article.body) %>
55
+ <% end %>
56
+ <% t.row :created_at %>
57
+ <% t.row :updated_at %>
58
+ <% t.row do |article| %>
59
+ <ul>
60
+ <li><%= link_to "Edit", edit_article_path(article) %></li>
61
+ <li><%= link_to "Destroy", edit_article_path(article), method: :delete %></li>
62
+ </ul>
63
+ <% end %>
64
+ <% end %>
65
+ ```
66
+
67
+ ## Configuration
68
+
69
+ You can change the default options for each table.
70
+
71
+ ```ruby
72
+ # config/initializers/table_help.rb
73
+ TableHelp.config.default_options = {
74
+ table_for: { class: "table_for your_optional_style", border: "1" },
75
+ attributes_table_for: { class: "attributes_table_for your_optional_style", border: "0" },
76
+ }
77
+ ```
78
+
79
+ ## License
80
+
81
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/lib/table_help.rb ADDED
@@ -0,0 +1,20 @@
1
+ require "table_help/version"
2
+
3
+ module TableHelp
4
+ module_function
5
+
6
+ def configure
7
+ yield(config)
8
+ end
9
+
10
+ def config
11
+ @_config ||= Config.new
12
+ end
13
+ end
14
+
15
+ require "table_help/config"
16
+ require "table_help/formatter"
17
+ require "table_help/strategy"
18
+ require "table_help/table_for"
19
+ require "table_help/attributes_table_for"
20
+ require "table_help/railtie" if defined?(Rails)
@@ -0,0 +1,44 @@
1
+ module TableHelp
2
+ class AttributesTableFor
3
+ attr_reader :resource, :context, :options, :rows
4
+ delegate :concat, :capture, :tag, to: :context
5
+
6
+ def initialize(resource, context, options = {})
7
+ @resource = resource
8
+ @context = context
9
+ @options = default_options.merge(options)
10
+ @rows = []
11
+ end
12
+
13
+ def row(name = nil, method_name = nil, &block)
14
+ rows << [
15
+ Formatter.format_attribute_name(name, resource),
16
+ Strategy.new(name, block_given? ? block : method_name),
17
+ ]
18
+ end
19
+
20
+ def to_html
21
+ return if resource.nil?
22
+ tag.table(tbody, options)
23
+ end
24
+
25
+ private
26
+
27
+ def tbody
28
+ tag.tbody do
29
+ rows.each do |attr_name, strategy|
30
+ concat(
31
+ tag.tr do
32
+ concat tag.th(attr_name)
33
+ concat tag.td(Formatter.format_value(strategy.name, strategy.to_value(resource, context)), class: "col-#{strategy.name}")
34
+ end,
35
+ )
36
+ end
37
+ end
38
+ end
39
+
40
+ def default_options
41
+ TableHelp.config.default_options[:attributes_table_for] || {}
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,16 @@
1
+ module TableHelp
2
+ class Config
3
+ attr_accessor :default_options
4
+
5
+ def initialize
6
+ @default_options = {
7
+ table_for: {
8
+ class: "table table-striped table-hover table_for",
9
+ },
10
+ attributes_table_for: {
11
+ class: "table table-striped table-hover attributes_table_for",
12
+ },
13
+ }
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,30 @@
1
+ module TableHelp
2
+ module Formatter
3
+ module_function
4
+
5
+ def format_attribute_name(name, collection_or_resource)
6
+ return if name.blank?
7
+
8
+ if collection_or_resource.respond_to?(:model)
9
+ collection_or_resource.model.human_attribute_name(name)
10
+ else
11
+ collection_or_resource.class.human_attribute_name(name)
12
+ end
13
+ end
14
+
15
+ def format_value(name, value)
16
+ case value
17
+ when DateTime, Time
18
+ I18n.l(value)
19
+ when Numeric
20
+ (name.to_sym == :id) ? value : value.to_s(:delimited)
21
+ when TrueClass, FalseClass
22
+ value.to_s
23
+ when NilClass
24
+ name ? tag.em(:empty) : nil
25
+ else
26
+ value
27
+ end
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,19 @@
1
+ module TableHelp
2
+ module Helper
3
+ def table_for(collection_or_resource, options = {})
4
+ resolve_builder_from(collection_or_resource, options).tap { |this| yield this }.to_html
5
+ end
6
+
7
+ alias_method :attributes_table_for, :table_for
8
+
9
+ private
10
+
11
+ def resolve_builder_from(collection_or_resource, options)
12
+ if collection_or_resource.respond_to?(:to_model)
13
+ AttributesTableFor.new(collection_or_resource, self, options)
14
+ else
15
+ TableFor.new(collection_or_resource, self, options)
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,11 @@
1
+ require "table_help/helper"
2
+
3
+ module TableHelp
4
+ class Railtie < ::Rails::Railtie
5
+ initializer "table_help.helper" do
6
+ ActiveSupport.on_load :action_view do
7
+ include TableHelp::Helper
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,21 @@
1
+ module TableHelp
2
+ class Strategy
3
+ attr_reader :name, :symbol_or_proc
4
+
5
+ def initialize(name, symbol_or_proc)
6
+ @name = name
7
+ @symbol_or_proc = symbol_or_proc
8
+ end
9
+
10
+ def to_value(record, context = nil)
11
+ case symbol_or_proc
12
+ when Symbol, String
13
+ record.send(symbol_or_proc)
14
+ when Proc
15
+ context.capture { symbol_or_proc.call(record) }
16
+ else
17
+ record.send(name)
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,58 @@
1
+ module TableHelp
2
+ class TableFor
3
+ attr_reader :collection, :context, :options, :column_names, :strategies
4
+ delegate :concat, :capture, :tag, to: :context
5
+
6
+ def initialize(collection, context, options = {})
7
+ @collection = collection
8
+ @context = context
9
+ @options = default_options.merge(options)
10
+ @column_names = []
11
+ @strategies = []
12
+ end
13
+
14
+ def column(name = nil, method_name = nil, &block)
15
+ column_names << Formatter.format_attribute_name(name, collection)
16
+ strategies << Strategy.new(name, block_given? ? block : method_name)
17
+ end
18
+
19
+ def to_html
20
+ return if collection.empty?
21
+
22
+ tag.table(options) do
23
+ concat thead
24
+ concat tbody
25
+ end
26
+ end
27
+
28
+ private
29
+
30
+ def thead
31
+ tag.thead do
32
+ tag.tr do
33
+ column_names.each do |column_name|
34
+ concat tag.th(column_name)
35
+ end
36
+ end
37
+ end
38
+ end
39
+
40
+ def tbody
41
+ tag.tbody do
42
+ collection.each do |record|
43
+ concat(
44
+ tag.tr(class: "table-row-#{record.model_name.singular}#{record.to_param}") do
45
+ strategies.each do |strategy|
46
+ concat tag.td(Formatter.format_value(strategy.name, strategy.to_value(record, context)), class: "col-#{strategy.name}")
47
+ end
48
+ end,
49
+ )
50
+ end
51
+ end
52
+ end
53
+
54
+ def default_options
55
+ TableHelp.config.default_options[:table_for] || {}
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,3 @@
1
+ module TableHelp
2
+ VERSION = "0.1.0".freeze
3
+ end
@@ -0,0 +1,17 @@
1
+ <h1>Article#index</h1>
2
+
3
+ <%= table_for @articles do |t| %>
4
+ <% t.column :title %>
5
+ <% t.column :body do |article| %>
6
+ <%= truncate(article.body) %>
7
+ <% end %>
8
+ <% t.column :created_at %>
9
+ <% t.column :updated_at %>
10
+ <% t.column do |article| %>
11
+ <ul>
12
+ <li><%= link_to "Show", article %></li>
13
+ <li><%= link_to "Edit", edit_article_path(article) %></li>
14
+ <li><%= link_to "Destroy", edit_article_path(article), method: :delete %></li>
15
+ </ul>
16
+ <% end %>
17
+ <% end %>
@@ -0,0 +1,16 @@
1
+ <h1>Article#show</h1>
2
+
3
+ <%= attributes_table_for @article do |t| %>
4
+ <% t.row :title %>
5
+ <% t.row :body do |article| %>
6
+ <%= truncate(article.body) %>
7
+ <% end %>
8
+ <% t.row :created_at %>
9
+ <% t.row :updated_at %>
10
+ <% t.row do |article| %>
11
+ <ul>
12
+ <li><%= link_to "Edit", edit_article_path(article) %></li>
13
+ <li><%= link_to "Destroy", edit_article_path(article), method: :delete %></li>
14
+ </ul>
15
+ <% end %>
16
+ <% end %>
@@ -0,0 +1,53 @@
1
+ require "active_record"
2
+ require "action_controller/railtie"
3
+ require "action_view/railtie"
4
+
5
+ ActiveRecord::Base.establish_connection(adapter: "sqlite3", database: ":memory:")
6
+
7
+ module FakeApp
8
+ class Application < Rails::Application
9
+ config.secret_token = "75633674e59de6a3b28da1c37f0f1479"
10
+ config.session_store :cookie_store, key: "_fake_session"
11
+ config.active_support.deprecation = :log
12
+ config.eager_load = false
13
+ config.action_dispatch.show_exceptions = false
14
+ config.root = File.dirname(__FILE__)
15
+ end
16
+ end
17
+
18
+ FakeApp::Application.initialize!
19
+
20
+ FakeApp::Application.routes.draw do
21
+ resources :articles
22
+ end
23
+
24
+ class Article < ActiveRecord::Base
25
+ end
26
+
27
+ module ApplicationHelper
28
+ end
29
+
30
+ class ApplicationController < ActionController::Base
31
+ self.append_view_path File.dirname(__FILE__)
32
+ end
33
+
34
+ class ArticlesController < ApplicationController
35
+ def index
36
+ @articles = Article.all
37
+ end
38
+
39
+ def show
40
+ @article = Article.find(params[:id])
41
+ end
42
+ end
43
+
44
+ class CreateArticles < ActiveRecord::Migration[5.0]
45
+ def change
46
+ create_table :articles do |t|
47
+ t.string :title
48
+ t.text :body
49
+
50
+ t.timestamps
51
+ end
52
+ end
53
+ end
@@ -0,0 +1 @@
1
+ run Rails.application
@@ -0,0 +1,772 @@
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
6
+ Processing by ArticlesController#index as HTML
7
+ Rendering articles/index.html.erb
8
+ Rendered articles/index.html.erb (8.9ms)
9
+ Completed 500 Internal Server Error in 30ms
10
+
11
+
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
222
+ Processing by ArticlesController#show as HTML
223
+ Parameters: {"id"=>"5"}
224
+ 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
+ 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)
595
+
596
+
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
599
+ Processing by ArticlesController#index as HTML
600
+ Rendering articles/index.html.erb
601
+ Rendered articles/index.html.erb (18.4ms)
602
+ Completed 200 OK in 32ms (Views: 31.0ms)
603
+
604
+
605
+ Started GET "/articles/6" for 127.0.0.1 at 2017-10-08 11:09:01 +0900
606
+ Processing by ArticlesController#show as HTML
607
+ Parameters: {"id"=>"6"}
608
+ 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
+