themes 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (172) hide show
  1. checksums.yaml +5 -13
  2. data/Rakefile +2 -1
  3. data/lib/themes.rb +6 -5
  4. data/lib/themes/engine.rb +1 -3
  5. data/lib/themes/loader.rb +3 -0
  6. data/lib/themes/version.rb +1 -1
  7. data/spec/dummy/log/test.log +0 -264
  8. data/spec/{dummy → dummy3}/README.rdoc +0 -0
  9. data/spec/{dummy → dummy3}/Rakefile +0 -0
  10. data/spec/dummy3/app +1 -0
  11. data/spec/{dummy → dummy3}/config.ru +0 -0
  12. data/spec/{dummy → dummy3}/config/application.rb +0 -0
  13. data/spec/{dummy → dummy3}/config/boot.rb +0 -0
  14. data/spec/{dummy → dummy3}/config/database.yml +0 -0
  15. data/spec/{dummy → dummy3}/config/environment.rb +0 -0
  16. data/spec/{dummy → dummy3}/config/environments/development.rb +0 -0
  17. data/spec/{dummy → dummy3}/config/environments/production.rb +0 -0
  18. data/spec/{dummy → dummy3}/config/environments/test.rb +0 -0
  19. data/spec/{dummy → dummy3}/config/initializers/backtrace_silencers.rb +0 -0
  20. data/spec/{dummy → dummy3}/config/initializers/inflections.rb +0 -0
  21. data/spec/{dummy → dummy3}/config/initializers/mime_types.rb +0 -0
  22. data/spec/{dummy → dummy3}/config/initializers/secret_token.rb +0 -0
  23. data/spec/{dummy → dummy3}/config/initializers/session_store.rb +0 -0
  24. data/spec/{dummy → dummy3}/config/initializers/wrap_parameters.rb +0 -0
  25. data/spec/{dummy → dummy3}/config/locales/en.yml +0 -0
  26. data/spec/{dummy → dummy3}/config/routes.rb +0 -0
  27. data/spec/{dummy → dummy3}/config/themes/test.rb +0 -0
  28. data/spec/dummy3/log/test.log +232 -0
  29. data/spec/{dummy → dummy3}/public/404.html +0 -0
  30. data/spec/{dummy → dummy3}/public/422.html +0 -0
  31. data/spec/{dummy → dummy3}/public/500.html +0 -0
  32. data/spec/{dummy → dummy3}/public/favicon.ico +0 -0
  33. data/spec/{dummy → dummy3}/script/rails +0 -0
  34. data/spec/dummy4/README.rdoc +261 -0
  35. data/spec/dummy4/Rakefile +7 -0
  36. data/spec/dummy4/app +1 -0
  37. data/spec/dummy4/bin/bundle +3 -0
  38. data/spec/dummy4/bin/rails +4 -0
  39. data/spec/dummy4/bin/rake +4 -0
  40. data/spec/dummy4/bin/setup +29 -0
  41. data/spec/dummy4/config.ru +4 -0
  42. data/spec/dummy4/config/application.rb +26 -0
  43. data/spec/dummy4/config/boot.rb +3 -0
  44. data/spec/dummy4/config/database.yml +26 -0
  45. data/spec/dummy4/config/environment.rb +5 -0
  46. data/spec/dummy4/config/environments/development.rb +41 -0
  47. data/spec/dummy4/config/environments/production.rb +79 -0
  48. data/spec/dummy4/config/environments/test.rb +42 -0
  49. data/spec/dummy4/config/initializers/assets.rb +11 -0
  50. data/spec/dummy4/config/initializers/backtrace_silencers.rb +7 -0
  51. data/spec/dummy4/config/initializers/cookies_serializer.rb +3 -0
  52. data/spec/dummy4/config/initializers/filter_parameter_logging.rb +4 -0
  53. data/spec/dummy4/config/initializers/inflections.rb +16 -0
  54. data/spec/dummy4/config/initializers/mime_types.rb +4 -0
  55. data/spec/dummy4/config/initializers/secret_token.rb +12 -0
  56. data/spec/dummy4/config/initializers/session_store.rb +3 -0
  57. data/spec/dummy4/config/initializers/wrap_parameters.rb +14 -0
  58. data/spec/dummy4/config/locales/en.yml +23 -0
  59. data/spec/dummy4/config/routes.rb +57 -0
  60. data/spec/dummy4/config/secrets.yml +22 -0
  61. data/spec/dummy4/config/themes/test.rb +8 -0
  62. data/spec/dummy4/log/test.log +196 -0
  63. data/spec/dummy4/public/404.html +26 -0
  64. data/spec/dummy4/public/422.html +26 -0
  65. data/spec/dummy4/public/500.html +25 -0
  66. data/spec/dummy4/public/favicon.ico +0 -0
  67. data/spec/dummy4/script/rails +6 -0
  68. data/spec/dummy5/README.rdoc +261 -0
  69. data/spec/dummy5/Rakefile +7 -0
  70. data/spec/dummy5/app +1 -0
  71. data/spec/dummy5/bin/bundle +3 -0
  72. data/spec/dummy5/bin/rails +4 -0
  73. data/spec/dummy5/bin/rake +4 -0
  74. data/spec/dummy5/bin/setup +36 -0
  75. data/spec/dummy5/bin/update +31 -0
  76. data/spec/dummy5/bin/yarn +11 -0
  77. data/spec/dummy5/config.ru +4 -0
  78. data/spec/dummy5/config/application.rb +19 -0
  79. data/spec/dummy5/config/boot.rb +4 -0
  80. data/spec/dummy5/config/cable.yml +10 -0
  81. data/spec/dummy5/config/database.yml +26 -0
  82. data/spec/dummy5/config/environment.rb +5 -0
  83. data/spec/dummy5/config/environments/development.rb +61 -0
  84. data/spec/dummy5/config/environments/production.rb +94 -0
  85. data/spec/dummy5/config/environments/test.rb +46 -0
  86. data/spec/dummy5/config/initializers/application_controller_renderer.rb +8 -0
  87. data/spec/dummy5/config/initializers/assets.rb +14 -0
  88. data/spec/dummy5/config/initializers/backtrace_silencers.rb +7 -0
  89. data/spec/dummy5/config/initializers/content_security_policy.rb +25 -0
  90. data/spec/dummy5/config/initializers/cookies_serializer.rb +5 -0
  91. data/spec/dummy5/config/initializers/filter_parameter_logging.rb +4 -0
  92. data/spec/dummy5/config/initializers/inflections.rb +16 -0
  93. data/spec/dummy5/config/initializers/mime_types.rb +4 -0
  94. data/spec/dummy5/config/initializers/new_framework_defaults_5_2.rb +38 -0
  95. data/spec/dummy5/config/initializers/secret_token.rb +12 -0
  96. data/spec/dummy5/config/initializers/session_store.rb +3 -0
  97. data/spec/dummy5/config/initializers/wrap_parameters.rb +14 -0
  98. data/spec/dummy5/config/locales/en.yml +33 -0
  99. data/spec/dummy5/config/routes.rb +4 -0
  100. data/spec/dummy5/config/secrets.yml +22 -0
  101. data/spec/dummy5/config/storage.yml +34 -0
  102. data/spec/dummy5/config/themes/test.rb +8 -0
  103. data/spec/dummy5/log/test.log +336 -0
  104. data/spec/dummy5/public/404.html +26 -0
  105. data/spec/dummy5/public/422.html +26 -0
  106. data/spec/dummy5/public/500.html +25 -0
  107. data/spec/dummy5/public/favicon.ico +0 -0
  108. data/spec/dummy5/script/rails +6 -0
  109. data/spec/dummy6/README.rdoc +261 -0
  110. data/spec/dummy6/Rakefile +7 -0
  111. data/spec/dummy6/app +1 -0
  112. data/spec/dummy6/bin/bundle +3 -0
  113. data/spec/dummy6/bin/rails +4 -0
  114. data/spec/dummy6/bin/rake +4 -0
  115. data/spec/dummy6/bin/setup +36 -0
  116. data/spec/dummy6/bin/update +31 -0
  117. data/spec/dummy6/bin/yarn +11 -0
  118. data/spec/dummy6/config.ru +4 -0
  119. data/spec/dummy6/config/application.rb +19 -0
  120. data/spec/dummy6/config/boot.rb +3 -0
  121. data/spec/dummy6/config/cable.yml +10 -0
  122. data/spec/dummy6/config/database.yml +26 -0
  123. data/spec/dummy6/config/environment.rb +5 -0
  124. data/spec/dummy6/config/environments/development.rb +62 -0
  125. data/spec/dummy6/config/environments/production.rb +112 -0
  126. data/spec/dummy6/config/environments/test.rb +48 -0
  127. data/spec/dummy6/config/initializers/application_controller_renderer.rb +8 -0
  128. data/spec/dummy6/config/initializers/assets.rb +14 -0
  129. data/spec/dummy6/config/initializers/backtrace_silencers.rb +7 -0
  130. data/spec/dummy6/config/initializers/content_security_policy.rb +30 -0
  131. data/spec/dummy6/config/initializers/cookies_serializer.rb +5 -0
  132. data/spec/dummy6/config/initializers/filter_parameter_logging.rb +4 -0
  133. data/spec/dummy6/config/initializers/inflections.rb +16 -0
  134. data/spec/dummy6/config/initializers/mime_types.rb +4 -0
  135. data/spec/dummy6/config/initializers/new_framework_defaults_5_2.rb +38 -0
  136. data/spec/dummy6/config/initializers/new_framework_defaults_6_0.rb +45 -0
  137. data/spec/dummy6/config/initializers/secret_token.rb +12 -0
  138. data/spec/dummy6/config/initializers/session_store.rb +3 -0
  139. data/spec/dummy6/config/initializers/wrap_parameters.rb +14 -0
  140. data/spec/dummy6/config/locales/en.yml +33 -0
  141. data/spec/dummy6/config/routes.rb +3 -0
  142. data/spec/dummy6/config/secrets.yml +22 -0
  143. data/spec/dummy6/config/storage.yml +34 -0
  144. data/spec/dummy6/config/themes/test.rb +8 -0
  145. data/spec/dummy6/log/development.log +0 -0
  146. data/spec/dummy6/log/test.log +630 -0
  147. data/spec/dummy6/public/404.html +26 -0
  148. data/spec/dummy6/public/422.html +26 -0
  149. data/spec/dummy6/public/500.html +25 -0
  150. data/spec/dummy6/public/favicon.ico +0 -0
  151. data/spec/dummy6/script/rails +6 -0
  152. data/spec/dummy_app_folder/assets/config/manifest.js +3 -0
  153. data/spec/{dummy/app → dummy_app_folder}/assets/javascripts/application.js +0 -0
  154. data/spec/{dummy/app → dummy_app_folder}/assets/stylesheets/application.css +0 -0
  155. data/spec/{dummy/app → dummy_app_folder}/controllers/application_controller.rb +0 -0
  156. data/spec/{dummy/app → dummy_app_folder}/controllers/posts_controller.rb +0 -0
  157. data/spec/{dummy/app → dummy_app_folder}/helpers/application_helper.rb +0 -0
  158. data/spec/{dummy/app → dummy_app_folder}/mailers/notifier.rb +0 -0
  159. data/spec/dummy_app_folder/views/layouts/application.html.erb +6 -0
  160. data/spec/{dummy/app → dummy_app_folder}/views/notifier/good_bye_message.html.erb +0 -0
  161. data/spec/{dummy/app → dummy_app_folder}/views/notifier/wellcome_message.html.erb +0 -0
  162. data/spec/{dummy/app → dummy_app_folder}/views/posts/index.html.erb +0 -0
  163. data/spec/dummy_app_folder/views/themes/test/layouts/application.html.erb +7 -0
  164. data/spec/{dummy/app → dummy_app_folder}/views/themes/test/notifier/wellcome_message.html.erb +0 -0
  165. data/spec/{dummy/app → dummy_app_folder}/views/themes/test/posts/index.html.erb +0 -0
  166. data/spec/{controllers → features}/posts_controller_spec.rb +5 -9
  167. data/spec/generators/new_theme_generator_spec.rb +4 -4
  168. data/spec/spec_helper.rb +8 -7
  169. data/spec/themes_engine_spec.rb +5 -5
  170. metadata +452 -111
  171. data/spec/dummy/app/views/layouts/application.html.erb +0 -4
  172. data/spec/dummy/app/views/themes/test/layouts/application.html.erb +0 -4
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- ZTNiMjQ5NDM2ZjUzYmI0MWM3YzQzNjFjOTEzN2NiNGUwYjE0ZDRhNA==
5
- data.tar.gz: !binary |-
6
- ZTBjZDUxZjRhNjM5ZTUzOWNhZDMzZmE5Mzk1MzJjN2VjYjg2N2YxYg==
2
+ SHA256:
3
+ metadata.gz: a425db8cebacf27a0912c0d3fc4156402232564eeb3e55ff9a619b00b364dd69
4
+ data.tar.gz: ca4dfce8f619906c49f082f4ed7ab8f5152feed8f7267dcb6a8ef1000199e8af
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- YmI4NTczYTAzYzMyY2I2MzliODAzNDcyOGVjZDgyMzBjMjE4MGJjZTkzZjcx
10
- MmRjYzYwODYxY2EwNTI2MjkwMjM2ZmI0ZTJkZDhkZDkzZTNmMGVlM2VmZTk5
11
- OGE1Njc1N2JjOWFkZTA4NGUzNTkxZGEwMzg1MTYxYjQ4OWU3MTM=
12
- data.tar.gz: !binary |-
13
- OGNmYjNiNmI3MjY1MDQxNWQzYTEwMmY0ZWFmOTkxNzc0ZGI2ZjU2YjM3YTJh
14
- ZDZlYjY0NzNkYmM2N2VjNzk4N2VjNmUwZmU1YmZmODBhNzg4Yjk2MmFlZTIy
15
- NGZmMTY4ODZlZDc2ZjQ2NjliZDdjZTMzZGIxNWMzMzAzY2Q1Nzg=
6
+ metadata.gz: c9aa1236b25cb3f2707cb76bec540478e3bbc6e238d45d7248409d1f20f34d5c4a13274ac3f7fe4289b080781ba65a84ff3da667e4eeb34aeffbdaf38529a285
7
+ data.tar.gz: ead0fe5b19d2aa5ce6310fce2b4fa70bf5564e9c692f99e0483ed48d0195fcfac03650db9d978c6031f1b6f40121bfb89c9836a73193e51a01ce5599cfbdbf4f
data/Rakefile CHANGED
@@ -12,6 +12,8 @@ rescue LoadError
12
12
  RDoc::Task = Rake::RDocTask
13
13
  end
14
14
 
15
+ require 'wwtd/tasks'
16
+
15
17
  RDoc::Task.new(:rdoc) do |rdoc|
16
18
  rdoc.rdoc_dir = 'rdoc'
17
19
  rdoc.title = 'Themes'
@@ -31,4 +33,3 @@ Coveralls::RakeTask.new('coveralls:push')
31
33
  RSpec::Core::RakeTask.new(:spec)
32
34
 
33
35
  task :default => :spec
34
-
data/lib/themes.rb CHANGED
@@ -1,3 +1,8 @@
1
+
2
+ require "zeitwerk"
3
+ loader = Zeitwerk::Loader.for_gem
4
+ loader.setup
5
+
1
6
  require 'active_support/core_ext/module/attribute_accessors'
2
7
 
3
8
  module Themes
@@ -6,10 +11,6 @@ module Themes
6
11
 
7
12
  mattr_accessor :email
8
13
  @@email = nil
9
-
10
- autoload :Helpers, 'themes/helpers'
11
- autoload :Paths, 'themes/paths'
12
- autoload :Environments, 'themes/environments'
13
14
  end
14
15
 
15
- require 'themes/engine'
16
+ Themes::Engine
data/lib/themes/engine.rb CHANGED
@@ -1,6 +1,4 @@
1
1
  module Themes
2
- class Loader; end;
3
-
4
2
  class Engine < ::Rails::Engine
5
3
  config.theme = Themes
6
4
 
@@ -27,4 +25,4 @@ module Themes
27
25
  ActionMailer::Base.send(:include, Themes::Paths)
28
26
  end
29
27
  end
30
- end
28
+ end
@@ -0,0 +1,3 @@
1
+ module Themes
2
+ class Loader; end;
3
+ end
@@ -1,3 +1,3 @@
1
1
  module Themes
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -1,264 +0,0 @@
1
- Connecting to database specified by database.yml
2
- Processing by PostsController#index as HTML
3
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
4
- Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
5
- Processing by PostsController#index as HTML
6
- Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
7
- Processing by PostsController#index as HTML
8
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
9
- Connecting to database specified by database.yml
10
- Processing by PostsController#index as HTML
11
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
12
- Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
13
- Processing by PostsController#index as HTML
14
- Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
15
- Processing by PostsController#index as HTML
16
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
17
- Connecting to database specified by database.yml
18
- Processing by PostsController#index as HTML
19
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
20
- Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
21
- Processing by PostsController#index as HTML
22
- Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
23
- Processing by PostsController#index as HTML
24
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
25
- Connecting to database specified by database.yml
26
- Processing by PostsController#index as HTML
27
- Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
28
- Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
29
- Processing by PostsController#index as HTML
30
- Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
31
- Processing by PostsController#index as HTML
32
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
33
- Connecting to database specified by database.yml
34
- Processing by PostsController#index as HTML
35
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
36
- Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
37
- Processing by PostsController#index as HTML
38
- Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
39
- Processing by PostsController#index as HTML
40
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
41
- Connecting to database specified by database.yml
42
- Processing by PostsController#index as HTML
43
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
44
- Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
45
- Processing by PostsController#index as HTML
46
- Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
47
- Processing by PostsController#index as HTML
48
- Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
49
- Connecting to database specified by database.yml
50
- Processing by PostsController#index as HTML
51
- Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
52
- Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
53
- Processing by PostsController#index as HTML
54
- Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
55
- Processing by PostsController#index as HTML
56
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
57
- Connecting to database specified by database.yml
58
- Processing by PostsController#index as HTML
59
- Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
60
- Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
61
- Processing by PostsController#index as HTML
62
- Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
63
- Processing by PostsController#index as HTML
64
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
65
- Connecting to database specified by database.yml
66
- Processing by PostsController#index as HTML
67
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
68
- Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
69
- Processing by PostsController#index as HTML
70
- Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
71
- Processing by PostsController#index as HTML
72
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
73
- Connecting to database specified by database.yml
74
- Processing by PostsController#index as HTML
75
- Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
76
- Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
77
- Processing by PostsController#index as HTML
78
- Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
79
- Processing by PostsController#index as HTML
80
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
81
- Connecting to database specified by database.yml
82
- Processing by PostsController#index as HTML
83
- Rendered themes/test/posts/index.html.erb within layouts/application (0.4ms)
84
- Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
85
- Processing by PostsController#index as HTML
86
- Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
87
- Processing by PostsController#index as HTML
88
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
89
- Connecting to database specified by database.yml
90
- Processing by PostsController#index as HTML
91
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
92
- Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
93
- Processing by PostsController#index as HTML
94
- Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
95
- Processing by PostsController#index as HTML
96
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
97
- Connecting to database specified by database.yml
98
- Processing by PostsController#index as HTML
99
- Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
100
- Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
101
- Processing by PostsController#index as HTML
102
- Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
103
- Processing by PostsController#index as HTML
104
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
105
- Connecting to database specified by database.yml
106
- Processing by PostsController#index as HTML
107
- Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
108
- Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
109
- Processing by PostsController#index as HTML
110
- Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
111
- Processing by PostsController#index as HTML
112
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
113
- Connecting to database specified by database.yml
114
- Processing by PostsController#index as HTML
115
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
116
- Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
117
- Processing by PostsController#index as HTML
118
- Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
119
- Processing by PostsController#index as HTML
120
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
121
- Connecting to database specified by database.yml
122
- Processing by PostsController#index as HTML
123
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
124
- Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
125
- Processing by PostsController#index as HTML
126
- Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
127
- Processing by PostsController#index as HTML
128
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
129
- Connecting to database specified by database.yml
130
- Processing by PostsController#index as HTML
131
- Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
132
- Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms)
133
- Processing by PostsController#index as HTML
134
- Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
135
- Processing by PostsController#index as HTML
136
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
137
- Connecting to database specified by database.yml
138
- Processing by PostsController#index as HTML
139
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
140
- Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
141
- Processing by PostsController#index as HTML
142
- Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
143
- Processing by PostsController#index as HTML
144
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
145
- Connecting to database specified by database.yml
146
- Processing by PostsController#index as HTML
147
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
148
- Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
149
- Processing by PostsController#index as HTML
150
- Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
151
- Processing by PostsController#index as HTML
152
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
153
- Connecting to database specified by database.yml
154
- Processing by PostsController#index as HTML
155
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
156
- Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
157
- Processing by PostsController#index as HTML
158
- Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
159
- Processing by PostsController#index as HTML
160
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
161
- Connecting to database specified by database.yml
162
- Processing by PostsController#index as HTML
163
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
164
- Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
165
- Processing by PostsController#index as HTML
166
- Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
167
- Processing by PostsController#index as HTML
168
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
169
- Connecting to database specified by database.yml
170
- Processing by PostsController#index as HTML
171
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
172
- Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.0ms)
173
- Processing by PostsController#index as HTML
174
- Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
175
- Processing by PostsController#index as HTML
176
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
177
- Connecting to database specified by database.yml
178
- Processing by PostsController#index as HTML
179
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
180
- Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
181
- Processing by PostsController#index as HTML
182
- Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
183
- Processing by PostsController#index as HTML
184
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
185
- Connecting to database specified by database.yml
186
- Processing by PostsController#index as HTML
187
- Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
188
- Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
189
- Processing by PostsController#index as HTML
190
- Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
191
- Processing by PostsController#index as HTML
192
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
193
- Connecting to database specified by database.yml
194
- Processing by PostsController#index as HTML
195
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
196
- Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
197
- Processing by PostsController#index as HTML
198
- Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
199
- Processing by PostsController#index as HTML
200
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
201
- Connecting to database specified by database.yml
202
- Processing by PostsController#index as HTML
203
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
204
- Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
205
- Processing by PostsController#index as HTML
206
- Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
207
- Processing by PostsController#index as HTML
208
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
209
- Connecting to database specified by database.yml
210
- Processing by PostsController#index as HTML
211
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
212
- Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
213
- Processing by PostsController#index as HTML
214
- Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
215
- Processing by PostsController#index as HTML
216
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
217
- Connecting to database specified by database.yml
218
- Processing by PostsController#index as HTML
219
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
220
- Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
221
- Processing by PostsController#index as HTML
222
- Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
223
- Processing by PostsController#index as HTML
224
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
225
- Connecting to database specified by database.yml
226
- Processing by PostsController#index as HTML
227
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
228
- Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
229
- Processing by PostsController#index as HTML
230
- Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
231
- Processing by PostsController#index as HTML
232
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
233
- Connecting to database specified by database.yml
234
- Processing by PostsController#index as HTML
235
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
236
- Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
237
- Processing by PostsController#index as HTML
238
- Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
239
- Processing by PostsController#index as HTML
240
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
241
- Connecting to database specified by database.yml
242
- Processing by PostsController#index as HTML
243
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
244
- Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
245
- Processing by PostsController#index as HTML
246
- Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
247
- Processing by PostsController#index as HTML
248
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
249
- Connecting to database specified by database.yml
250
- Processing by PostsController#index as HTML
251
- Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
252
- Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms)
253
- Processing by PostsController#index as HTML
254
- Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
255
- Processing by PostsController#index as HTML
256
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
257
- Connecting to database specified by database.yml
258
- Processing by PostsController#index as HTML
259
- Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
260
- Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
261
- Processing by PostsController#index as HTML
262
- Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
263
- Processing by PostsController#index as HTML
264
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
File without changes
File without changes
data/spec/dummy3/app ADDED
@@ -0,0 +1 @@
1
+ spec/dummy3/../dummy_app_folder
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,232 @@
1
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:11:14 +0100
2
+ Processing by PostsController#index as HTML
3
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.5ms)
4
+ Completed 200 OK in 16.6ms (Views: 16.4ms)
5
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:11:14 +0100
6
+ Processing by PostsController#index as HTML
7
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
8
+ Completed 200 OK in 0.4ms (Views: 0.3ms)
9
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
10
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
11
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:15:21 +0100
12
+ Processing by PostsController#index as HTML
13
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.0ms)
14
+ Completed 200 OK in 9.3ms (Views: 9.1ms)
15
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:15:21 +0100
16
+ Processing by PostsController#index as HTML
17
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
18
+ Completed 200 OK in 0.3ms (Views: 0.3ms)
19
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
20
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
21
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:17:51 +0100
22
+ Processing by PostsController#index as HTML
23
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.0ms)
24
+ Completed 200 OK in 9.3ms (Views: 9.1ms)
25
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:17:51 +0100
26
+ Processing by PostsController#index as HTML
27
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
28
+ Completed 200 OK in 0.3ms (Views: 0.3ms)
29
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
30
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
31
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:21:33 +0100
32
+ Processing by PostsController#index as HTML
33
+ Rendered themes/test/posts/index.html.erb within layouts/application (4.7ms)
34
+ Completed 200 OK in 13.3ms (Views: 13.1ms)
35
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:21:33 +0100
36
+ Processing by PostsController#index as HTML
37
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
38
+ Completed 200 OK in 0.4ms (Views: 0.3ms)
39
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
40
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
41
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:24:10 +0100
42
+ Processing by PostsController#index as HTML
43
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.1ms)
44
+ Completed 200 OK in 9.7ms (Views: 9.4ms)
45
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:24:10 +0100
46
+ Processing by PostsController#index as HTML
47
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
48
+ Completed 200 OK in 0.4ms (Views: 0.4ms)
49
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
50
+ Rendered notifier/good_bye_message.html.erb (0.6ms)
51
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:25:22 +0100
52
+ Processing by PostsController#index as HTML
53
+ Rendered themes/test/posts/index.html.erb within layouts/application (4.6ms)
54
+ Completed 200 OK in 13.1ms (Views: 12.8ms)
55
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:25:22 +0100
56
+ Processing by PostsController#index as HTML
57
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
58
+ Completed 200 OK in 0.4ms (Views: 0.4ms)
59
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.5ms)
60
+ Rendered notifier/good_bye_message.html.erb (0.7ms)
61
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:33:06 +0100
62
+ Processing by PostsController#index as HTML
63
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.5ms)
64
+ Completed 200 OK in 18.1ms (Views: 17.8ms)
65
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:33:06 +0100
66
+ Processing by PostsController#index as HTML
67
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
68
+ Completed 200 OK in 0.5ms (Views: 0.4ms)
69
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
70
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
71
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:42:02 +0100
72
+ Processing by PostsController#index as HTML
73
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.6ms)
74
+ Completed 200 OK in 16.6ms (Views: 16.4ms)
75
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:42:02 +0100
76
+ Processing by PostsController#index as HTML
77
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
78
+ Completed 200 OK in 0.3ms (Views: 0.3ms)
79
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
80
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
81
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:45:32 +0100
82
+ Processing by PostsController#index as HTML
83
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.4ms)
84
+ Completed 200 OK in 10.3ms (Views: 10.1ms)
85
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:45:32 +0100
86
+ Processing by PostsController#index as HTML
87
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
88
+ Completed 200 OK in 0.3ms (Views: 0.3ms)
89
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
90
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
91
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:47:43 +0100
92
+ Processing by PostsController#index as HTML
93
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.0ms)
94
+ Completed 200 OK in 9.3ms (Views: 9.1ms)
95
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:47:43 +0100
96
+ Processing by PostsController#index as HTML
97
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
98
+ Completed 200 OK in 0.3ms (Views: 0.3ms)
99
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
100
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
101
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:49:41 +0100
102
+ Processing by PostsController#index as HTML
103
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.3ms)
104
+ Completed 200 OK in 9.9ms (Views: 9.6ms)
105
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:49:41 +0100
106
+ Processing by PostsController#index as HTML
107
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
108
+ Completed 200 OK in 0.3ms (Views: 0.3ms)
109
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
110
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
111
+ Connecting to database specified by database.yml
112
+ Connecting to database specified by database.yml
113
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:01:54 +0100
114
+ Processing by PostsController#index as HTML
115
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.0ms)
116
+ Completed 200 OK in 9.2ms (Views: 8.9ms | ActiveRecord: 0.0ms)
117
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:01:54 +0100
118
+ Processing by PostsController#index as HTML
119
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
120
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
121
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
122
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
123
+ Connecting to database specified by database.yml
124
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:04:29 +0100
125
+ Processing by PostsController#index as HTML
126
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.2ms)
127
+ Completed 200 OK in 9.3ms (Views: 9.1ms | ActiveRecord: 0.0ms)
128
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:04:29 +0100
129
+ Processing by PostsController#index as HTML
130
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
131
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
132
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
133
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
134
+ Connecting to database specified by database.yml
135
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:16:32 +0100
136
+ Processing by PostsController#index as HTML
137
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.6ms)
138
+ Completed 200 OK in 17.8ms (Views: 17.5ms | ActiveRecord: 0.0ms)
139
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:16:32 +0100
140
+ Processing by PostsController#index as HTML
141
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
142
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
143
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
144
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
145
+ Connecting to database specified by database.yml
146
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:32:39 +0100
147
+ Processing by PostsController#index as HTML
148
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.7ms)
149
+ Completed 200 OK in 12.8ms (Views: 12.3ms | ActiveRecord: 0.0ms)
150
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:32:39 +0100
151
+ Processing by PostsController#index as HTML
152
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
153
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
154
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
155
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
156
+ Connecting to database specified by database.yml
157
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:39:36 +0100
158
+ Processing by PostsController#index as HTML
159
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.1ms)
160
+ Completed 200 OK in 8.7ms (Views: 8.4ms | ActiveRecord: 0.0ms)
161
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:39:36 +0100
162
+ Processing by PostsController#index as HTML
163
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
164
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
165
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
166
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
167
+ Connecting to database specified by database.yml
168
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:40:54 +0100
169
+ Processing by PostsController#index as HTML
170
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
171
+ Completed 200 OK in 8.3ms (Views: 8.0ms | ActiveRecord: 0.0ms)
172
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:40:54 +0100
173
+ Processing by PostsController#index as HTML
174
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
175
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
176
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
177
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
178
+ Connecting to database specified by database.yml
179
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:48:23 +0100
180
+ Processing by PostsController#index as HTML
181
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
182
+ Completed 200 OK in 8.6ms (Views: 8.3ms | ActiveRecord: 0.0ms)
183
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:48:23 +0100
184
+ Processing by PostsController#index as HTML
185
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
186
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
187
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
188
+ Rendered notifier/good_bye_message.html.erb (0.4ms)
189
+ Connecting to database specified by database.yml
190
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:37 +0100
191
+ Processing by PostsController#index as HTML
192
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.3ms)
193
+ Completed 200 OK in 18.9ms (Views: 18.4ms | ActiveRecord: 0.0ms)
194
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:37 +0100
195
+ Processing by PostsController#index as HTML
196
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
197
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
198
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
199
+ Rendered notifier/good_bye_message.html.erb (0.7ms)
200
+ Connecting to database specified by database.yml
201
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:40 +0100
202
+ Processing by PostsController#index as HTML
203
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
204
+ Completed 200 OK in 8.4ms (Views: 8.2ms | ActiveRecord: 0.0ms)
205
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:40 +0100
206
+ Processing by PostsController#index as HTML
207
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
208
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
209
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
210
+ Rendered notifier/good_bye_message.html.erb (0.4ms)
211
+ Connecting to database specified by database.yml
212
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:55 +0100
213
+ Processing by PostsController#index as HTML
214
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.6ms)
215
+ Completed 200 OK in 16.8ms (Views: 16.6ms | ActiveRecord: 0.0ms)
216
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:55 +0100
217
+ Processing by PostsController#index as HTML
218
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
219
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
220
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
221
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
222
+ Connecting to database specified by database.yml
223
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:33:00 +0100
224
+ Processing by PostsController#index as HTML
225
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.1ms)
226
+ Completed 200 OK in 15.4ms (Views: 15.1ms | ActiveRecord: 0.0ms)
227
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:33:00 +0100
228
+ Processing by PostsController#index as HTML
229
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
230
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
231
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
232
+ Rendered notifier/good_bye_message.html.erb (0.3ms)