pubsub_notifier 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +9 -3
- data/lib/generators/rails/templates/notifier.tt +2 -1
- data/lib/generators/rspec/notifier_generator.rb +1 -1
- data/lib/pubsub_notifier/proxy.rb +1 -1
- data/lib/pubsub_notifier/version.rb +1 -1
- data/spec/integration_spec.rb +15 -0
- data/spec/lib/acts_as_notifier_spec.rb +38 -0
- data/spec/lib/base_spec.rb +55 -0
- data/spec/lib/broadcasters/active_job_broadcaster_spec.rb +33 -0
- data/spec/lib/broadcasters_spec.rb +21 -0
- data/spec/lib/client_spec.rb +33 -0
- data/spec/lib/config_spec.rb +7 -0
- data/spec/lib/proxy_spec.rb +60 -0
- data/spec/lib/pubsub_spec.rb +14 -0
- data/spec/lib/slack_client_spec.rb +22 -0
- data/spec/pubsub_notifier_spec.rb +38 -20
- data/spec/rails/rails-4.2.9/README.rdoc +28 -0
- data/spec/rails/rails-4.2.9/Rakefile +6 -0
- data/spec/rails/rails-4.2.9/app/assets/javascripts/application.js +16 -0
- data/spec/rails/rails-4.2.9/app/assets/stylesheets/application.css +15 -0
- data/spec/rails/rails-4.2.9/app/controllers/application_controller.rb +5 -0
- data/spec/rails/rails-4.2.9/app/helpers/application_helper.rb +2 -0
- data/spec/rails/rails-4.2.9/app/mailers/application_mailer.rb +4 -0
- data/spec/rails/rails-4.2.9/app/mailers/post_mailer.rb +13 -0
- data/spec/rails/rails-4.2.9/app/mailers/user_mailer.rb +13 -0
- data/spec/rails/rails-4.2.9/app/models/post.rb +6 -0
- data/spec/rails/rails-4.2.9/app/models/register.rb +9 -0
- data/spec/rails/rails-4.2.9/app/models/user.rb +6 -0
- data/spec/{support → rails/rails-4.2.9/app}/notifiers/application_notifier.rb +0 -0
- data/spec/rails/rails-4.2.9/app/notifiers/post_notifier.rb +12 -0
- data/spec/rails/rails-4.2.9/app/notifiers/user_notifier.rb +12 -0
- data/spec/rails/rails-4.2.9/app/views/layouts/application.html.erb +14 -0
- data/spec/rails/rails-4.2.9/app/views/layouts/mailer.html.erb +5 -0
- data/spec/rails/rails-4.2.9/app/views/layouts/mailer.text.erb +1 -0
- data/spec/rails/rails-4.2.9/app/views/post_mailer/failure.html.erb +5 -0
- data/spec/rails/rails-4.2.9/app/views/post_mailer/failure.text.erb +3 -0
- data/spec/rails/rails-4.2.9/app/views/user_mailer/success.html.erb +5 -0
- data/spec/rails/rails-4.2.9/app/views/user_mailer/success.text.erb +3 -0
- data/spec/rails/rails-4.2.9/bin/bundle +3 -0
- data/spec/rails/rails-4.2.9/bin/rails +4 -0
- data/spec/rails/rails-4.2.9/bin/rake +4 -0
- data/spec/rails/rails-4.2.9/bin/setup +29 -0
- data/spec/rails/rails-4.2.9/config.ru +4 -0
- data/spec/rails/rails-4.2.9/config/application.rb +35 -0
- data/spec/rails/rails-4.2.9/config/boot.rb +3 -0
- data/spec/rails/rails-4.2.9/config/database.yml +25 -0
- data/spec/rails/rails-4.2.9/config/environment.rb +8 -0
- data/spec/rails/rails-4.2.9/config/environments/development.rb +28 -0
- data/spec/rails/rails-4.2.9/config/environments/production.rb +67 -0
- data/spec/rails/rails-4.2.9/config/environments/test.rb +43 -0
- data/spec/rails/rails-4.2.9/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/rails/rails-4.2.9/config/initializers/cookies_serializer.rb +3 -0
- data/spec/rails/rails-4.2.9/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/rails/rails-4.2.9/config/initializers/inflections.rb +16 -0
- data/spec/rails/rails-4.2.9/config/initializers/mime_types.rb +4 -0
- data/spec/rails/rails-4.2.9/config/initializers/pubsub_notifier.rb +10 -0
- data/spec/rails/rails-4.2.9/config/initializers/session_store.rb +3 -0
- data/spec/rails/rails-4.2.9/config/initializers/to_time_preserves_timezone.rb +10 -0
- data/spec/rails/rails-4.2.9/config/initializers/wrap_parameters.rb +14 -0
- data/spec/rails/rails-4.2.9/config/locales/en.yml +23 -0
- data/spec/rails/rails-4.2.9/config/routes.rb +56 -0
- data/spec/rails/rails-4.2.9/config/secrets.yml +22 -0
- data/spec/rails/rails-4.2.9/db/migrate/20170714092725_create_users.rb +9 -0
- data/spec/rails/rails-4.2.9/db/migrate/20170714092727_create_posts.rb +9 -0
- data/spec/rails/rails-4.2.9/db/schema.rb +28 -0
- data/spec/rails/rails-4.2.9/db/seeds.rb +7 -0
- data/spec/rails/rails-4.2.9/db/test.sqlite3 +0 -0
- data/spec/rails/rails-4.2.9/log/test.log +272 -0
- data/spec/rails/rails-4.2.9/public/404.html +67 -0
- data/spec/rails/rails-4.2.9/public/422.html +67 -0
- data/spec/rails/rails-4.2.9/public/500.html +66 -0
- data/spec/rails/rails-4.2.9/public/favicon.ico +0 -0
- data/spec/rails/rails-4.2.9/public/robots.txt +5 -0
- data/spec/rails/rails-5.0.4/README.md +24 -0
- data/spec/rails/rails-5.0.4/Rakefile +6 -0
- data/spec/rails/rails-5.0.4/app/assets/config/manifest.js +3 -0
- data/spec/rails/rails-5.0.4/app/assets/javascripts/application.js +15 -0
- data/spec/rails/rails-5.0.4/app/assets/javascripts/cable.js +13 -0
- data/spec/rails/rails-5.0.4/app/assets/stylesheets/application.css +15 -0
- data/spec/rails/rails-5.0.4/app/channels/application_cable/channel.rb +4 -0
- data/spec/rails/rails-5.0.4/app/channels/application_cable/connection.rb +4 -0
- data/spec/rails/rails-5.0.4/app/controllers/application_controller.rb +3 -0
- data/spec/rails/rails-5.0.4/app/helpers/application_helper.rb +2 -0
- data/spec/rails/rails-5.0.4/app/jobs/application_job.rb +2 -0
- data/spec/rails/rails-5.0.4/app/mailers/application_mailer.rb +4 -0
- data/spec/rails/rails-5.0.4/app/mailers/post_mailer.rb +14 -0
- data/spec/rails/rails-5.0.4/app/mailers/user_mailer.rb +14 -0
- data/spec/rails/rails-5.0.4/app/models/application_record.rb +3 -0
- data/spec/rails/rails-5.0.4/app/models/post.rb +6 -0
- data/spec/rails/rails-5.0.4/app/models/register.rb +9 -0
- data/spec/rails/rails-5.0.4/app/models/user.rb +6 -0
- data/spec/rails/rails-5.0.4/app/notifiers/application_notifier.rb +2 -0
- data/spec/rails/rails-5.0.4/app/notifiers/post_notifier.rb +12 -0
- data/spec/rails/rails-5.0.4/app/notifiers/user_notifier.rb +12 -0
- data/spec/rails/rails-5.0.4/app/views/layouts/application.html.erb +14 -0
- data/spec/rails/rails-5.0.4/app/views/layouts/mailer.html.erb +13 -0
- data/spec/rails/rails-5.0.4/app/views/layouts/mailer.text.erb +1 -0
- data/spec/rails/rails-5.0.4/app/views/post_mailer/failure.html.erb +5 -0
- data/spec/rails/rails-5.0.4/app/views/post_mailer/failure.text.erb +3 -0
- data/spec/rails/rails-5.0.4/app/views/user_mailer/success.html.erb +5 -0
- data/spec/rails/rails-5.0.4/app/views/user_mailer/success.text.erb +3 -0
- data/spec/rails/rails-5.0.4/bin/bundle +3 -0
- data/spec/rails/rails-5.0.4/bin/rails +4 -0
- data/spec/rails/rails-5.0.4/bin/rake +4 -0
- data/spec/rails/rails-5.0.4/bin/setup +34 -0
- data/spec/rails/rails-5.0.4/bin/update +29 -0
- data/spec/rails/rails-5.0.4/config.ru +5 -0
- data/spec/rails/rails-5.0.4/config/application.rb +25 -0
- data/spec/rails/rails-5.0.4/config/boot.rb +3 -0
- data/spec/rails/rails-5.0.4/config/cable.yml +9 -0
- data/spec/rails/rails-5.0.4/config/database.yml +25 -0
- data/spec/rails/rails-5.0.4/config/environment.rb +8 -0
- data/spec/rails/rails-5.0.4/config/environments/development.rb +47 -0
- data/spec/rails/rails-5.0.4/config/environments/production.rb +78 -0
- data/spec/rails/rails-5.0.4/config/environments/test.rb +43 -0
- data/spec/rails/rails-5.0.4/config/initializers/application_controller_renderer.rb +6 -0
- data/spec/rails/rails-5.0.4/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/rails/rails-5.0.4/config/initializers/cookies_serializer.rb +5 -0
- data/spec/rails/rails-5.0.4/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/rails/rails-5.0.4/config/initializers/inflections.rb +16 -0
- data/spec/rails/rails-5.0.4/config/initializers/mime_types.rb +4 -0
- data/spec/rails/rails-5.0.4/config/initializers/new_framework_defaults.rb +26 -0
- data/spec/rails/rails-5.0.4/config/initializers/pubsub_notifier.rb +10 -0
- data/spec/rails/rails-5.0.4/config/initializers/session_store.rb +3 -0
- data/spec/rails/rails-5.0.4/config/initializers/wrap_parameters.rb +14 -0
- data/spec/rails/rails-5.0.4/config/locales/en.yml +23 -0
- data/spec/rails/rails-5.0.4/config/puma.rb +47 -0
- data/spec/rails/rails-5.0.4/config/routes.rb +3 -0
- data/spec/rails/rails-5.0.4/config/secrets.yml +22 -0
- data/spec/rails/rails-5.0.4/db/migrate/20170714092740_create_users.rb +9 -0
- data/spec/rails/rails-5.0.4/db/migrate/20170714092741_create_posts.rb +9 -0
- data/spec/rails/rails-5.0.4/db/schema.rb +27 -0
- data/spec/rails/rails-5.0.4/db/seeds.rb +7 -0
- data/spec/rails/rails-5.0.4/db/test.sqlite3 +0 -0
- data/spec/rails/rails-5.0.4/log/test.log +723 -0
- data/spec/rails/rails-5.0.4/public/404.html +67 -0
- data/spec/rails/rails-5.0.4/public/422.html +67 -0
- data/spec/rails/rails-5.0.4/public/500.html +66 -0
- data/spec/rails/rails-5.0.4/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/rails/rails-5.0.4/public/apple-touch-icon.png +0 -0
- data/spec/rails/rails-5.0.4/public/favicon.ico +0 -0
- data/spec/rails/rails-5.0.4/public/robots.txt +5 -0
- data/spec/rails/rails-5.1.2/README.md +24 -0
- data/spec/rails/rails-5.1.2/Rakefile +6 -0
- data/spec/rails/rails-5.1.2/app/assets/config/manifest.js +3 -0
- data/spec/rails/rails-5.1.2/app/assets/javascripts/application.js +15 -0
- data/spec/rails/rails-5.1.2/app/assets/javascripts/cable.js +13 -0
- data/spec/rails/rails-5.1.2/app/assets/stylesheets/application.css +15 -0
- data/spec/rails/rails-5.1.2/app/channels/application_cable/channel.rb +4 -0
- data/spec/rails/rails-5.1.2/app/channels/application_cable/connection.rb +4 -0
- data/spec/rails/rails-5.1.2/app/controllers/application_controller.rb +3 -0
- data/spec/rails/rails-5.1.2/app/helpers/application_helper.rb +2 -0
- data/spec/rails/rails-5.1.2/app/jobs/application_job.rb +2 -0
- data/spec/rails/rails-5.1.2/app/mailers/application_mailer.rb +4 -0
- data/spec/rails/rails-5.1.2/app/mailers/post_mailer.rb +14 -0
- data/spec/rails/rails-5.1.2/app/mailers/user_mailer.rb +14 -0
- data/spec/rails/rails-5.1.2/app/models/application_record.rb +3 -0
- data/spec/rails/rails-5.1.2/app/models/post.rb +6 -0
- data/spec/rails/rails-5.1.2/app/models/register.rb +9 -0
- data/spec/rails/rails-5.1.2/app/models/user.rb +6 -0
- data/spec/rails/rails-5.1.2/app/notifiers/application_notifier.rb +2 -0
- data/spec/rails/rails-5.1.2/app/notifiers/post_notifier.rb +12 -0
- data/spec/rails/rails-5.1.2/app/notifiers/user_notifier.rb +12 -0
- data/spec/rails/rails-5.1.2/app/views/layouts/application.html.erb +14 -0
- data/spec/rails/rails-5.1.2/app/views/layouts/mailer.html.erb +13 -0
- data/spec/rails/rails-5.1.2/app/views/layouts/mailer.text.erb +1 -0
- data/spec/rails/rails-5.1.2/app/views/post_mailer/failure.html.erb +5 -0
- data/spec/rails/rails-5.1.2/app/views/post_mailer/failure.text.erb +3 -0
- data/spec/rails/rails-5.1.2/app/views/user_mailer/success.html.erb +5 -0
- data/spec/rails/rails-5.1.2/app/views/user_mailer/success.text.erb +3 -0
- data/spec/rails/rails-5.1.2/bin/bundle +3 -0
- data/spec/rails/rails-5.1.2/bin/rails +4 -0
- data/spec/rails/rails-5.1.2/bin/rake +4 -0
- data/spec/rails/rails-5.1.2/bin/setup +38 -0
- data/spec/rails/rails-5.1.2/bin/update +29 -0
- data/spec/rails/rails-5.1.2/bin/yarn +11 -0
- data/spec/rails/rails-5.1.2/config.ru +5 -0
- data/spec/rails/rails-5.1.2/config/application.rb +31 -0
- data/spec/rails/rails-5.1.2/config/boot.rb +3 -0
- data/spec/rails/rails-5.1.2/config/cable.yml +10 -0
- data/spec/rails/rails-5.1.2/config/database.yml +25 -0
- data/spec/rails/rails-5.1.2/config/environment.rb +8 -0
- data/spec/rails/rails-5.1.2/config/environments/development.rb +47 -0
- data/spec/rails/rails-5.1.2/config/environments/production.rb +83 -0
- data/spec/rails/rails-5.1.2/config/environments/test.rb +43 -0
- data/spec/rails/rails-5.1.2/config/initializers/application_controller_renderer.rb +6 -0
- data/spec/rails/rails-5.1.2/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/rails/rails-5.1.2/config/initializers/cookies_serializer.rb +5 -0
- data/spec/rails/rails-5.1.2/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/rails/rails-5.1.2/config/initializers/inflections.rb +16 -0
- data/spec/rails/rails-5.1.2/config/initializers/mime_types.rb +4 -0
- data/spec/rails/rails-5.1.2/config/initializers/pubsub_notifier.rb +10 -0
- data/spec/rails/rails-5.1.2/config/initializers/wrap_parameters.rb +14 -0
- data/spec/rails/rails-5.1.2/config/locales/en.yml +33 -0
- data/spec/rails/rails-5.1.2/config/puma.rb +56 -0
- data/spec/rails/rails-5.1.2/config/routes.rb +3 -0
- data/spec/rails/rails-5.1.2/config/secrets.yml +32 -0
- data/spec/rails/rails-5.1.2/db/migrate/20170714092754_create_users.rb +9 -0
- data/spec/rails/rails-5.1.2/db/migrate/20170714092755_create_posts.rb +9 -0
- data/spec/rails/rails-5.1.2/db/schema.rb +27 -0
- data/spec/rails/rails-5.1.2/db/seeds.rb +7 -0
- data/spec/rails/rails-5.1.2/db/test.sqlite3 +0 -0
- data/spec/rails/rails-5.1.2/log/test.log +917 -0
- data/spec/rails/rails-5.1.2/package.json +5 -0
- data/spec/rails/rails-5.1.2/public/404.html +67 -0
- data/spec/rails/rails-5.1.2/public/422.html +67 -0
- data/spec/rails/rails-5.1.2/public/500.html +66 -0
- data/spec/rails/rails-5.1.2/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/rails/rails-5.1.2/public/apple-touch-icon.png +0 -0
- data/spec/rails/rails-5.1.2/public/favicon.ico +0 -0
- data/spec/rails/rails-5.1.2/public/robots.txt +1 -0
- data/spec/spec_helper.rb +43 -7
- data/spec/support/rails_template.rb +57 -0
- metadata +413 -11
- data/spec/support/models/member.rb +0 -6
- data/spec/support/models/user.rb +0 -6
- data/spec/support/notifiers/admin_notifier.rb +0 -13
- 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,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,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,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)
|
|
Binary file
|
|
@@ -0,0 +1,917 @@
|
|
|
1
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
|
2
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
|
3
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
|
4
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
5
|
+
Migrating to CreateUsers (20170714092754)
|
|
6
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
7
|
+
[1m[35m (0.4ms)[0m [1m[35mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
|
8
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20170714092754"]]
|
|
9
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
10
|
+
Migrating to CreatePosts (20170714092755)
|
|
11
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
12
|
+
[1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
|
13
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20170714092755"]]
|
|
14
|
+
[1m[35m (0.6ms)[0m [1m[36mcommit transaction[0m
|
|
15
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
|
16
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
17
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2017-07-14 09:27:57.173387"], ["updated_at", "2017-07-14 09:27:57.173387"]]
|
|
18
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
19
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
20
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
21
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
22
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name1"], ["created_at", "2017-07-14 09:27:58.727994"], ["updated_at", "2017-07-14 09:27:58.727994"]]
|
|
23
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (2.0ms)[0m [1m[31mrollback transaction[0m
|
|
83
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
84
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
85
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name2"], ["created_at", "2017-07-14 09:27:58.919453"], ["updated_at", "2017-07-14 09:27:58.919453"]]
|
|
86
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
146
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
147
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
148
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
149
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
150
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
151
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
152
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
153
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
154
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
155
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
156
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
157
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
158
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
159
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
160
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
161
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
162
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
163
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
164
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
165
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
166
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
167
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
168
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
169
|
+
[PubsubNotifier::Client::LoggerClient#notify_failure] message
|
|
170
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
171
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
172
|
+
[PubsubNotifier::Client::LoggerClient#notify_success] message
|
|
173
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
174
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
175
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
176
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name1"], ["created_at", "2017-07-14 09:29:23.759824"], ["updated_at", "2017-07-14 09:29:23.759824"]]
|
|
177
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (2.0ms)[0m [1m[31mrollback transaction[0m
|
|
237
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
238
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
239
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name2"], ["created_at", "2017-07-14 09:29:23.907131"], ["updated_at", "2017-07-14 09:29:23.907131"]]
|
|
240
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
300
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
301
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
302
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
303
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
304
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
305
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
306
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
307
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
308
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
309
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
310
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
311
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
312
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
313
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
314
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
315
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
316
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
317
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
318
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
319
|
+
#<ActiveJob::SerializationError: ActiveJob::SerializationError>
|
|
320
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
321
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
322
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
323
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
324
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
325
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
326
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
327
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
328
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
329
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
330
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
331
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
332
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
333
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
334
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
335
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
336
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
337
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
338
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
339
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
340
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
341
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
342
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
343
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
344
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
345
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
346
|
+
[PubsubNotifier::Client::LoggerClient#notify_failure] message
|
|
347
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
348
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
349
|
+
[PubsubNotifier::Client::LoggerClient#notify_success] message
|
|
350
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
351
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
352
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
353
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
354
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
355
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
356
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
357
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
358
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
359
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
360
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
361
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
362
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
363
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
364
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
365
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
366
|
+
#<ActiveJob::SerializationError: ActiveJob::SerializationError>
|
|
367
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
368
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
369
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
370
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
371
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
372
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
373
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
374
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
375
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
376
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
377
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
378
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name1"], ["created_at", "2017-07-14 09:32:32.346482"], ["updated_at", "2017-07-14 09:32:32.346482"]]
|
|
379
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (2.4ms)[0m [1m[31mrollback transaction[0m
|
|
439
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
440
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
441
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name2"], ["created_at", "2017-07-14 09:32:32.514474"], ["updated_at", "2017-07-14 09:32:32.514474"]]
|
|
442
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
502
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
503
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
504
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
505
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
506
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
507
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
508
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
509
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
510
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
511
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
512
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
513
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
514
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
515
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
516
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
517
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
518
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
519
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
520
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
521
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
522
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
523
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
524
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
525
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
526
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
527
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
528
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
529
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
530
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
531
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
532
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
533
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
534
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
535
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
536
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
537
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
538
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
539
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
540
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
541
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
542
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
543
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
544
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
545
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
546
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name1"], ["created_at", "2017-07-14 09:41:42.504608"], ["updated_at", "2017-07-14 09:41:42.504608"]]
|
|
547
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (2.2ms)[0m [1m[31mrollback transaction[0m
|
|
607
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
608
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
609
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name2"], ["created_at", "2017-07-14 09:41:42.653726"], ["updated_at", "2017-07-14 09:41:42.653726"]]
|
|
610
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
670
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
671
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
672
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
673
|
+
#<ActiveJob::SerializationError: ActiveJob::SerializationError>
|
|
674
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
675
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
676
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
677
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
678
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
679
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
680
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
681
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
682
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
683
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
684
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
685
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
686
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
687
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
688
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
689
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
690
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
691
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
692
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
693
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
694
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
695
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
696
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
697
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
698
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
699
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
700
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
701
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
702
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
703
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
704
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
705
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
706
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
707
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
708
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
709
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
710
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
711
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
712
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
713
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
714
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
715
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
716
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
717
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
718
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
719
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
720
|
+
[PubsubNotifier::Client::LoggerClient#notify_success] message
|
|
721
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
722
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
723
|
+
[PubsubNotifier::Client::LoggerClient#notify_failure] message
|
|
724
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
725
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
726
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
727
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
728
|
+
#<ActiveJob::SerializationError: ActiveJob::SerializationError>
|
|
729
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
730
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
731
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
732
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
733
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
734
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
735
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
736
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
737
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
738
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
739
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
740
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
741
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
742
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
743
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
744
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
745
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
746
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
747
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
748
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
749
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
750
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
751
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
752
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
753
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
754
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
755
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
756
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
757
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
758
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
759
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
760
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
761
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
762
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
763
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
764
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
765
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
766
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
767
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
768
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
769
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
770
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
771
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
772
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
773
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
774
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
775
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
776
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
777
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
778
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
779
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
780
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
781
|
+
[PubsubNotifier::Client::LoggerClient#notify_failure] message
|
|
782
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
783
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
784
|
+
[PubsubNotifier::Client::LoggerClient#notify_success] message
|
|
785
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
786
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
787
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
788
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
789
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
790
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
791
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
792
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
793
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
794
|
+
[1m[35mSQL (1.0ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name1"], ["created_at", "2017-07-14 09:47:20.892144"], ["updated_at", "2017-07-14 09:47:20.892144"]]
|
|
795
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
855
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
856
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
857
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "name2"], ["created_at", "2017-07-14 09:47:21.070977"], ["updated_at", "2017-07-14 09:47:21.070977"]]
|
|
858
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|