errplane 0.3.7 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. data/.gitignore +2 -1
  2. data/.rspec +2 -0
  3. data/.travis.yml +22 -0
  4. data/README.md +2 -10
  5. data/Rakefile +19 -31
  6. data/errplane.gemspec +5 -9
  7. data/gemfiles/Gemfile.rails-2.3.x +8 -0
  8. data/gemfiles/Gemfile.rails-2.3.x.lock +60 -0
  9. data/gemfiles/{rails_3.2.gemfile → Gemfile.rails-3.0.x} +2 -2
  10. data/gemfiles/Gemfile.rails-3.0.x.lock +82 -0
  11. data/gemfiles/{rails_3.1.gemfile → Gemfile.rails-3.1.x} +2 -1
  12. data/gemfiles/Gemfile.rails-3.1.x.lock +94 -0
  13. data/gemfiles/{rails_3.0.gemfile → Gemfile.rails-3.2.x} +2 -1
  14. data/gemfiles/Gemfile.rails-3.2.x.lock +92 -0
  15. data/lib/errplane.rb +15 -10
  16. data/lib/errplane/backtrace.rb +38 -0
  17. data/lib/errplane/black_box.rb +8 -5
  18. data/lib/errplane/capistrano.rb +0 -1
  19. data/lib/errplane/configuration.rb +30 -22
  20. data/lib/errplane/errplane_chef_handler.rb +2 -4
  21. data/lib/errplane/logger.rb +11 -0
  22. data/lib/errplane/rails/air_traffic_controller.rb +2 -1
  23. data/lib/errplane/rails/middleware/hijack_render_exception.rb +5 -2
  24. data/lib/errplane/railtie.rb +0 -9
  25. data/lib/errplane/transmitter.rb +19 -11
  26. data/lib/errplane/version.rb +1 -1
  27. data/lib/rails/generators/errplane/templates/initializer.rb +0 -3
  28. data/spec/app/rails2.rb +38 -0
  29. data/spec/app/{rails.rb → rails3.rb} +0 -3
  30. data/spec/integration/exceptions_spec.rb +27 -9
  31. data/spec/rails2/README +243 -0
  32. data/spec/rails2/Rakefile +10 -0
  33. data/spec/rails2/app/controllers/application_controller.rb +10 -0
  34. data/spec/rails2/app/controllers/widgets_controller.rb +5 -0
  35. data/spec/rails2/app/helpers/application_helper.rb +3 -0
  36. data/spec/rails2/app/helpers/widgets_helper.rb +1 -0
  37. data/spec/rails2/config/boot.rb +114 -0
  38. data/spec/rails2/config/database.yml +3 -0
  39. data/spec/rails2/config/environment.rb +33 -0
  40. data/spec/rails2/config/environments/development.rb +17 -0
  41. data/spec/rails2/config/environments/production.rb +28 -0
  42. data/spec/{internal/public/favicon.ico → rails2/config/environments/test.rb} +0 -0
  43. data/spec/rails2/config/initializers/backtrace_silencers.rb +7 -0
  44. data/spec/rails2/config/initializers/cookie_verification_secret.rb +7 -0
  45. data/spec/{internal → rails2}/config/initializers/errplane.rb +0 -0
  46. data/spec/rails2/config/initializers/inflections.rb +10 -0
  47. data/spec/rails2/config/initializers/mime_types.rb +5 -0
  48. data/spec/rails2/config/initializers/new_rails_defaults.rb +21 -0
  49. data/spec/rails2/config/initializers/session_store.rb +15 -0
  50. data/spec/rails2/config/locales/en.yml +5 -0
  51. data/spec/rails2/config/routes.rb +3 -0
  52. data/spec/rails2/lib/tasks/rspec.rake +144 -0
  53. data/spec/rails2/log/development.log +0 -0
  54. data/spec/rails2/log/production.log +0 -0
  55. data/spec/rails2/log/server.log +0 -0
  56. data/spec/rails2/log/test.log +785 -0
  57. data/spec/rails2/public/404.html +30 -0
  58. data/spec/rails2/public/422.html +30 -0
  59. data/spec/rails2/public/500.html +30 -0
  60. data/spec/rails2/public/favicon.ico +0 -0
  61. data/spec/rails2/public/images/rails.png +0 -0
  62. data/spec/rails2/public/index.html +275 -0
  63. data/spec/rails2/public/javascripts/application.js +2 -0
  64. data/spec/rails2/public/javascripts/controls.js +963 -0
  65. data/spec/rails2/public/javascripts/dragdrop.js +973 -0
  66. data/spec/rails2/public/javascripts/effects.js +1128 -0
  67. data/spec/rails2/public/javascripts/prototype.js +4320 -0
  68. data/spec/rails2/public/robots.txt +5 -0
  69. data/spec/rails2/script/about +4 -0
  70. data/spec/rails2/script/autospec +6 -0
  71. data/spec/rails2/script/console +3 -0
  72. data/spec/rails2/script/dbconsole +3 -0
  73. data/spec/rails2/script/destroy +3 -0
  74. data/spec/rails2/script/generate +3 -0
  75. data/spec/rails2/script/performance/benchmarker +3 -0
  76. data/spec/rails2/script/performance/profiler +3 -0
  77. data/spec/rails2/script/plugin +3 -0
  78. data/spec/rails2/script/runner +3 -0
  79. data/spec/rails2/script/server +3 -0
  80. data/spec/rails2/script/spec +10 -0
  81. data/spec/rails2/test/performance/browsing_test.rb +9 -0
  82. data/spec/rails2/test/test_helper.rb +38 -0
  83. data/spec/spec_helper.rb +27 -16
  84. data/spec/suite.sh +39 -0
  85. data/spec/unit/backtrace_spec.rb +62 -0
  86. data/spec/unit/black_box_spec.rb +3 -3
  87. data/spec/unit/configuration_spec.rb +29 -0
  88. data/spec/unit/errplane_spec.rb +24 -15
  89. data/specs.watchr +21 -0
  90. metadata +194 -90
  91. data/gemfiles/rails_2.3.gemfile +0 -6
  92. data/gemfiles/rails_2.3.gemfile.lock +0 -148
  93. data/gemfiles/rails_3.0.gemfile.lock +0 -148
  94. data/gemfiles/rails_3.1.gemfile.lock +0 -148
  95. data/gemfiles/rails_3.2.gemfile.lock +0 -121
  96. data/lib/errplane/rails/udp_logger.rb +0 -54
  97. data/lib/errplane/syslogproto.rb +0 -7
  98. data/lib/errplane/syslogproto/common.rb +0 -81
  99. data/lib/errplane/syslogproto/logger.rb +0 -24
  100. data/lib/errplane/syslogproto/packet.rb +0 -107
  101. data/lib/errplane/syslogproto/parser.rb +0 -51
  102. data/spec/internal/app/controllers/application_controller.rb +0 -2
  103. data/spec/internal/app/controllers/widgets_controller.rb +0 -9
  104. data/spec/internal/config/database.yml +0 -3
  105. data/spec/internal/config/routes.rb +0 -3
  106. data/spec/internal/db/combustion_test.sqlite +0 -0
  107. data/spec/internal/db/schema.rb +0 -3
  108. data/spec/internal/log/.gitignore +0 -1
@@ -0,0 +1,28 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # The production environment is meant for finished, "live" apps.
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.action_controller.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+ config.action_view.cache_template_loading = true
11
+
12
+ # See everything in the log (default is :info)
13
+ # config.log_level = :debug
14
+
15
+ # Use a different logger for distributed setups
16
+ # config.logger = SyslogLogger.new
17
+
18
+ # Use a different cache store in production
19
+ # config.cache_store = :mem_cache_store
20
+
21
+ # Enable serving of images, stylesheets, and javascripts from an asset server
22
+ # config.action_controller.asset_host = "http://assets.example.com"
23
+
24
+ # Disable delivery errors, bad email addresses will be ignored
25
+ # config.action_mailer.raise_delivery_errors = false
26
+
27
+ # Enable threaded mode
28
+ # config.threadsafe!
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying do debug a problem that might steem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ ActionController::Base.cookie_verifier_secret = '171a91942320ec70c77a53d50cf62835b06a9e9e3ee8e9f045d4fe195965b9d5b30ceed7570ac6d77c20ca561229625be0cf987e8342b14f499033a271480970';
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,21 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # These settings change the behavior of Rails 2 apps and will be defaults
4
+ # for Rails 3. You can remove this initializer when Rails 3 is released.
5
+
6
+ if defined?(ActiveRecord)
7
+ # Include Active Record class name as root for JSON serialized output.
8
+ ActiveRecord::Base.include_root_in_json = true
9
+
10
+ # Store the full class name (including module namespace) in STI type column.
11
+ ActiveRecord::Base.store_full_sti_class = true
12
+ end
13
+
14
+ ActionController::Routing.generate_best_match = false
15
+
16
+ # Use ISO 8601 format for JSON serialized times and dates.
17
+ ActiveSupport.use_standard_json_time_format = true
18
+
19
+ # Don't escape HTML entities in JSON, leave that for the #json_escape helper.
20
+ # if you're including raw json in an HTML page.
21
+ ActiveSupport.escape_html_entities_in_json = false
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying cookie session data integrity.
4
+ # If you change this key, all old sessions will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ ActionController::Base.session = {
8
+ :key => '_rails-2.3_session',
9
+ :secret => '76cc9f32d38e9b6227bd663076edcf28cc915dc3021da204763a73dbd0d2741f6f7074af21400d4f8f9ef6c4db72487c467edf4a1dfec732835c5674a9846dd7'
10
+ }
11
+
12
+ # Use the database for sessions instead of the cookie-based default,
13
+ # which shouldn't be used to store highly confidential information
14
+ # (create the session table with "rake db:sessions:create")
15
+ # ActionController::Base.session_store = :active_record_store
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ ActionController::Routing::Routes.draw do |map|
2
+ map.resources :widgets
3
+ end
@@ -0,0 +1,144 @@
1
+ gem 'test-unit', '1.2.3' if RUBY_VERSION.to_f >= 1.9
2
+ rspec_gem_dir = nil
3
+ Dir["#{RAILS_ROOT}/vendor/gems/*"].each do |subdir|
4
+ rspec_gem_dir = subdir if subdir.gsub("#{RAILS_ROOT}/vendor/gems/","") =~ /^(\w+-)?rspec-(\d+)/ && File.exist?("#{subdir}/lib/spec/rake/spectask.rb")
5
+ end
6
+ rspec_plugin_dir = File.expand_path(File.dirname(__FILE__) + '/../../vendor/plugins/rspec')
7
+
8
+ if rspec_gem_dir && (test ?d, rspec_plugin_dir)
9
+ raise "\n#{'*'*50}\nYou have rspec installed in both vendor/gems and vendor/plugins\nPlease pick one and dispose of the other.\n#{'*'*50}\n\n"
10
+ end
11
+
12
+ if rspec_gem_dir
13
+ $LOAD_PATH.unshift("#{rspec_gem_dir}/lib")
14
+ elsif File.exist?(rspec_plugin_dir)
15
+ $LOAD_PATH.unshift("#{rspec_plugin_dir}/lib")
16
+ end
17
+
18
+ # Don't load rspec if running "rake gems:*"
19
+ unless ARGV.any? {|a| a =~ /^gems/}
20
+
21
+ begin
22
+ require 'spec/rake/spectask'
23
+ rescue MissingSourceFile
24
+ module Spec
25
+ module Rake
26
+ class SpecTask
27
+ def initialize(name)
28
+ task name do
29
+ # if rspec-rails is a configured gem, this will output helpful material and exit ...
30
+ require File.expand_path(File.join(File.dirname(__FILE__),"..","..","config","environment"))
31
+
32
+ # ... otherwise, do this:
33
+ raise <<-MSG
34
+
35
+ #{"*" * 80}
36
+ * You are trying to run an rspec rake task defined in
37
+ * #{__FILE__},
38
+ * but rspec can not be found in vendor/gems, vendor/plugins or system gems.
39
+ #{"*" * 80}
40
+ MSG
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
46
+ end
47
+
48
+ Rake.application.instance_variable_get('@tasks').delete('default')
49
+
50
+ spec_prereq = File.exist?(File.join(RAILS_ROOT, 'config', 'database.yml')) ? "db:test:prepare" : :noop
51
+ task :noop do
52
+ end
53
+
54
+ task :default => :spec
55
+ task :stats => "spec:statsetup"
56
+
57
+ desc "Run all specs in spec directory (excluding plugin specs)"
58
+ Spec::Rake::SpecTask.new(:spec => spec_prereq) do |t|
59
+ t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
60
+ t.spec_files = FileList['spec/**/*_spec.rb']
61
+ end
62
+
63
+ namespace :spec do
64
+ desc "Run all specs in spec directory with RCov (excluding plugin specs)"
65
+ Spec::Rake::SpecTask.new(:rcov) do |t|
66
+ t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
67
+ t.spec_files = FileList['spec/**/*_spec.rb']
68
+ t.rcov = true
69
+ t.rcov_opts = lambda do
70
+ IO.readlines("#{RAILS_ROOT}/spec/rcov.opts").map {|l| l.chomp.split " "}.flatten
71
+ end
72
+ end
73
+
74
+ desc "Print Specdoc for all specs (excluding plugin specs)"
75
+ Spec::Rake::SpecTask.new(:doc) do |t|
76
+ t.spec_opts = ["--format", "specdoc", "--dry-run"]
77
+ t.spec_files = FileList['spec/**/*_spec.rb']
78
+ end
79
+
80
+ desc "Print Specdoc for all plugin examples"
81
+ Spec::Rake::SpecTask.new(:plugin_doc) do |t|
82
+ t.spec_opts = ["--format", "specdoc", "--dry-run"]
83
+ t.spec_files = FileList['vendor/plugins/**/spec/**/*_spec.rb'].exclude('vendor/plugins/rspec/*')
84
+ end
85
+
86
+ [:models, :controllers, :views, :helpers, :lib, :integration].each do |sub|
87
+ desc "Run the code examples in spec/#{sub}"
88
+ Spec::Rake::SpecTask.new(sub => spec_prereq) do |t|
89
+ t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
90
+ t.spec_files = FileList["spec/#{sub}/**/*_spec.rb"]
91
+ end
92
+ end
93
+
94
+ desc "Run the code examples in vendor/plugins (except RSpec's own)"
95
+ Spec::Rake::SpecTask.new(:plugins => spec_prereq) do |t|
96
+ t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
97
+ t.spec_files = FileList['vendor/plugins/**/spec/**/*_spec.rb'].exclude('vendor/plugins/rspec/*').exclude("vendor/plugins/rspec-rails/*")
98
+ end
99
+
100
+ namespace :plugins do
101
+ desc "Runs the examples for rspec_on_rails"
102
+ Spec::Rake::SpecTask.new(:rspec_on_rails) do |t|
103
+ t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
104
+ t.spec_files = FileList['vendor/plugins/rspec-rails/spec/**/*_spec.rb']
105
+ end
106
+ end
107
+
108
+ # Setup specs for stats
109
+ task :statsetup do
110
+ require 'code_statistics'
111
+ ::STATS_DIRECTORIES << %w(Model\ specs spec/models) if File.exist?('spec/models')
112
+ ::STATS_DIRECTORIES << %w(View\ specs spec/views) if File.exist?('spec/views')
113
+ ::STATS_DIRECTORIES << %w(Controller\ specs spec/controllers) if File.exist?('spec/controllers')
114
+ ::STATS_DIRECTORIES << %w(Helper\ specs spec/helpers) if File.exist?('spec/helpers')
115
+ ::STATS_DIRECTORIES << %w(Library\ specs spec/lib) if File.exist?('spec/lib')
116
+ ::STATS_DIRECTORIES << %w(Routing\ specs spec/routing) if File.exist?('spec/routing')
117
+ ::STATS_DIRECTORIES << %w(Integration\ specs spec/integration) if File.exist?('spec/integration')
118
+ ::CodeStatistics::TEST_TYPES << "Model specs" if File.exist?('spec/models')
119
+ ::CodeStatistics::TEST_TYPES << "View specs" if File.exist?('spec/views')
120
+ ::CodeStatistics::TEST_TYPES << "Controller specs" if File.exist?('spec/controllers')
121
+ ::CodeStatistics::TEST_TYPES << "Helper specs" if File.exist?('spec/helpers')
122
+ ::CodeStatistics::TEST_TYPES << "Library specs" if File.exist?('spec/lib')
123
+ ::CodeStatistics::TEST_TYPES << "Routing specs" if File.exist?('spec/routing')
124
+ ::CodeStatistics::TEST_TYPES << "Integration specs" if File.exist?('spec/integration')
125
+ end
126
+
127
+ namespace :db do
128
+ namespace :fixtures do
129
+ desc "Load fixtures (from spec/fixtures) into the current environment's database. Load specific fixtures using FIXTURES=x,y. Load from subdirectory in test/fixtures using FIXTURES_DIR=z."
130
+ task :load => :environment do
131
+ ActiveRecord::Base.establish_connection(Rails.env)
132
+ base_dir = File.join(Rails.root, 'spec', 'fixtures')
133
+ fixtures_dir = ENV['FIXTURES_DIR'] ? File.join(base_dir, ENV['FIXTURES_DIR']) : base_dir
134
+
135
+ require 'active_record/fixtures'
136
+ (ENV['FIXTURES'] ? ENV['FIXTURES'].split(/,/).map {|f| File.join(fixtures_dir, f) } : Dir.glob(File.join(fixtures_dir, '*.{yml,csv}'))).each do |fixture_file|
137
+ Fixtures.create_fixtures(File.dirname(fixture_file), File.basename(fixture_file, '.*'))
138
+ end
139
+ end
140
+ end
141
+ end
142
+ end
143
+
144
+ end
File without changes
File without changes
File without changes
@@ -0,0 +1,785 @@
1
+
2
+
3
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 01:12:45) [GET]
4
+
5
+
6
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 01:12:45) [GET]
7
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
8
+
9
+
10
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 01:23:47) [GET]
11
+
12
+
13
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 01:23:47) [GET]
14
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
15
+
16
+
17
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 01:23:57) [GET]
18
+
19
+
20
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 01:23:57) [GET]
21
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
22
+
23
+
24
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 01:27:46) [GET]
25
+
26
+
27
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 01:27:46) [GET]
28
+ Completed in 1ms (View: 0 | 200 OK [http://test.host/widgets]
29
+
30
+
31
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 01:28:09) [GET]
32
+
33
+
34
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 01:28:09) [GET]
35
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
36
+
37
+
38
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 01:29:08) [GET]
39
+
40
+
41
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 01:29:08) [GET]
42
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
43
+
44
+
45
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 01:51:33) [GET]
46
+
47
+
48
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 01:51:33) [GET]
49
+ Completed in 1ms (View: 0 | 200 OK [http://test.host/widgets]
50
+
51
+
52
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 01:53:01) [GET]
53
+
54
+
55
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 01:53:01) [GET]
56
+ Completed in 1ms (View: 0 | 200 OK [http://test.host/widgets]
57
+
58
+
59
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 02:01:55) [GET]
60
+
61
+
62
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 02:01:55) [GET]
63
+ Completed in 1ms (View: 0 | 200 OK [http://test.host/widgets]
64
+
65
+
66
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 02:12:43) [GET]
67
+
68
+
69
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 02:12:43) [GET]
70
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
71
+
72
+
73
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-19 02:12:43) [GET]
74
+
75
+ ZeroDivisionError (divided by 0):
76
+ app/controllers/widgets_controller.rb:3:in `/'
77
+ app/controllers/widgets_controller.rb:3:in `new'
78
+ <internal:prelude>:10:in `synchronize'
79
+ spec/integration/exceptions_spec.rb:14:in `block (3 levels) in <top (required)>'
80
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
81
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
82
+ /Users/todd/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
83
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
84
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
85
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
86
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
87
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
88
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
89
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
90
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
91
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
92
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
93
+ rspec (1.3.2) bin/spec:5:in `<main>'
94
+
95
+ Rendered rescues/_trace (36.4ms)
96
+ Rendered rescues/_request_and_response (18.4ms)
97
+ Rendering rescues/layout (internal_server_error)
98
+
99
+
100
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 02:14:07) [GET]
101
+
102
+
103
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 02:14:07) [GET]
104
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
105
+
106
+
107
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 02:14:32) [GET]
108
+
109
+
110
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 02:14:32) [GET]
111
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
112
+
113
+
114
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 02:15:43) [GET]
115
+
116
+
117
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 02:15:43) [GET]
118
+ Completed in 1ms (View: 0 | 200 OK [http://test.host/widgets]
119
+
120
+
121
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 02:16:46) [GET]
122
+
123
+
124
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 02:16:46) [GET]
125
+ Completed in 1ms (View: 0 | 200 OK [http://test.host/widgets]
126
+
127
+
128
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 10:35:33) [GET]
129
+
130
+
131
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 10:35:33) [GET]
132
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
133
+
134
+
135
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 11:02:13) [GET]
136
+
137
+
138
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 11:02:13) [GET]
139
+ Completed in 1ms (View: 0 | 200 OK [http://test.host/widgets]
140
+
141
+
142
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-19 11:02:13) [GET]
143
+
144
+ ZeroDivisionError (divided by 0):
145
+ app/controllers/widgets_controller.rb:3:in `/'
146
+ app/controllers/widgets_controller.rb:3:in `new'
147
+ <internal:prelude>:10:in `synchronize'
148
+ spec/integration/exceptions_spec.rb:14:in `block (3 levels) in <top (required)>'
149
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
150
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
151
+ /Users/todd/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
152
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
153
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
154
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
155
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
156
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
157
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
158
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
159
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
160
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
161
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
162
+ rspec (1.3.2) bin/spec:5:in `<main>'
163
+
164
+ Rendered rescues/_trace (37.3ms)
165
+ Rendered rescues/_request_and_response (17.6ms)
166
+ Rendering rescues/layout (internal_server_error)
167
+
168
+
169
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 11:24:31) [GET]
170
+
171
+
172
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 11:24:31) [GET]
173
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
174
+
175
+
176
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-19 11:24:31) [GET]
177
+
178
+ ZeroDivisionError (divided by 0):
179
+ app/controllers/widgets_controller.rb:3:in `/'
180
+ app/controllers/widgets_controller.rb:3:in `new'
181
+ <internal:prelude>:10:in `synchronize'
182
+ spec/integration/exceptions_spec.rb:14:in `block (3 levels) in <top (required)>'
183
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
184
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
185
+ /Users/todd/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
186
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
187
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
188
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
189
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
190
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
191
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
192
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
193
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
194
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
195
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
196
+ rspec (1.3.2) bin/spec:5:in `<main>'
197
+
198
+ Rendered rescues/_trace (31.4ms)
199
+ Rendered rescues/_request_and_response (17.4ms)
200
+ Rendering rescues/layout (internal_server_error)
201
+
202
+
203
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-19 11:24:57) [GET]
204
+
205
+
206
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-19 11:24:57) [GET]
207
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
208
+
209
+
210
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-19 11:24:57) [GET]
211
+
212
+ ZeroDivisionError (divided by 0):
213
+ app/controllers/widgets_controller.rb:3:in `/'
214
+ app/controllers/widgets_controller.rb:3:in `new'
215
+ <internal:prelude>:10:in `synchronize'
216
+ spec/integration/exceptions_spec.rb:14:in `block (3 levels) in <top (required)>'
217
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
218
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
219
+ /Users/todd/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
220
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
221
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
222
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
223
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
224
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
225
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
226
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
227
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
228
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
229
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
230
+ rspec (1.3.2) bin/spec:5:in `<main>'
231
+
232
+ Rendered rescues/_trace (32.5ms)
233
+ Rendered rescues/_request_and_response (2.7ms)
234
+ Rendering rescues/layout (internal_server_error)
235
+
236
+
237
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-21 01:15:42) [GET]
238
+
239
+
240
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-21 01:15:42) [GET]
241
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
242
+
243
+
244
+ Processing WidgetsController#index (for 127.0.0.1 at 2012-07-21 01:15:42) [GET]
245
+ Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
246
+
247
+
248
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-21 01:22:06) [GET]
249
+
250
+
251
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-21 01:22:06) [GET]
252
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
253
+
254
+
255
+ Processing WidgetsController#index (for 127.0.0.1 at 2012-07-21 01:22:06) [GET]
256
+ Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
257
+
258
+
259
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-21 01:24:07) [GET]
260
+
261
+
262
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-21 01:24:07) [GET]
263
+ Completed in 1ms (View: 0 | 200 OK [http://test.host/widgets]
264
+
265
+
266
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-21 01:24:07) [GET]
267
+
268
+ ZeroDivisionError (divided by 0):
269
+ app/controllers/widgets_controller.rb:3:in `/'
270
+ app/controllers/widgets_controller.rb:3:in `new'
271
+ <internal:prelude>:10:in `synchronize'
272
+ spec/integration/exceptions_spec.rb:18:in `block (3 levels) in <top (required)>'
273
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
274
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
275
+ /Users/todd/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
276
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
277
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
278
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
279
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
280
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
281
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
282
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
283
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
284
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
285
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
286
+ rspec (1.3.2) bin/spec:5:in `<main>'
287
+
288
+ Rendered rescues/_trace (27.0ms)
289
+ Rendered rescues/_request_and_response (2.3ms)
290
+ Rendering rescues/layout (internal_server_error)
291
+
292
+
293
+ Processing WidgetsController#index (for 127.0.0.1 at 2012-07-21 01:24:07) [GET]
294
+ Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
295
+
296
+
297
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-21 01:25:07) [GET]
298
+
299
+
300
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-21 01:25:07) [GET]
301
+ Completed in 1ms (View: 0 | 200 OK [http://test.host/widgets]
302
+
303
+
304
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-21 01:25:07) [GET]
305
+
306
+ ZeroDivisionError (divided by 0):
307
+ app/controllers/widgets_controller.rb:3:in `/'
308
+ app/controllers/widgets_controller.rb:3:in `new'
309
+ <internal:prelude>:10:in `synchronize'
310
+ spec/integration/exceptions_spec.rb:20:in `block (3 levels) in <top (required)>'
311
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
312
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
313
+ /Users/todd/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
314
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
315
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
316
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
317
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
318
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
319
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
320
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
321
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
322
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
323
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
324
+ rspec (1.3.2) bin/spec:5:in `<main>'
325
+
326
+ Rendered rescues/_trace (27.5ms)
327
+ Rendered rescues/_request_and_response (2.6ms)
328
+ Rendering rescues/layout (internal_server_error)
329
+
330
+
331
+ Processing WidgetsController#index (for 127.0.0.1 at 2012-07-21 01:25:07) [GET]
332
+ Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
333
+
334
+
335
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-22 00:43:21) [GET]
336
+
337
+
338
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-22 00:43:21) [GET]
339
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
340
+
341
+
342
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-22 00:43:21) [GET]
343
+
344
+ ZeroDivisionError (divided by 0):
345
+ app/controllers/widgets_controller.rb:3:in `/'
346
+ app/controllers/widgets_controller.rb:3:in `new'
347
+ <internal:prelude>:10:in `synchronize'
348
+ spec/integration/exceptions_spec.rb:20:in `block (3 levels) in <top (required)>'
349
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
350
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
351
+ /Users/todd/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
352
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
353
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
354
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
355
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
356
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
357
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
358
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
359
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
360
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
361
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
362
+ rspec (1.3.2) bin/spec:5:in `<main>'
363
+
364
+ Rendered rescues/_trace (25.1ms)
365
+ Rendered rescues/_request_and_response (6.6ms)
366
+ Rendering rescues/layout (internal_server_error)
367
+
368
+
369
+ Processing WidgetsController#index (for 127.0.0.1 at 2012-07-22 00:43:21) [GET]
370
+ Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
371
+
372
+
373
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-22 00:44:34) [GET]
374
+
375
+
376
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-22 00:44:34) [GET]
377
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
378
+
379
+
380
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-22 00:44:34) [GET]
381
+
382
+ ZeroDivisionError (divided by 0):
383
+ app/controllers/widgets_controller.rb:3:in `/'
384
+ app/controllers/widgets_controller.rb:3:in `new'
385
+ <internal:prelude>:10:in `synchronize'
386
+ spec/integration/exceptions_spec.rb:20:in `block (3 levels) in <top (required)>'
387
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
388
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
389
+ /Users/todd/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
390
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
391
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
392
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
393
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
394
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
395
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
396
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
397
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
398
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
399
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
400
+ rspec (1.3.2) bin/spec:5:in `<main>'
401
+
402
+ Rendered rescues/_trace (31.1ms)
403
+ Rendered rescues/_request_and_response (2.3ms)
404
+ Rendering rescues/layout (internal_server_error)
405
+
406
+
407
+ Processing WidgetsController#index (for 127.0.0.1 at 2012-07-22 00:44:34) [GET]
408
+ Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
409
+
410
+
411
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-22 00:46:37) [GET]
412
+
413
+
414
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-22 00:46:37) [GET]
415
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
416
+
417
+
418
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-22 00:46:37) [GET]
419
+
420
+ ZeroDivisionError (divided by 0):
421
+ app/controllers/widgets_controller.rb:3:in `/'
422
+ app/controllers/widgets_controller.rb:3:in `new'
423
+ <internal:prelude>:10:in `synchronize'
424
+ spec/integration/exceptions_spec.rb:20:in `block (3 levels) in <top (required)>'
425
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
426
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
427
+ /Users/todd/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
428
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
429
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
430
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
431
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
432
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
433
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
434
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
435
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
436
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
437
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
438
+ rspec (1.3.2) bin/spec:5:in `<main>'
439
+
440
+ Rendered rescues/_trace (31.8ms)
441
+ Rendered rescues/_request_and_response (2.7ms)
442
+ Rendering rescues/layout (internal_server_error)
443
+
444
+
445
+ Processing WidgetsController#index (for 127.0.0.1 at 2012-07-22 00:46:37) [GET]
446
+ Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
447
+
448
+
449
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-22 02:04:06) [GET]
450
+
451
+
452
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-22 02:04:06) [GET]
453
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
454
+
455
+
456
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-22 02:04:06) [GET]
457
+
458
+ ZeroDivisionError (divided by 0):
459
+ app/controllers/widgets_controller.rb:3:in `/'
460
+ app/controllers/widgets_controller.rb:3:in `new'
461
+ <internal:prelude>:10:in `synchronize'
462
+ spec/integration/exceptions_spec.rb:20:in `block (3 levels) in <top (required)>'
463
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
464
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
465
+ /Users/todd/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
466
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
467
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
468
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
469
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
470
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
471
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
472
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
473
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
474
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
475
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
476
+ rspec (1.3.2) bin/spec:5:in `<main>'
477
+
478
+ Rendered rescues/_trace (32.3ms)
479
+ Rendered rescues/_request_and_response (5.3ms)
480
+ Rendering rescues/layout (internal_server_error)
481
+
482
+
483
+ Processing WidgetsController#index (for 127.0.0.1 at 2012-07-22 02:04:06) [GET]
484
+ Completed in 1ms (View: 0 | 200 OK [http://www.example.com/widgets]
485
+
486
+
487
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-22 02:05:00) [GET]
488
+
489
+
490
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-22 02:05:00) [GET]
491
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
492
+
493
+
494
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-22 02:05:00) [GET]
495
+
496
+ ZeroDivisionError (divided by 0):
497
+ app/controllers/widgets_controller.rb:3:in `/'
498
+ app/controllers/widgets_controller.rb:3:in `new'
499
+ <internal:prelude>:10:in `synchronize'
500
+ spec/integration/exceptions_spec.rb:20:in `block (3 levels) in <top (required)>'
501
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
502
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
503
+ /Users/todd/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
504
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
505
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
506
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
507
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
508
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
509
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
510
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
511
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
512
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
513
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
514
+ rspec (1.3.2) bin/spec:5:in `<main>'
515
+
516
+ Rendered rescues/_trace (27.8ms)
517
+ Rendered rescues/_request_and_response (3.3ms)
518
+ Rendering rescues/layout (internal_server_error)
519
+
520
+
521
+ Processing WidgetsController#index (for 127.0.0.1 at 2012-07-22 02:05:00) [GET]
522
+ Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
523
+
524
+
525
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-22 02:05:24) [GET]
526
+
527
+
528
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-22 02:05:24) [GET]
529
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
530
+
531
+
532
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-22 02:05:24) [GET]
533
+
534
+ ZeroDivisionError (divided by 0):
535
+ app/controllers/widgets_controller.rb:3:in `/'
536
+ app/controllers/widgets_controller.rb:3:in `new'
537
+ <internal:prelude>:10:in `synchronize'
538
+ spec/integration/exceptions_spec.rb:20:in `block (3 levels) in <top (required)>'
539
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
540
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
541
+ /Users/todd/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
542
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
543
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
544
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
545
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
546
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
547
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
548
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
549
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
550
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
551
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
552
+ rspec (1.3.2) bin/spec:5:in `<main>'
553
+
554
+ Rendered rescues/_trace (30.9ms)
555
+ Rendered rescues/_request_and_response (2.9ms)
556
+ Rendering rescues/layout (internal_server_error)
557
+
558
+
559
+ Processing WidgetsController#index (for 127.0.0.1 at 2012-07-22 02:05:24) [GET]
560
+ Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
561
+
562
+
563
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-22 02:09:06) [GET]
564
+
565
+
566
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-22 02:09:06) [GET]
567
+ Completed in 1ms (View: 0 | 200 OK [http://test.host/widgets]
568
+
569
+
570
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-22 02:09:06) [GET]
571
+
572
+ ZeroDivisionError (divided by 0):
573
+ app/controllers/widgets_controller.rb:3:in `/'
574
+ app/controllers/widgets_controller.rb:3:in `new'
575
+ <internal:prelude>:10:in `synchronize'
576
+ spec/integration/exceptions_spec.rb:20:in `block (3 levels) in <top (required)>'
577
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
578
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
579
+ /Users/todd/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
580
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
581
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
582
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
583
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
584
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
585
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
586
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
587
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
588
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
589
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
590
+ rspec (1.3.2) bin/spec:5:in `<main>'
591
+
592
+ Rendered rescues/_trace (32.8ms)
593
+ Rendered rescues/_request_and_response (2.7ms)
594
+ Rendering rescues/layout (internal_server_error)
595
+
596
+
597
+ Processing WidgetsController#index (for 127.0.0.1 at 2012-07-22 02:09:06) [GET]
598
+ Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
599
+
600
+
601
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-22 02:10:11) [GET]
602
+
603
+
604
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-22 02:10:11) [GET]
605
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
606
+
607
+
608
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-22 02:10:11) [GET]
609
+
610
+ ZeroDivisionError (divided by 0):
611
+ app/controllers/widgets_controller.rb:3:in `/'
612
+ app/controllers/widgets_controller.rb:3:in `new'
613
+ <internal:prelude>:10:in `synchronize'
614
+ spec/integration/exceptions_spec.rb:20:in `block (3 levels) in <top (required)>'
615
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
616
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
617
+ /Users/todd/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
618
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
619
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
620
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
621
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
622
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
623
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
624
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
625
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
626
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
627
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
628
+ rspec (1.3.2) bin/spec:5:in `<main>'
629
+
630
+ Rendered rescues/_trace (32.0ms)
631
+ Rendered rescues/_request_and_response (2.7ms)
632
+ Rendering rescues/layout (internal_server_error)
633
+
634
+
635
+ Processing WidgetsController#index (for 127.0.0.1 at 2012-07-22 02:10:11) [GET]
636
+ Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
637
+
638
+
639
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-23 00:36:46) [GET]
640
+
641
+
642
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-23 00:36:46) [GET]
643
+ Completed in 1ms (View: 0 | 200 OK [http://test.host/widgets]
644
+
645
+
646
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-23 00:36:46) [GET]
647
+
648
+ ZeroDivisionError (divided by 0):
649
+ /Users/todd/Projects/errplane/gem/spec/rails2/app/controllers/widgets_controller.rb:3:in `/'
650
+ /Users/todd/Projects/errplane/gem/spec/rails2/app/controllers/widgets_controller.rb:3:in `new'
651
+ /spec/integration/exceptions_spec.rb:20
652
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
653
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
654
+ /Users/todd/.rvm/rubies/ruby-1.8.7-p357/lib/ruby/1.8/timeout.rb:53:in `timeout'
655
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
656
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
657
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
658
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
659
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
660
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
661
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
662
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
663
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
664
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
665
+ rspec (1.3.2) bin/spec:5
666
+
667
+ Rendered rescues/_trace (126.1ms)
668
+ Rendered rescues/_request_and_response (2.6ms)
669
+ Rendering rescues/layout (internal_server_error)
670
+
671
+
672
+ Processing WidgetsController#index (for 127.0.0.1 at 2012-07-23 00:36:46) [GET]
673
+ Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
674
+
675
+
676
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-23 00:56:48) [GET]
677
+
678
+
679
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-23 00:56:48) [GET]
680
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
681
+
682
+
683
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-23 00:56:48) [GET]
684
+
685
+ ZeroDivisionError (divided by 0):
686
+ app/controllers/widgets_controller.rb:3:in `/'
687
+ app/controllers/widgets_controller.rb:3:in `new'
688
+ <internal:prelude>:10:in `synchronize'
689
+ spec/integration/exceptions_spec.rb:20:in `block (3 levels) in <top (required)>'
690
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
691
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `block in execute'
692
+ /Users/todd/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
693
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
694
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `block in run_examples'
695
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
696
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
697
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
698
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `block in run'
699
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
700
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
701
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
702
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
703
+ rspec (1.3.2) bin/spec:5:in `<main>'
704
+
705
+ Rendered rescues/_trace (15.8ms)
706
+ Rendered rescues/_request_and_response (17.5ms)
707
+ Rendering rescues/layout (internal_server_error)
708
+
709
+
710
+ Processing WidgetsController#index (for 127.0.0.1 at 2012-07-23 00:56:48) [GET]
711
+ Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
712
+
713
+
714
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-23 14:31:35) [GET]
715
+
716
+
717
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-23 14:31:35) [GET]
718
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
719
+
720
+
721
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-23 14:31:35) [GET]
722
+
723
+ ZeroDivisionError (divided by 0):
724
+ /Users/todd/Projects/errplane/gem/spec/rails2/app/controllers/widgets_controller.rb:3:in `/'
725
+ /Users/todd/Projects/errplane/gem/spec/rails2/app/controllers/widgets_controller.rb:3:in `new'
726
+ /spec/integration/exceptions_spec.rb:20
727
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
728
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
729
+ /Users/todd/.rvm/rubies/ruby-1.8.7-p357/lib/ruby/1.8/timeout.rb:53:in `timeout'
730
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
731
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
732
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
733
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
734
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
735
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
736
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
737
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
738
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
739
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
740
+ rspec (1.3.2) bin/spec:5
741
+
742
+ Rendered rescues/_trace (124.3ms)
743
+ Rendered rescues/_request_and_response (3.1ms)
744
+ Rendering rescues/layout (internal_server_error)
745
+
746
+
747
+ Processing WidgetsController#index (for 127.0.0.1 at 2012-07-23 14:31:35) [GET]
748
+ Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]
749
+
750
+
751
+ Processing WidgetsController#new (for 0.0.0.0 at 2012-07-23 15:03:54) [GET]
752
+
753
+
754
+ Processing WidgetsController#index (for 0.0.0.0 at 2012-07-23 15:03:54) [GET]
755
+ Completed in 0ms (View: 0 | 200 OK [http://test.host/widgets]
756
+
757
+
758
+ Processing WidgetsController#new (for 127.0.0.1 at 2012-07-23 15:03:54) [GET]
759
+
760
+ ZeroDivisionError (divided by 0):
761
+ /Users/todd/Projects/errplane/gem/spec/rails2/app/controllers/widgets_controller.rb:3:in `/'
762
+ /Users/todd/Projects/errplane/gem/spec/rails2/app/controllers/widgets_controller.rb:3:in `new'
763
+ /spec/integration/exceptions_spec.rb:20
764
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `instance_eval'
765
+ rspec (1.3.2) lib/spec/example/example_methods.rb:40:in `execute'
766
+ /Users/todd/.rvm/rubies/ruby-1.8.7-p357/lib/ruby/1.8/timeout.rb:53:in `timeout'
767
+ rspec (1.3.2) lib/spec/example/example_methods.rb:37:in `execute'
768
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:219:in `run_examples'
769
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `each'
770
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:217:in `run_examples'
771
+ rspec (1.3.2) lib/spec/example/example_group_methods.rb:103:in `run'
772
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:23:in `run'
773
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `each'
774
+ rspec (1.3.2) lib/spec/runner/example_group_runner.rb:22:in `run'
775
+ rspec (1.3.2) lib/spec/runner/options.rb:153:in `run_examples'
776
+ rspec (1.3.2) lib/spec/runner/command_line.rb:9:in `run'
777
+ rspec (1.3.2) bin/spec:5
778
+
779
+ Rendered rescues/_trace (97.9ms)
780
+ Rendered rescues/_request_and_response (2.0ms)
781
+ Rendering rescues/layout (internal_server_error)
782
+
783
+
784
+ Processing WidgetsController#index (for 127.0.0.1 at 2012-07-23 15:03:54) [GET]
785
+ Completed in 0ms (View: 0 | 200 OK [http://www.example.com/widgets]