pubsub_notifier 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (219) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +9 -3
  3. data/lib/generators/rails/templates/notifier.tt +2 -1
  4. data/lib/generators/rspec/notifier_generator.rb +1 -1
  5. data/lib/pubsub_notifier/proxy.rb +1 -1
  6. data/lib/pubsub_notifier/version.rb +1 -1
  7. data/spec/integration_spec.rb +15 -0
  8. data/spec/lib/acts_as_notifier_spec.rb +38 -0
  9. data/spec/lib/base_spec.rb +55 -0
  10. data/spec/lib/broadcasters/active_job_broadcaster_spec.rb +33 -0
  11. data/spec/lib/broadcasters_spec.rb +21 -0
  12. data/spec/lib/client_spec.rb +33 -0
  13. data/spec/lib/config_spec.rb +7 -0
  14. data/spec/lib/proxy_spec.rb +60 -0
  15. data/spec/lib/pubsub_spec.rb +14 -0
  16. data/spec/lib/slack_client_spec.rb +22 -0
  17. data/spec/pubsub_notifier_spec.rb +38 -20
  18. data/spec/rails/rails-4.2.9/README.rdoc +28 -0
  19. data/spec/rails/rails-4.2.9/Rakefile +6 -0
  20. data/spec/rails/rails-4.2.9/app/assets/javascripts/application.js +16 -0
  21. data/spec/rails/rails-4.2.9/app/assets/stylesheets/application.css +15 -0
  22. data/spec/rails/rails-4.2.9/app/controllers/application_controller.rb +5 -0
  23. data/spec/rails/rails-4.2.9/app/helpers/application_helper.rb +2 -0
  24. data/spec/rails/rails-4.2.9/app/mailers/application_mailer.rb +4 -0
  25. data/spec/rails/rails-4.2.9/app/mailers/post_mailer.rb +13 -0
  26. data/spec/rails/rails-4.2.9/app/mailers/user_mailer.rb +13 -0
  27. data/spec/rails/rails-4.2.9/app/models/post.rb +6 -0
  28. data/spec/rails/rails-4.2.9/app/models/register.rb +9 -0
  29. data/spec/rails/rails-4.2.9/app/models/user.rb +6 -0
  30. data/spec/{support → rails/rails-4.2.9/app}/notifiers/application_notifier.rb +0 -0
  31. data/spec/rails/rails-4.2.9/app/notifiers/post_notifier.rb +12 -0
  32. data/spec/rails/rails-4.2.9/app/notifiers/user_notifier.rb +12 -0
  33. data/spec/rails/rails-4.2.9/app/views/layouts/application.html.erb +14 -0
  34. data/spec/rails/rails-4.2.9/app/views/layouts/mailer.html.erb +5 -0
  35. data/spec/rails/rails-4.2.9/app/views/layouts/mailer.text.erb +1 -0
  36. data/spec/rails/rails-4.2.9/app/views/post_mailer/failure.html.erb +5 -0
  37. data/spec/rails/rails-4.2.9/app/views/post_mailer/failure.text.erb +3 -0
  38. data/spec/rails/rails-4.2.9/app/views/user_mailer/success.html.erb +5 -0
  39. data/spec/rails/rails-4.2.9/app/views/user_mailer/success.text.erb +3 -0
  40. data/spec/rails/rails-4.2.9/bin/bundle +3 -0
  41. data/spec/rails/rails-4.2.9/bin/rails +4 -0
  42. data/spec/rails/rails-4.2.9/bin/rake +4 -0
  43. data/spec/rails/rails-4.2.9/bin/setup +29 -0
  44. data/spec/rails/rails-4.2.9/config.ru +4 -0
  45. data/spec/rails/rails-4.2.9/config/application.rb +35 -0
  46. data/spec/rails/rails-4.2.9/config/boot.rb +3 -0
  47. data/spec/rails/rails-4.2.9/config/database.yml +25 -0
  48. data/spec/rails/rails-4.2.9/config/environment.rb +8 -0
  49. data/spec/rails/rails-4.2.9/config/environments/development.rb +28 -0
  50. data/spec/rails/rails-4.2.9/config/environments/production.rb +67 -0
  51. data/spec/rails/rails-4.2.9/config/environments/test.rb +43 -0
  52. data/spec/rails/rails-4.2.9/config/initializers/backtrace_silencers.rb +7 -0
  53. data/spec/rails/rails-4.2.9/config/initializers/cookies_serializer.rb +3 -0
  54. data/spec/rails/rails-4.2.9/config/initializers/filter_parameter_logging.rb +4 -0
  55. data/spec/rails/rails-4.2.9/config/initializers/inflections.rb +16 -0
  56. data/spec/rails/rails-4.2.9/config/initializers/mime_types.rb +4 -0
  57. data/spec/rails/rails-4.2.9/config/initializers/pubsub_notifier.rb +10 -0
  58. data/spec/rails/rails-4.2.9/config/initializers/session_store.rb +3 -0
  59. data/spec/rails/rails-4.2.9/config/initializers/to_time_preserves_timezone.rb +10 -0
  60. data/spec/rails/rails-4.2.9/config/initializers/wrap_parameters.rb +14 -0
  61. data/spec/rails/rails-4.2.9/config/locales/en.yml +23 -0
  62. data/spec/rails/rails-4.2.9/config/routes.rb +56 -0
  63. data/spec/rails/rails-4.2.9/config/secrets.yml +22 -0
  64. data/spec/rails/rails-4.2.9/db/migrate/20170714092725_create_users.rb +9 -0
  65. data/spec/rails/rails-4.2.9/db/migrate/20170714092727_create_posts.rb +9 -0
  66. data/spec/rails/rails-4.2.9/db/schema.rb +28 -0
  67. data/spec/rails/rails-4.2.9/db/seeds.rb +7 -0
  68. data/spec/rails/rails-4.2.9/db/test.sqlite3 +0 -0
  69. data/spec/rails/rails-4.2.9/log/test.log +272 -0
  70. data/spec/rails/rails-4.2.9/public/404.html +67 -0
  71. data/spec/rails/rails-4.2.9/public/422.html +67 -0
  72. data/spec/rails/rails-4.2.9/public/500.html +66 -0
  73. data/spec/rails/rails-4.2.9/public/favicon.ico +0 -0
  74. data/spec/rails/rails-4.2.9/public/robots.txt +5 -0
  75. data/spec/rails/rails-5.0.4/README.md +24 -0
  76. data/spec/rails/rails-5.0.4/Rakefile +6 -0
  77. data/spec/rails/rails-5.0.4/app/assets/config/manifest.js +3 -0
  78. data/spec/rails/rails-5.0.4/app/assets/javascripts/application.js +15 -0
  79. data/spec/rails/rails-5.0.4/app/assets/javascripts/cable.js +13 -0
  80. data/spec/rails/rails-5.0.4/app/assets/stylesheets/application.css +15 -0
  81. data/spec/rails/rails-5.0.4/app/channels/application_cable/channel.rb +4 -0
  82. data/spec/rails/rails-5.0.4/app/channels/application_cable/connection.rb +4 -0
  83. data/spec/rails/rails-5.0.4/app/controllers/application_controller.rb +3 -0
  84. data/spec/rails/rails-5.0.4/app/helpers/application_helper.rb +2 -0
  85. data/spec/rails/rails-5.0.4/app/jobs/application_job.rb +2 -0
  86. data/spec/rails/rails-5.0.4/app/mailers/application_mailer.rb +4 -0
  87. data/spec/rails/rails-5.0.4/app/mailers/post_mailer.rb +14 -0
  88. data/spec/rails/rails-5.0.4/app/mailers/user_mailer.rb +14 -0
  89. data/spec/rails/rails-5.0.4/app/models/application_record.rb +3 -0
  90. data/spec/rails/rails-5.0.4/app/models/post.rb +6 -0
  91. data/spec/rails/rails-5.0.4/app/models/register.rb +9 -0
  92. data/spec/rails/rails-5.0.4/app/models/user.rb +6 -0
  93. data/spec/rails/rails-5.0.4/app/notifiers/application_notifier.rb +2 -0
  94. data/spec/rails/rails-5.0.4/app/notifiers/post_notifier.rb +12 -0
  95. data/spec/rails/rails-5.0.4/app/notifiers/user_notifier.rb +12 -0
  96. data/spec/rails/rails-5.0.4/app/views/layouts/application.html.erb +14 -0
  97. data/spec/rails/rails-5.0.4/app/views/layouts/mailer.html.erb +13 -0
  98. data/spec/rails/rails-5.0.4/app/views/layouts/mailer.text.erb +1 -0
  99. data/spec/rails/rails-5.0.4/app/views/post_mailer/failure.html.erb +5 -0
  100. data/spec/rails/rails-5.0.4/app/views/post_mailer/failure.text.erb +3 -0
  101. data/spec/rails/rails-5.0.4/app/views/user_mailer/success.html.erb +5 -0
  102. data/spec/rails/rails-5.0.4/app/views/user_mailer/success.text.erb +3 -0
  103. data/spec/rails/rails-5.0.4/bin/bundle +3 -0
  104. data/spec/rails/rails-5.0.4/bin/rails +4 -0
  105. data/spec/rails/rails-5.0.4/bin/rake +4 -0
  106. data/spec/rails/rails-5.0.4/bin/setup +34 -0
  107. data/spec/rails/rails-5.0.4/bin/update +29 -0
  108. data/spec/rails/rails-5.0.4/config.ru +5 -0
  109. data/spec/rails/rails-5.0.4/config/application.rb +25 -0
  110. data/spec/rails/rails-5.0.4/config/boot.rb +3 -0
  111. data/spec/rails/rails-5.0.4/config/cable.yml +9 -0
  112. data/spec/rails/rails-5.0.4/config/database.yml +25 -0
  113. data/spec/rails/rails-5.0.4/config/environment.rb +8 -0
  114. data/spec/rails/rails-5.0.4/config/environments/development.rb +47 -0
  115. data/spec/rails/rails-5.0.4/config/environments/production.rb +78 -0
  116. data/spec/rails/rails-5.0.4/config/environments/test.rb +43 -0
  117. data/spec/rails/rails-5.0.4/config/initializers/application_controller_renderer.rb +6 -0
  118. data/spec/rails/rails-5.0.4/config/initializers/backtrace_silencers.rb +7 -0
  119. data/spec/rails/rails-5.0.4/config/initializers/cookies_serializer.rb +5 -0
  120. data/spec/rails/rails-5.0.4/config/initializers/filter_parameter_logging.rb +4 -0
  121. data/spec/rails/rails-5.0.4/config/initializers/inflections.rb +16 -0
  122. data/spec/rails/rails-5.0.4/config/initializers/mime_types.rb +4 -0
  123. data/spec/rails/rails-5.0.4/config/initializers/new_framework_defaults.rb +26 -0
  124. data/spec/rails/rails-5.0.4/config/initializers/pubsub_notifier.rb +10 -0
  125. data/spec/rails/rails-5.0.4/config/initializers/session_store.rb +3 -0
  126. data/spec/rails/rails-5.0.4/config/initializers/wrap_parameters.rb +14 -0
  127. data/spec/rails/rails-5.0.4/config/locales/en.yml +23 -0
  128. data/spec/rails/rails-5.0.4/config/puma.rb +47 -0
  129. data/spec/rails/rails-5.0.4/config/routes.rb +3 -0
  130. data/spec/rails/rails-5.0.4/config/secrets.yml +22 -0
  131. data/spec/rails/rails-5.0.4/db/migrate/20170714092740_create_users.rb +9 -0
  132. data/spec/rails/rails-5.0.4/db/migrate/20170714092741_create_posts.rb +9 -0
  133. data/spec/rails/rails-5.0.4/db/schema.rb +27 -0
  134. data/spec/rails/rails-5.0.4/db/seeds.rb +7 -0
  135. data/spec/rails/rails-5.0.4/db/test.sqlite3 +0 -0
  136. data/spec/rails/rails-5.0.4/log/test.log +723 -0
  137. data/spec/rails/rails-5.0.4/public/404.html +67 -0
  138. data/spec/rails/rails-5.0.4/public/422.html +67 -0
  139. data/spec/rails/rails-5.0.4/public/500.html +66 -0
  140. data/spec/rails/rails-5.0.4/public/apple-touch-icon-precomposed.png +0 -0
  141. data/spec/rails/rails-5.0.4/public/apple-touch-icon.png +0 -0
  142. data/spec/rails/rails-5.0.4/public/favicon.ico +0 -0
  143. data/spec/rails/rails-5.0.4/public/robots.txt +5 -0
  144. data/spec/rails/rails-5.1.2/README.md +24 -0
  145. data/spec/rails/rails-5.1.2/Rakefile +6 -0
  146. data/spec/rails/rails-5.1.2/app/assets/config/manifest.js +3 -0
  147. data/spec/rails/rails-5.1.2/app/assets/javascripts/application.js +15 -0
  148. data/spec/rails/rails-5.1.2/app/assets/javascripts/cable.js +13 -0
  149. data/spec/rails/rails-5.1.2/app/assets/stylesheets/application.css +15 -0
  150. data/spec/rails/rails-5.1.2/app/channels/application_cable/channel.rb +4 -0
  151. data/spec/rails/rails-5.1.2/app/channels/application_cable/connection.rb +4 -0
  152. data/spec/rails/rails-5.1.2/app/controllers/application_controller.rb +3 -0
  153. data/spec/rails/rails-5.1.2/app/helpers/application_helper.rb +2 -0
  154. data/spec/rails/rails-5.1.2/app/jobs/application_job.rb +2 -0
  155. data/spec/rails/rails-5.1.2/app/mailers/application_mailer.rb +4 -0
  156. data/spec/rails/rails-5.1.2/app/mailers/post_mailer.rb +14 -0
  157. data/spec/rails/rails-5.1.2/app/mailers/user_mailer.rb +14 -0
  158. data/spec/rails/rails-5.1.2/app/models/application_record.rb +3 -0
  159. data/spec/rails/rails-5.1.2/app/models/post.rb +6 -0
  160. data/spec/rails/rails-5.1.2/app/models/register.rb +9 -0
  161. data/spec/rails/rails-5.1.2/app/models/user.rb +6 -0
  162. data/spec/rails/rails-5.1.2/app/notifiers/application_notifier.rb +2 -0
  163. data/spec/rails/rails-5.1.2/app/notifiers/post_notifier.rb +12 -0
  164. data/spec/rails/rails-5.1.2/app/notifiers/user_notifier.rb +12 -0
  165. data/spec/rails/rails-5.1.2/app/views/layouts/application.html.erb +14 -0
  166. data/spec/rails/rails-5.1.2/app/views/layouts/mailer.html.erb +13 -0
  167. data/spec/rails/rails-5.1.2/app/views/layouts/mailer.text.erb +1 -0
  168. data/spec/rails/rails-5.1.2/app/views/post_mailer/failure.html.erb +5 -0
  169. data/spec/rails/rails-5.1.2/app/views/post_mailer/failure.text.erb +3 -0
  170. data/spec/rails/rails-5.1.2/app/views/user_mailer/success.html.erb +5 -0
  171. data/spec/rails/rails-5.1.2/app/views/user_mailer/success.text.erb +3 -0
  172. data/spec/rails/rails-5.1.2/bin/bundle +3 -0
  173. data/spec/rails/rails-5.1.2/bin/rails +4 -0
  174. data/spec/rails/rails-5.1.2/bin/rake +4 -0
  175. data/spec/rails/rails-5.1.2/bin/setup +38 -0
  176. data/spec/rails/rails-5.1.2/bin/update +29 -0
  177. data/spec/rails/rails-5.1.2/bin/yarn +11 -0
  178. data/spec/rails/rails-5.1.2/config.ru +5 -0
  179. data/spec/rails/rails-5.1.2/config/application.rb +31 -0
  180. data/spec/rails/rails-5.1.2/config/boot.rb +3 -0
  181. data/spec/rails/rails-5.1.2/config/cable.yml +10 -0
  182. data/spec/rails/rails-5.1.2/config/database.yml +25 -0
  183. data/spec/rails/rails-5.1.2/config/environment.rb +8 -0
  184. data/spec/rails/rails-5.1.2/config/environments/development.rb +47 -0
  185. data/spec/rails/rails-5.1.2/config/environments/production.rb +83 -0
  186. data/spec/rails/rails-5.1.2/config/environments/test.rb +43 -0
  187. data/spec/rails/rails-5.1.2/config/initializers/application_controller_renderer.rb +6 -0
  188. data/spec/rails/rails-5.1.2/config/initializers/backtrace_silencers.rb +7 -0
  189. data/spec/rails/rails-5.1.2/config/initializers/cookies_serializer.rb +5 -0
  190. data/spec/rails/rails-5.1.2/config/initializers/filter_parameter_logging.rb +4 -0
  191. data/spec/rails/rails-5.1.2/config/initializers/inflections.rb +16 -0
  192. data/spec/rails/rails-5.1.2/config/initializers/mime_types.rb +4 -0
  193. data/spec/rails/rails-5.1.2/config/initializers/pubsub_notifier.rb +10 -0
  194. data/spec/rails/rails-5.1.2/config/initializers/wrap_parameters.rb +14 -0
  195. data/spec/rails/rails-5.1.2/config/locales/en.yml +33 -0
  196. data/spec/rails/rails-5.1.2/config/puma.rb +56 -0
  197. data/spec/rails/rails-5.1.2/config/routes.rb +3 -0
  198. data/spec/rails/rails-5.1.2/config/secrets.yml +32 -0
  199. data/spec/rails/rails-5.1.2/db/migrate/20170714092754_create_users.rb +9 -0
  200. data/spec/rails/rails-5.1.2/db/migrate/20170714092755_create_posts.rb +9 -0
  201. data/spec/rails/rails-5.1.2/db/schema.rb +27 -0
  202. data/spec/rails/rails-5.1.2/db/seeds.rb +7 -0
  203. data/spec/rails/rails-5.1.2/db/test.sqlite3 +0 -0
  204. data/spec/rails/rails-5.1.2/log/test.log +917 -0
  205. data/spec/rails/rails-5.1.2/package.json +5 -0
  206. data/spec/rails/rails-5.1.2/public/404.html +67 -0
  207. data/spec/rails/rails-5.1.2/public/422.html +67 -0
  208. data/spec/rails/rails-5.1.2/public/500.html +66 -0
  209. data/spec/rails/rails-5.1.2/public/apple-touch-icon-precomposed.png +0 -0
  210. data/spec/rails/rails-5.1.2/public/apple-touch-icon.png +0 -0
  211. data/spec/rails/rails-5.1.2/public/favicon.ico +0 -0
  212. data/spec/rails/rails-5.1.2/public/robots.txt +1 -0
  213. data/spec/spec_helper.rb +43 -7
  214. data/spec/support/rails_template.rb +57 -0
  215. metadata +413 -11
  216. data/spec/support/models/member.rb +0 -6
  217. data/spec/support/models/user.rb +0 -6
  218. data/spec/support/notifiers/admin_notifier.rb +0 -13
  219. data/spec/support/notifiers/user_notifier.rb +0 -13
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,10 @@
1
+ PubsubNotifier.config.logger = Rails.logger
2
+
3
+ require "pubsub_notifier/slack_client"
4
+
5
+ PubsubNotifier::SlackClient.configure do |config|
6
+ config.default_channel = ENV["SLACK_DEFAULT_CHANNEL"]
7
+ config.default_username = ENV["SLACK_DEFAULT_USERNAME"]
8
+ config.default_icon_emoji = ENV["SLACK_DEFAULT_ICON_EMOJI"]
9
+ config.webhook_url = ENV["SLACK_WEBHOOK_URL"]
10
+ end
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,33 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # The following keys must be escaped otherwise they will not be retrieved by
20
+ # the default I18n backend:
21
+ #
22
+ # true, false, on, off, yes, no
23
+ #
24
+ # Instead, surround them with single quotes.
25
+ #
26
+ # en:
27
+ # 'true': 'foo'
28
+ #
29
+ # To learn more, please read the Rails Internationalization guide
30
+ # available at http://guides.rubyonrails.org/i18n.html.
31
+
32
+ en:
33
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ # Puma can serve each request in a thread from an internal thread pool.
2
+ # The `threads` method setting takes two numbers: a minimum and maximum.
3
+ # Any libraries that use thread pools should be configured to match
4
+ # the maximum value specified for Puma. Default is set to 5 threads for minimum
5
+ # and maximum; this matches the default thread size of Active Record.
6
+ #
7
+ threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
8
+ threads threads_count, threads_count
9
+
10
+ # Specifies the `port` that Puma will listen on to receive requests; default is 3000.
11
+ #
12
+ port ENV.fetch("PORT") { 3000 }
13
+
14
+ # Specifies the `environment` that Puma will run in.
15
+ #
16
+ environment ENV.fetch("RAILS_ENV") { "development" }
17
+
18
+ # Specifies the number of `workers` to boot in clustered mode.
19
+ # Workers are forked webserver processes. If using threads and workers together
20
+ # the concurrency of the application would be max `threads` * `workers`.
21
+ # Workers do not work on JRuby or Windows (both of which do not support
22
+ # processes).
23
+ #
24
+ # workers ENV.fetch("WEB_CONCURRENCY") { 2 }
25
+
26
+ # Use the `preload_app!` method when specifying a `workers` number.
27
+ # This directive tells Puma to first boot the application and load code
28
+ # before forking the application. This takes advantage of Copy On Write
29
+ # process behavior so workers use less memory. If you use this option
30
+ # you need to make sure to reconnect any threads in the `on_worker_boot`
31
+ # block.
32
+ #
33
+ # preload_app!
34
+
35
+ # If you are preloading your application and using Active Record, it's
36
+ # recommended that you close any connections to the database before workers
37
+ # are forked to prevent connection leakage.
38
+ #
39
+ # before_fork do
40
+ # ActiveRecord::Base.connection_pool.disconnect! if defined?(ActiveRecord)
41
+ # end
42
+
43
+ # The code in the `on_worker_boot` will be called if you are using
44
+ # clustered mode by specifying a number of `workers`. After each worker
45
+ # process is booted, this block will be run. If you are using the `preload_app!`
46
+ # option, you will want to use this block to reconnect to any threads
47
+ # or connections that may have been created at application boot, as Ruby
48
+ # cannot share connections between processes.
49
+ #
50
+ # on_worker_boot do
51
+ # ActiveRecord::Base.establish_connection if defined?(ActiveRecord)
52
+ # end
53
+ #
54
+
55
+ # Allow puma to be restarted by `rails restart` command.
56
+ plugin :tmp_restart
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
3
+ end
@@ -0,0 +1,32 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rails secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ # Shared secrets are available across all environments.
14
+
15
+ # shared:
16
+ # api_key: a1B2c3D4e5F6
17
+
18
+ # Environmental secrets are only available for that specific environment.
19
+
20
+ development:
21
+ secret_key_base: cfd8789565484454e5a2eb1b8dad99cd87b4e9ca1d87df441c1e94956b45d0558a3cc7267eb86e9d4031162724556d6356385ef907fd5c9dbd6e862aeee045bb
22
+
23
+ test:
24
+ secret_key_base: 515ffabc5c8901c018fd6c97e2bf049e0182197d783ff54840988a7545db63547ec1c71219a4361250337688cc8f9a48503f0a0d7c8cc3633e666be1b3b1dbaa
25
+
26
+ # Do not keep production secrets in the unencrypted secrets file.
27
+ # Instead, either read values from the environment.
28
+ # Or, use `bin/rails secrets:setup` to configure encrypted secrets
29
+ # and move the `production:` environment over there.
30
+
31
+ production:
32
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,9 @@
1
+ class CreateUsers < ActiveRecord::Migration[5.1]
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :name
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ class CreatePosts < ActiveRecord::Migration[5.1]
2
+ def change
3
+ create_table :posts do |t|
4
+ t.string :name
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,27 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
5
+ # Note that this schema.rb definition is the authoritative source for your
6
+ # database schema. If you need to create the application database on another
7
+ # system, you should be using db:schema:load, not running all the migrations
8
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
9
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
10
+ #
11
+ # It's strongly recommended that you check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(version: 20170714092755) do
14
+
15
+ create_table "posts", force: :cascade do |t|
16
+ t.string "name"
17
+ t.datetime "created_at", null: false
18
+ t.datetime "updated_at", null: false
19
+ end
20
+
21
+ create_table "users", force: :cascade do |t|
22
+ t.string "name"
23
+ t.datetime "created_at", null: false
24
+ t.datetime "updated_at", null: false
25
+ end
26
+
27
+ end
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
7
+ # Character.create(name: 'Luke', movie: movies.first)
@@ -0,0 +1,917 @@
1
+  (0.1ms) SELECT sqlite_version(*)
2
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
3
+  (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5
+ Migrating to CreateUsers (20170714092754)
6
+  (0.0ms) begin transaction
7
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170714092754"]]
9
+  (0.8ms) commit transaction
10
+ Migrating to CreatePosts (20170714092755)
11
+  (0.0ms) begin transaction
12
+  (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
13
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170714092755"]]
14
+  (0.6ms) commit transaction
15
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
16
+  (0.0ms) begin transaction
17
+ SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-07-14 09:27:57.173387"], ["updated_at", "2017-07-14 09:27:57.173387"]]
18
+  (0.7ms) commit transaction
19
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
20
+  (0.0ms) begin transaction
21
+  (0.1ms) SAVEPOINT active_record_1
22
+ SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "name1"], ["created_at", "2017-07-14 09:27:58.727994"], ["updated_at", "2017-07-14 09:27:58.727994"]]
23
+  (0.1ms) RELEASE SAVEPOINT active_record_1
24
+ [PubsubNotifier::Client::LoggerClient#notify_success] UserNotifier#success called with User.
25
+ [PubsubNotifier::Client::LoggerClient#notify_success] PostNotifier#success called with User.
26
+ Rendering user_mailer/success.html.erb within layouts/mailer
27
+ Rendered user_mailer/success.html.erb within layouts/mailer (1.4ms)
28
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/user_mailer.rb:12:in `success'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:360:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:20:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:10:in `start'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:35:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:27:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `<main>'"]
29
+ Rendering user_mailer/success.text.erb within layouts/mailer
30
+ Rendered user_mailer/success.text.erb within layouts/mailer (0.3ms)
31
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/user_mailer.rb:12:in `success'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:360:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:20:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:10:in `start'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:35:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:27:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `<main>'"]
32
+ UserMailer#success: processed outbound mail in 169.9ms
33
+ Sent mail to to@example.org (5.9ms)
34
+ Date: Fri, 14 Jul 2017 18:27:58 +0900
35
+ From: from@example.com
36
+ To: to@example.org
37
+ Message-ID: <59688e9ede90c_7b203fe81083f9f4671a1@orsay.local.mail>
38
+ Subject: Success
39
+ Mime-Version: 1.0
40
+ Content-Type: multipart/alternative;
41
+ boundary="--==_mimepart_59688e9edd993_7b203fe81083f9f46704";
42
+ charset=UTF-8
43
+ Content-Transfer-Encoding: 7bit
44
+
45
+
46
+ ----==_mimepart_59688e9edd993_7b203fe81083f9f46704
47
+ Content-Type: text/plain;
48
+ charset=UTF-8
49
+ Content-Transfer-Encoding: 7bit
50
+
51
+ User#success
52
+
53
+ Hi, find me in app/views/user_mailer/success.text.erb
54
+
55
+
56
+ ----==_mimepart_59688e9edd993_7b203fe81083f9f46704
57
+ Content-Type: text/html;
58
+ charset=UTF-8
59
+ Content-Transfer-Encoding: 7bit
60
+
61
+ <!DOCTYPE html>
62
+ <html>
63
+ <head>
64
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
65
+ <style>
66
+ /* Email styles need to be inline */
67
+ </style>
68
+ </head>
69
+
70
+ <body>
71
+ <h1>User#success</h1>
72
+
73
+ <p>
74
+ Hi, find me in app/views/user_mailer/success.html.erb
75
+ </p>
76
+
77
+ </body>
78
+ </html>
79
+
80
+ ----==_mimepart_59688e9edd993_7b203fe81083f9f46704--
81
+
82
+  (2.0ms) rollback transaction
83
+  (0.1ms) begin transaction
84
+  (0.1ms) SAVEPOINT active_record_1
85
+ SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "name2"], ["created_at", "2017-07-14 09:27:58.919453"], ["updated_at", "2017-07-14 09:27:58.919453"]]
86
+  (0.1ms) RELEASE SAVEPOINT active_record_1
87
+ [PubsubNotifier::Client::LoggerClient#notify_failure] UserNotifier#failure called with User.
88
+ [PubsubNotifier::Client::LoggerClient#notify_failure] PostNotifier#failure called with User.
89
+ Rendering post_mailer/failure.html.erb within layouts/mailer
90
+ Rendered post_mailer/failure.html.erb within layouts/mailer (0.3ms)
91
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/post_mailer.rb:12:in `failure'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:360:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:20:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:10:in `start'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:35:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:27:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `<main>'"]
92
+ Rendering post_mailer/failure.text.erb within layouts/mailer
93
+ Rendered post_mailer/failure.text.erb within layouts/mailer (0.2ms)
94
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/post_mailer.rb:12:in `failure'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:360:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:20:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:10:in `start'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:35:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:27:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `<main>'"]
95
+ PostMailer#failure: processed outbound mail in 17.7ms
96
+ Sent mail to to@example.org (2.3ms)
97
+ Date: Fri, 14 Jul 2017 18:27:58 +0900
98
+ From: from@example.com
99
+ To: to@example.org
100
+ Message-ID: <59688e9ee58bf_7b203fe81083f9f4673f9@orsay.local.mail>
101
+ Subject: Failure
102
+ Mime-Version: 1.0
103
+ Content-Type: multipart/alternative;
104
+ boundary="--==_mimepart_59688e9ee5292_7b203fe81083f9f467281";
105
+ charset=UTF-8
106
+ Content-Transfer-Encoding: 7bit
107
+
108
+
109
+ ----==_mimepart_59688e9ee5292_7b203fe81083f9f467281
110
+ Content-Type: text/plain;
111
+ charset=UTF-8
112
+ Content-Transfer-Encoding: 7bit
113
+
114
+ Post#failure
115
+
116
+ Hi, find me in app/views/post_mailer/failure.text.erb
117
+
118
+
119
+ ----==_mimepart_59688e9ee5292_7b203fe81083f9f467281
120
+ Content-Type: text/html;
121
+ charset=UTF-8
122
+ Content-Transfer-Encoding: 7bit
123
+
124
+ <!DOCTYPE html>
125
+ <html>
126
+ <head>
127
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
128
+ <style>
129
+ /* Email styles need to be inline */
130
+ </style>
131
+ </head>
132
+
133
+ <body>
134
+ <h1>Post#failure</h1>
135
+
136
+ <p>
137
+ Hi, find me in app/views/post_mailer/failure.html.erb
138
+ </p>
139
+
140
+ </body>
141
+ </html>
142
+
143
+ ----==_mimepart_59688e9ee5292_7b203fe81083f9f467281--
144
+
145
+  (0.4ms) rollback transaction
146
+  (0.0ms) begin transaction
147
+  (0.1ms) rollback transaction
148
+  (0.0ms) begin transaction
149
+  (0.0ms) rollback transaction
150
+  (0.0ms) begin transaction
151
+  (0.0ms) rollback transaction
152
+  (0.0ms) begin transaction
153
+  (0.0ms) rollback transaction
154
+  (0.0ms) begin transaction
155
+  (0.0ms) rollback transaction
156
+  (0.0ms) begin transaction
157
+  (0.0ms) rollback transaction
158
+  (0.0ms) begin transaction
159
+  (0.0ms) rollback transaction
160
+  (0.0ms) begin transaction
161
+  (0.0ms) rollback transaction
162
+  (0.0ms) begin transaction
163
+  (0.0ms) rollback transaction
164
+  (0.0ms) begin transaction
165
+  (0.0ms) rollback transaction
166
+  (0.0ms) begin transaction
167
+  (0.0ms) rollback transaction
168
+  (0.0ms) begin transaction
169
+ [PubsubNotifier::Client::LoggerClient#notify_failure] message
170
+  (0.0ms) rollback transaction
171
+  (0.0ms) begin transaction
172
+ [PubsubNotifier::Client::LoggerClient#notify_success] message
173
+  (0.0ms) rollback transaction
174
+  (0.0ms) begin transaction
175
+  (0.0ms) SAVEPOINT active_record_1
176
+ SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "name1"], ["created_at", "2017-07-14 09:29:23.759824"], ["updated_at", "2017-07-14 09:29:23.759824"]]
177
+  (0.1ms) RELEASE SAVEPOINT active_record_1
178
+ [PubsubNotifier::Client::LoggerClient#notify_success] UserNotifier#success called with User.
179
+ [PubsubNotifier::Client::LoggerClient#notify_success] PostNotifier#success called with User.
180
+ Rendering user_mailer/success.html.erb within layouts/mailer
181
+ Rendered user_mailer/success.html.erb within layouts/mailer (0.8ms)
182
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/user_mailer.rb:12:in `success'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:360:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:20:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:10:in `start'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:35:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:27:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `<main>'"]
183
+ Rendering user_mailer/success.text.erb within layouts/mailer
184
+ Rendered user_mailer/success.text.erb within layouts/mailer (0.2ms)
185
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/user_mailer.rb:12:in `success'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:360:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:20:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:10:in `start'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:35:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:27:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `<main>'"]
186
+ UserMailer#success: processed outbound mail in 126.5ms
187
+ Sent mail to to@example.org (5.6ms)
188
+ Date: Fri, 14 Jul 2017 18:29:23 +0900
189
+ From: from@example.com
190
+ To: to@example.org
191
+ Message-ID: <59688ef3dbdb8_7c873fc1a503fa247011a@orsay.local.mail>
192
+ Subject: Success
193
+ Mime-Version: 1.0
194
+ Content-Type: multipart/alternative;
195
+ boundary="--==_mimepart_59688ef3dae62_7c873fc1a503fa247002d";
196
+ charset=UTF-8
197
+ Content-Transfer-Encoding: 7bit
198
+
199
+
200
+ ----==_mimepart_59688ef3dae62_7c873fc1a503fa247002d
201
+ Content-Type: text/plain;
202
+ charset=UTF-8
203
+ Content-Transfer-Encoding: 7bit
204
+
205
+ User#success
206
+
207
+ Hi, find me in app/views/user_mailer/success.text.erb
208
+
209
+
210
+ ----==_mimepart_59688ef3dae62_7c873fc1a503fa247002d
211
+ Content-Type: text/html;
212
+ charset=UTF-8
213
+ Content-Transfer-Encoding: 7bit
214
+
215
+ <!DOCTYPE html>
216
+ <html>
217
+ <head>
218
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
219
+ <style>
220
+ /* Email styles need to be inline */
221
+ </style>
222
+ </head>
223
+
224
+ <body>
225
+ <h1>User#success</h1>
226
+
227
+ <p>
228
+ Hi, find me in app/views/user_mailer/success.html.erb
229
+ </p>
230
+
231
+ </body>
232
+ </html>
233
+
234
+ ----==_mimepart_59688ef3dae62_7c873fc1a503fa247002d--
235
+
236
+  (2.0ms) rollback transaction
237
+  (0.0ms) begin transaction
238
+  (0.0ms) SAVEPOINT active_record_1
239
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "name2"], ["created_at", "2017-07-14 09:29:23.907131"], ["updated_at", "2017-07-14 09:29:23.907131"]]
240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
241
+ [PubsubNotifier::Client::LoggerClient#notify_failure] UserNotifier#failure called with User.
242
+ [PubsubNotifier::Client::LoggerClient#notify_failure] PostNotifier#failure called with User.
243
+ Rendering post_mailer/failure.html.erb within layouts/mailer
244
+ Rendered post_mailer/failure.html.erb within layouts/mailer (0.4ms)
245
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/post_mailer.rb:12:in `failure'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:360:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:20:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:10:in `start'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:35:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:27:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `<main>'"]
246
+ Rendering post_mailer/failure.text.erb within layouts/mailer
247
+ Rendered post_mailer/failure.text.erb within layouts/mailer (0.2ms)
248
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/post_mailer.rb:12:in `failure'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:360:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:20:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:10:in `start'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:35:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:27:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `<main>'"]
249
+ PostMailer#failure: processed outbound mail in 16.8ms
250
+ Sent mail to to@example.org (4.6ms)
251
+ Date: Fri, 14 Jul 2017 18:29:23 +0900
252
+ From: from@example.com
253
+ To: to@example.org
254
+ Message-ID: <59688ef3e2365_7c873fc1a503fa24703e5@orsay.local.mail>
255
+ Subject: Failure
256
+ Mime-Version: 1.0
257
+ Content-Type: multipart/alternative;
258
+ boundary="--==_mimepart_59688ef3e1ce7_7c873fc1a503fa247029a";
259
+ charset=UTF-8
260
+ Content-Transfer-Encoding: 7bit
261
+
262
+
263
+ ----==_mimepart_59688ef3e1ce7_7c873fc1a503fa247029a
264
+ Content-Type: text/plain;
265
+ charset=UTF-8
266
+ Content-Transfer-Encoding: 7bit
267
+
268
+ Post#failure
269
+
270
+ Hi, find me in app/views/post_mailer/failure.text.erb
271
+
272
+
273
+ ----==_mimepart_59688ef3e1ce7_7c873fc1a503fa247029a
274
+ Content-Type: text/html;
275
+ charset=UTF-8
276
+ Content-Transfer-Encoding: 7bit
277
+
278
+ <!DOCTYPE html>
279
+ <html>
280
+ <head>
281
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
282
+ <style>
283
+ /* Email styles need to be inline */
284
+ </style>
285
+ </head>
286
+
287
+ <body>
288
+ <h1>Post#failure</h1>
289
+
290
+ <p>
291
+ Hi, find me in app/views/post_mailer/failure.html.erb
292
+ </p>
293
+
294
+ </body>
295
+ </html>
296
+
297
+ ----==_mimepart_59688ef3e1ce7_7c873fc1a503fa247029a--
298
+
299
+  (0.4ms) rollback transaction
300
+  (0.0ms) begin transaction
301
+  (0.0ms) rollback transaction
302
+  (0.0ms) begin transaction
303
+  (0.0ms) rollback transaction
304
+  (0.0ms) begin transaction
305
+  (0.0ms) rollback transaction
306
+  (0.0ms) begin transaction
307
+  (0.0ms) rollback transaction
308
+  (0.0ms) begin transaction
309
+  (0.0ms) rollback transaction
310
+  (0.0ms) begin transaction
311
+  (0.0ms) rollback transaction
312
+  (0.0ms) begin transaction
313
+  (0.0ms) rollback transaction
314
+  (0.0ms) begin transaction
315
+  (0.0ms) rollback transaction
316
+  (0.0ms) begin transaction
317
+  (0.0ms) rollback transaction
318
+  (0.1ms) begin transaction
319
+ #<ActiveJob::SerializationError: ActiveJob::SerializationError>
320
+  (0.1ms) rollback transaction
321
+  (0.1ms) begin transaction
322
+  (0.1ms) rollback transaction
323
+  (0.1ms) begin transaction
324
+  (0.0ms) rollback transaction
325
+  (0.1ms) begin transaction
326
+  (0.0ms) rollback transaction
327
+  (0.0ms) begin transaction
328
+  (0.0ms) rollback transaction
329
+  (0.0ms) begin transaction
330
+  (0.0ms) rollback transaction
331
+  (0.1ms) begin transaction
332
+  (0.1ms) rollback transaction
333
+  (0.1ms) begin transaction
334
+  (0.1ms) rollback transaction
335
+  (0.1ms) begin transaction
336
+  (0.1ms) rollback transaction
337
+  (0.1ms) begin transaction
338
+  (0.0ms) rollback transaction
339
+  (0.0ms) begin transaction
340
+  (0.0ms) rollback transaction
341
+  (0.0ms) begin transaction
342
+  (0.0ms) rollback transaction
343
+  (0.0ms) begin transaction
344
+  (0.0ms) rollback transaction
345
+  (0.0ms) begin transaction
346
+ [PubsubNotifier::Client::LoggerClient#notify_failure] message
347
+  (0.0ms) rollback transaction
348
+  (0.0ms) begin transaction
349
+ [PubsubNotifier::Client::LoggerClient#notify_success] message
350
+  (0.0ms) rollback transaction
351
+  (0.0ms) begin transaction
352
+  (0.0ms) rollback transaction
353
+  (0.0ms) begin transaction
354
+  (0.0ms) rollback transaction
355
+  (0.0ms) begin transaction
356
+  (0.0ms) rollback transaction
357
+  (0.0ms) begin transaction
358
+  (0.0ms) rollback transaction
359
+  (0.0ms) begin transaction
360
+  (0.0ms) rollback transaction
361
+  (0.0ms) begin transaction
362
+  (0.0ms) rollback transaction
363
+  (0.0ms) begin transaction
364
+  (0.0ms) rollback transaction
365
+  (0.0ms) begin transaction
366
+ #<ActiveJob::SerializationError: ActiveJob::SerializationError>
367
+  (0.0ms) rollback transaction
368
+  (0.0ms) begin transaction
369
+  (0.0ms) rollback transaction
370
+  (0.0ms) begin transaction
371
+  (0.0ms) rollback transaction
372
+  (0.0ms) begin transaction
373
+  (0.1ms) rollback transaction
374
+  (0.1ms) begin transaction
375
+  (0.1ms) rollback transaction
376
+  (0.1ms) begin transaction
377
+  (0.0ms) SAVEPOINT active_record_1
378
+ SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "name1"], ["created_at", "2017-07-14 09:32:32.346482"], ["updated_at", "2017-07-14 09:32:32.346482"]]
379
+  (0.0ms) RELEASE SAVEPOINT active_record_1
380
+ [PubsubNotifier::Client::LoggerClient#notify_success] UserNotifier#success called with User.
381
+ [PubsubNotifier::Client::LoggerClient#notify_success] PostNotifier#success called with User.
382
+ Rendering user_mailer/success.html.erb within layouts/mailer
383
+ Rendered user_mailer/success.html.erb within layouts/mailer (0.8ms)
384
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/user_mailer.rb:12:in `success'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:360:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:20:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:10:in `start'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:35:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:27:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `<main>'"]
385
+ Rendering user_mailer/success.text.erb within layouts/mailer
386
+ Rendered user_mailer/success.text.erb within layouts/mailer (0.2ms)
387
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/user_mailer.rb:12:in `success'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:360:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:20:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:10:in `start'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:35:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:27:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `<main>'"]
388
+ UserMailer#success: processed outbound mail in 143.9ms
389
+ Sent mail to to@example.org (11.0ms)
390
+ Date: Fri, 14 Jul 2017 18:32:32 +0900
391
+ From: from@example.com
392
+ To: to@example.org
393
+ Message-ID: <59688fb07b0d9_831a3fdd4783fa0414683@orsay.local.mail>
394
+ Subject: Success
395
+ Mime-Version: 1.0
396
+ Content-Type: multipart/alternative;
397
+ boundary="--==_mimepart_59688fb079664_831a3fdd4783fa0414562";
398
+ charset=UTF-8
399
+ Content-Transfer-Encoding: 7bit
400
+
401
+
402
+ ----==_mimepart_59688fb079664_831a3fdd4783fa0414562
403
+ Content-Type: text/plain;
404
+ charset=UTF-8
405
+ Content-Transfer-Encoding: 7bit
406
+
407
+ User#success
408
+
409
+ Hi, find me in app/views/user_mailer/success.text.erb
410
+
411
+
412
+ ----==_mimepart_59688fb079664_831a3fdd4783fa0414562
413
+ Content-Type: text/html;
414
+ charset=UTF-8
415
+ Content-Transfer-Encoding: 7bit
416
+
417
+ <!DOCTYPE html>
418
+ <html>
419
+ <head>
420
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
421
+ <style>
422
+ /* Email styles need to be inline */
423
+ </style>
424
+ </head>
425
+
426
+ <body>
427
+ <h1>User#success</h1>
428
+
429
+ <p>
430
+ Hi, find me in app/views/user_mailer/success.html.erb
431
+ </p>
432
+
433
+ </body>
434
+ </html>
435
+
436
+ ----==_mimepart_59688fb079664_831a3fdd4783fa0414562--
437
+
438
+  (2.4ms) rollback transaction
439
+  (0.1ms) begin transaction
440
+  (0.1ms) SAVEPOINT active_record_1
441
+ SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "name2"], ["created_at", "2017-07-14 09:32:32.514474"], ["updated_at", "2017-07-14 09:32:32.514474"]]
442
+  (0.0ms) RELEASE SAVEPOINT active_record_1
443
+ [PubsubNotifier::Client::LoggerClient#notify_failure] UserNotifier#failure called with User.
444
+ [PubsubNotifier::Client::LoggerClient#notify_failure] PostNotifier#failure called with User.
445
+ Rendering post_mailer/failure.html.erb within layouts/mailer
446
+ Rendered post_mailer/failure.html.erb within layouts/mailer (0.3ms)
447
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/post_mailer.rb:12:in `failure'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:360:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:20:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:10:in `start'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:35:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:27:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `<main>'"]
448
+ Rendering post_mailer/failure.text.erb within layouts/mailer
449
+ Rendered post_mailer/failure.text.erb within layouts/mailer (0.2ms)
450
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/post_mailer.rb:12:in `failure'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:360:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:20:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:10:in `start'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:35:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:27:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `<main>'"]
451
+ PostMailer#failure: processed outbound mail in 16.4ms
452
+ Sent mail to to@example.org (2.6ms)
453
+ Date: Fri, 14 Jul 2017 18:32:32 +0900
454
+ From: from@example.com
455
+ To: to@example.org
456
+ Message-ID: <59688fb0826d1_831a3fdd4783fa04148b0@orsay.local.mail>
457
+ Subject: Failure
458
+ Mime-Version: 1.0
459
+ Content-Type: multipart/alternative;
460
+ boundary="--==_mimepart_59688fb081fd6_831a3fdd4783fa04147d3";
461
+ charset=UTF-8
462
+ Content-Transfer-Encoding: 7bit
463
+
464
+
465
+ ----==_mimepart_59688fb081fd6_831a3fdd4783fa04147d3
466
+ Content-Type: text/plain;
467
+ charset=UTF-8
468
+ Content-Transfer-Encoding: 7bit
469
+
470
+ Post#failure
471
+
472
+ Hi, find me in app/views/post_mailer/failure.text.erb
473
+
474
+
475
+ ----==_mimepart_59688fb081fd6_831a3fdd4783fa04147d3
476
+ Content-Type: text/html;
477
+ charset=UTF-8
478
+ Content-Transfer-Encoding: 7bit
479
+
480
+ <!DOCTYPE html>
481
+ <html>
482
+ <head>
483
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
484
+ <style>
485
+ /* Email styles need to be inline */
486
+ </style>
487
+ </head>
488
+
489
+ <body>
490
+ <h1>Post#failure</h1>
491
+
492
+ <p>
493
+ Hi, find me in app/views/post_mailer/failure.html.erb
494
+ </p>
495
+
496
+ </body>
497
+ </html>
498
+
499
+ ----==_mimepart_59688fb081fd6_831a3fdd4783fa04147d3--
500
+
501
+  (0.4ms) rollback transaction
502
+  (0.0ms) begin transaction
503
+  (0.0ms) rollback transaction
504
+  (0.0ms) begin transaction
505
+  (0.0ms) rollback transaction
506
+  (0.0ms) begin transaction
507
+  (0.0ms) rollback transaction
508
+  (0.0ms) begin transaction
509
+  (0.0ms) rollback transaction
510
+  (0.0ms) begin transaction
511
+  (0.0ms) rollback transaction
512
+  (0.0ms) begin transaction
513
+  (0.0ms) rollback transaction
514
+  (0.0ms) begin transaction
515
+  (0.0ms) rollback transaction
516
+  (0.0ms) begin transaction
517
+  (0.0ms) rollback transaction
518
+  (0.0ms) begin transaction
519
+  (0.0ms) rollback transaction
520
+  (0.0ms) begin transaction
521
+  (0.0ms) rollback transaction
522
+  (0.0ms) begin transaction
523
+  (0.0ms) rollback transaction
524
+  (0.0ms) begin transaction
525
+  (0.0ms) rollback transaction
526
+  (0.0ms) begin transaction
527
+  (0.0ms) rollback transaction
528
+  (0.0ms) begin transaction
529
+  (0.0ms) rollback transaction
530
+  (0.0ms) begin transaction
531
+  (0.0ms) rollback transaction
532
+  (0.0ms) begin transaction
533
+  (0.0ms) rollback transaction
534
+  (0.0ms) begin transaction
535
+  (0.0ms) rollback transaction
536
+  (0.0ms) begin transaction
537
+  (0.1ms) rollback transaction
538
+  (0.1ms) begin transaction
539
+  (0.0ms) rollback transaction
540
+  (0.0ms) begin transaction
541
+  (0.1ms) rollback transaction
542
+  (0.1ms) begin transaction
543
+  (0.0ms) rollback transaction
544
+  (0.0ms) begin transaction
545
+  (0.0ms) SAVEPOINT active_record_1
546
+ SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "name1"], ["created_at", "2017-07-14 09:41:42.504608"], ["updated_at", "2017-07-14 09:41:42.504608"]]
547
+  (0.0ms) RELEASE SAVEPOINT active_record_1
548
+ [PubsubNotifier::Client::LoggerClient#notify_failure] UserNotifier#failure called with User.
549
+ [PubsubNotifier::Client::LoggerClient#notify_failure] PostNotifier#failure called with User.
550
+ Rendering post_mailer/failure.html.erb within layouts/mailer
551
+ Rendered post_mailer/failure.html.erb within layouts/mailer (0.8ms)
552
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/post_mailer.rb:12:in `failure'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:360:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:20:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:10:in `start'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:35:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:27:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `<main>'"]
553
+ Rendering post_mailer/failure.text.erb within layouts/mailer
554
+ Rendered post_mailer/failure.text.erb within layouts/mailer (0.2ms)
555
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/post_mailer.rb:12:in `failure'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:360:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:20:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:10:in `start'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:35:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:27:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `<main>'"]
556
+ PostMailer#failure: processed outbound mail in 131.2ms
557
+ Sent mail to to@example.org (5.5ms)
558
+ Date: Fri, 14 Jul 2017 18:41:42 +0900
559
+ From: from@example.com
560
+ To: to@example.org
561
+ Message-ID: <596891d69de72_8a3c3feb2243fa2470738@orsay.local.mail>
562
+ Subject: Failure
563
+ Mime-Version: 1.0
564
+ Content-Type: multipart/alternative;
565
+ boundary="--==_mimepart_596891d69d020_8a3c3feb2243fa2470661";
566
+ charset=UTF-8
567
+ Content-Transfer-Encoding: 7bit
568
+
569
+
570
+ ----==_mimepart_596891d69d020_8a3c3feb2243fa2470661
571
+ Content-Type: text/plain;
572
+ charset=UTF-8
573
+ Content-Transfer-Encoding: 7bit
574
+
575
+ Post#failure
576
+
577
+ Hi, find me in app/views/post_mailer/failure.text.erb
578
+
579
+
580
+ ----==_mimepart_596891d69d020_8a3c3feb2243fa2470661
581
+ Content-Type: text/html;
582
+ charset=UTF-8
583
+ Content-Transfer-Encoding: 7bit
584
+
585
+ <!DOCTYPE html>
586
+ <html>
587
+ <head>
588
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
589
+ <style>
590
+ /* Email styles need to be inline */
591
+ </style>
592
+ </head>
593
+
594
+ <body>
595
+ <h1>Post#failure</h1>
596
+
597
+ <p>
598
+ Hi, find me in app/views/post_mailer/failure.html.erb
599
+ </p>
600
+
601
+ </body>
602
+ </html>
603
+
604
+ ----==_mimepart_596891d69d020_8a3c3feb2243fa2470661--
605
+
606
+  (2.2ms) rollback transaction
607
+  (0.1ms) begin transaction
608
+  (0.1ms) SAVEPOINT active_record_1
609
+ SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "name2"], ["created_at", "2017-07-14 09:41:42.653726"], ["updated_at", "2017-07-14 09:41:42.653726"]]
610
+  (0.1ms) RELEASE SAVEPOINT active_record_1
611
+ [PubsubNotifier::Client::LoggerClient#notify_success] UserNotifier#success called with User.
612
+ [PubsubNotifier::Client::LoggerClient#notify_success] PostNotifier#success called with User.
613
+ Rendering user_mailer/success.html.erb within layouts/mailer
614
+ Rendered user_mailer/success.html.erb within layouts/mailer (0.3ms)
615
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/user_mailer.rb:12:in `success'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:360:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:20:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:10:in `start'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:35:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:27:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `<main>'"]
616
+ Rendering user_mailer/success.text.erb within layouts/mailer
617
+ Rendered user_mailer/success.text.erb within layouts/mailer (0.2ms)
618
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/user_mailer.rb:12:in `success'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/gemfiles/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:360:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:20:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/cli.rb:10:in `start'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:35:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.1/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/bundler-1.15.1/exe/bundle:27:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/bin/bundle:22:in `<main>'"]
619
+ UserMailer#success: processed outbound mail in 17.2ms
620
+ Sent mail to to@example.org (2.3ms)
621
+ Date: Fri, 14 Jul 2017 18:41:42 +0900
622
+ From: from@example.com
623
+ To: to@example.org
624
+ Message-ID: <596891d6a49e4_8a3c3feb2243fa24709c3@orsay.local.mail>
625
+ Subject: Success
626
+ Mime-Version: 1.0
627
+ Content-Type: multipart/alternative;
628
+ boundary="--==_mimepart_596891d6a43ee_8a3c3feb2243fa24708df";
629
+ charset=UTF-8
630
+ Content-Transfer-Encoding: 7bit
631
+
632
+
633
+ ----==_mimepart_596891d6a43ee_8a3c3feb2243fa24708df
634
+ Content-Type: text/plain;
635
+ charset=UTF-8
636
+ Content-Transfer-Encoding: 7bit
637
+
638
+ User#success
639
+
640
+ Hi, find me in app/views/user_mailer/success.text.erb
641
+
642
+
643
+ ----==_mimepart_596891d6a43ee_8a3c3feb2243fa24708df
644
+ Content-Type: text/html;
645
+ charset=UTF-8
646
+ Content-Transfer-Encoding: 7bit
647
+
648
+ <!DOCTYPE html>
649
+ <html>
650
+ <head>
651
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
652
+ <style>
653
+ /* Email styles need to be inline */
654
+ </style>
655
+ </head>
656
+
657
+ <body>
658
+ <h1>User#success</h1>
659
+
660
+ <p>
661
+ Hi, find me in app/views/user_mailer/success.html.erb
662
+ </p>
663
+
664
+ </body>
665
+ </html>
666
+
667
+ ----==_mimepart_596891d6a43ee_8a3c3feb2243fa24708df--
668
+
669
+  (0.4ms) rollback transaction
670
+  (0.1ms) begin transaction
671
+  (0.1ms) rollback transaction
672
+  (0.1ms) begin transaction
673
+ #<ActiveJob::SerializationError: ActiveJob::SerializationError>
674
+  (0.0ms) rollback transaction
675
+  (0.0ms) begin transaction
676
+  (0.0ms) rollback transaction
677
+  (0.0ms) begin transaction
678
+  (0.0ms) rollback transaction
679
+  (0.0ms) begin transaction
680
+  (0.0ms) rollback transaction
681
+  (0.0ms) begin transaction
682
+  (0.0ms) rollback transaction
683
+  (0.0ms) begin transaction
684
+  (0.0ms) rollback transaction
685
+  (0.0ms) begin transaction
686
+  (0.0ms) rollback transaction
687
+  (0.0ms) begin transaction
688
+  (0.0ms) rollback transaction
689
+  (0.0ms) begin transaction
690
+  (0.0ms) rollback transaction
691
+  (0.0ms) begin transaction
692
+  (0.0ms) rollback transaction
693
+  (0.0ms) begin transaction
694
+  (0.0ms) rollback transaction
695
+  (0.0ms) begin transaction
696
+  (0.0ms) rollback transaction
697
+  (0.0ms) begin transaction
698
+  (0.0ms) rollback transaction
699
+  (0.0ms) begin transaction
700
+  (0.0ms) rollback transaction
701
+  (0.0ms) begin transaction
702
+  (0.0ms) rollback transaction
703
+  (0.0ms) begin transaction
704
+  (0.0ms) rollback transaction
705
+  (0.0ms) begin transaction
706
+  (0.0ms) rollback transaction
707
+  (0.0ms) begin transaction
708
+  (0.0ms) rollback transaction
709
+  (0.0ms) begin transaction
710
+  (0.0ms) rollback transaction
711
+  (0.0ms) begin transaction
712
+  (0.0ms) rollback transaction
713
+  (0.0ms) begin transaction
714
+  (0.0ms) rollback transaction
715
+  (0.0ms) begin transaction
716
+  (0.0ms) rollback transaction
717
+  (0.0ms) begin transaction
718
+  (0.0ms) rollback transaction
719
+  (0.0ms) begin transaction
720
+ [PubsubNotifier::Client::LoggerClient#notify_success] message
721
+  (0.0ms) rollback transaction
722
+  (0.0ms) begin transaction
723
+ [PubsubNotifier::Client::LoggerClient#notify_failure] message
724
+  (0.0ms) rollback transaction
725
+  (0.0ms) begin transaction
726
+  (0.2ms) rollback transaction
727
+  (0.1ms) begin transaction
728
+ #<ActiveJob::SerializationError: ActiveJob::SerializationError>
729
+  (0.0ms) rollback transaction
730
+  (0.0ms) begin transaction
731
+  (0.0ms) rollback transaction
732
+  (0.0ms) begin transaction
733
+  (0.0ms) rollback transaction
734
+  (0.0ms) begin transaction
735
+  (0.0ms) rollback transaction
736
+  (0.0ms) begin transaction
737
+  (0.0ms) rollback transaction
738
+  (0.0ms) begin transaction
739
+  (0.0ms) rollback transaction
740
+  (0.0ms) begin transaction
741
+  (0.0ms) rollback transaction
742
+  (0.0ms) begin transaction
743
+  (0.0ms) rollback transaction
744
+  (0.0ms) begin transaction
745
+  (0.1ms) rollback transaction
746
+  (0.1ms) begin transaction
747
+  (0.0ms) rollback transaction
748
+  (0.0ms) begin transaction
749
+  (0.0ms) rollback transaction
750
+  (0.0ms) begin transaction
751
+  (0.0ms) rollback transaction
752
+  (0.0ms) begin transaction
753
+  (0.0ms) rollback transaction
754
+  (0.0ms) begin transaction
755
+  (0.0ms) rollback transaction
756
+  (0.0ms) begin transaction
757
+  (0.0ms) rollback transaction
758
+  (0.0ms) begin transaction
759
+  (0.0ms) rollback transaction
760
+  (0.0ms) begin transaction
761
+  (0.0ms) rollback transaction
762
+  (0.0ms) begin transaction
763
+  (0.1ms) rollback transaction
764
+  (0.0ms) begin transaction
765
+  (0.0ms) rollback transaction
766
+  (0.1ms) begin transaction
767
+  (0.0ms) rollback transaction
768
+  (0.0ms) begin transaction
769
+  (0.0ms) rollback transaction
770
+  (0.0ms) begin transaction
771
+  (0.0ms) rollback transaction
772
+  (0.0ms) begin transaction
773
+  (0.0ms) rollback transaction
774
+  (0.0ms) begin transaction
775
+  (0.0ms) rollback transaction
776
+  (0.0ms) begin transaction
777
+  (0.1ms) rollback transaction
778
+  (0.0ms) begin transaction
779
+  (0.0ms) rollback transaction
780
+  (0.1ms) begin transaction
781
+ [PubsubNotifier::Client::LoggerClient#notify_failure] message
782
+  (0.0ms) rollback transaction
783
+  (0.0ms) begin transaction
784
+ [PubsubNotifier::Client::LoggerClient#notify_success] message
785
+  (0.0ms) rollback transaction
786
+  (0.0ms) begin transaction
787
+  (0.0ms) rollback transaction
788
+  (0.0ms) begin transaction
789
+  (0.0ms) rollback transaction
790
+  (0.0ms) begin transaction
791
+  (0.0ms) rollback transaction
792
+  (0.0ms) begin transaction
793
+  (0.1ms) SAVEPOINT active_record_1
794
+ SQL (1.0ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "name1"], ["created_at", "2017-07-14 09:47:20.892144"], ["updated_at", "2017-07-14 09:47:20.892144"]]
795
+  (0.1ms) RELEASE SAVEPOINT active_record_1
796
+ [PubsubNotifier::Client::LoggerClient#notify_success] UserNotifier#success called with User.
797
+ [PubsubNotifier::Client::LoggerClient#notify_success] PostNotifier#success called with User.
798
+ Rendering user_mailer/success.html.erb within layouts/mailer
799
+ Rendered user_mailer/success.html.erb within layouts/mailer (1.5ms)
800
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/user_mailer.rb:12:in `success'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<main>'"]
801
+ Rendering user_mailer/success.text.erb within layouts/mailer
802
+ Rendered user_mailer/success.text.erb within layouts/mailer (0.4ms)
803
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/user_mailer.rb:12:in `success'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:8:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<main>'"]
804
+ UserMailer#success: processed outbound mail in 155.1ms
805
+ Sent mail to to@example.org (7.4ms)
806
+ Date: Fri, 14 Jul 2017 18:47:21 +0900
807
+ From: from@example.com
808
+ To: to@example.org
809
+ Message-ID: <59689329fdd0_8c533fe5e403fa0c58919@orsay.local.mail>
810
+ Subject: Success
811
+ Mime-Version: 1.0
812
+ Content-Type: multipart/alternative;
813
+ boundary="--==_mimepart_59689329ea1b_8c533fe5e403fa0c58888";
814
+ charset=UTF-8
815
+ Content-Transfer-Encoding: 7bit
816
+
817
+
818
+ ----==_mimepart_59689329ea1b_8c533fe5e403fa0c58888
819
+ Content-Type: text/plain;
820
+ charset=UTF-8
821
+ Content-Transfer-Encoding: 7bit
822
+
823
+ User#success
824
+
825
+ Hi, find me in app/views/user_mailer/success.text.erb
826
+
827
+
828
+ ----==_mimepart_59689329ea1b_8c533fe5e403fa0c58888
829
+ Content-Type: text/html;
830
+ charset=UTF-8
831
+ Content-Transfer-Encoding: 7bit
832
+
833
+ <!DOCTYPE html>
834
+ <html>
835
+ <head>
836
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
837
+ <style>
838
+ /* Email styles need to be inline */
839
+ </style>
840
+ </head>
841
+
842
+ <body>
843
+ <h1>User#success</h1>
844
+
845
+ <p>
846
+ Hi, find me in app/views/user_mailer/success.html.erb
847
+ </p>
848
+
849
+ </body>
850
+ </html>
851
+
852
+ ----==_mimepart_59689329ea1b_8c533fe5e403fa0c58888--
853
+
854
+  (0.3ms) rollback transaction
855
+  (0.1ms) begin transaction
856
+  (0.1ms) SAVEPOINT active_record_1
857
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "name2"], ["created_at", "2017-07-14 09:47:21.070977"], ["updated_at", "2017-07-14 09:47:21.070977"]]
858
+  (0.1ms) RELEASE SAVEPOINT active_record_1
859
+ [PubsubNotifier::Client::LoggerClient#notify_failure] UserNotifier#failure called with User.
860
+ [PubsubNotifier::Client::LoggerClient#notify_failure] PostNotifier#failure called with User.
861
+ Rendering post_mailer/failure.html.erb within layouts/mailer
862
+ Rendered post_mailer/failure.html.erb within layouts/mailer (0.6ms)
863
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/post_mailer.rb:12:in `failure'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<main>'"]
864
+ Rendering post_mailer/failure.text.erb within layouts/mailer
865
+ Rendered post_mailer/failure.text.erb within layouts/mailer (0.3ms)
866
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::IntegrationTest::Broadcasting:Class ["/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:935:in `block in collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:932:in `collect_responses_from_templates'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:917:in `collect_responses'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:830:in `mail'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/rails/rails-5.1.2/app/mailers/post_mailer.rb:12:in `failure'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:23:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:15:in `handle_exceptions'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/rescuable.rb:22:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:609:in `block in process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/base.rb:608:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:105:in `block in processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:104:in `processed_mailer'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/actionmailer-5.1.2/lib/action_mailer/message_delivery.rb:27:in `__getobj__'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/delegate.rb:80:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/acts_as_notifier.rb:17:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/broadcasters/send_broadcaster.rb:5:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/registration/object.rb:18:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:43:in `block in broadcast'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each_key'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/set.rb:306:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/wisper-2.0.0/lib/wisper/publisher.rb:42:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/pubsub.rb:6:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/lib/pubsub_notifier/proxy.rb:27:in `broadcast'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (4 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:52:in `matches?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/matchers/built_in/raise_error.rb:71:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:78:in `does_not_match?'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:27:in `with_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/handler.rb:70:in `handle_matcher'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:78:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-expectations-3.6.0/lib/rspec/expectations/expectation_target.rb:106:in `not_to'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/spec/integration_spec.rb:12:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/pubsub_notifier/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<main>'"]
867
+ PostMailer#failure: processed outbound mail in 19.5ms
868
+ Sent mail to to@example.org (3.5ms)
869
+ Date: Fri, 14 Jul 2017 18:47:21 +0900
870
+ From: from@example.com
871
+ To: to@example.org
872
+ Message-ID: <5968932916ec6_8c533fe5e403fa0c5912f@orsay.local.mail>
873
+ Subject: Failure
874
+ Mime-Version: 1.0
875
+ Content-Type: multipart/alternative;
876
+ boundary="--==_mimepart_5968932916480_8c533fe5e403fa0c59051";
877
+ charset=UTF-8
878
+ Content-Transfer-Encoding: 7bit
879
+
880
+
881
+ ----==_mimepart_5968932916480_8c533fe5e403fa0c59051
882
+ Content-Type: text/plain;
883
+ charset=UTF-8
884
+ Content-Transfer-Encoding: 7bit
885
+
886
+ Post#failure
887
+
888
+ Hi, find me in app/views/post_mailer/failure.text.erb
889
+
890
+
891
+ ----==_mimepart_5968932916480_8c533fe5e403fa0c59051
892
+ Content-Type: text/html;
893
+ charset=UTF-8
894
+ Content-Transfer-Encoding: 7bit
895
+
896
+ <!DOCTYPE html>
897
+ <html>
898
+ <head>
899
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
900
+ <style>
901
+ /* Email styles need to be inline */
902
+ </style>
903
+ </head>
904
+
905
+ <body>
906
+ <h1>Post#failure</h1>
907
+
908
+ <p>
909
+ Hi, find me in app/views/post_mailer/failure.html.erb
910
+ </p>
911
+
912
+ </body>
913
+ </html>
914
+
915
+ ----==_mimepart_5968932916480_8c533fe5e403fa0c59051--
916
+
917
+  (0.4ms) rollback transaction