raygun4ruby 3.2.0 → 3.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +7 -5
  3. data/CHANGELOG.md +4 -0
  4. data/lib/raygun/middleware/javascript_exception_tracking.rb +1 -1
  5. data/lib/raygun/version.rb +1 -1
  6. data/raygun4ruby.gemspec +1 -1
  7. data/spec/dummy/.gitignore +17 -0
  8. data/spec/dummy/Gemfile +47 -0
  9. data/spec/dummy/README.rdoc +28 -0
  10. data/spec/dummy/Rakefile +1 -1
  11. data/spec/dummy/app/assets/javascripts/application.js +1 -3
  12. data/spec/dummy/app/assets/stylesheets/application.css +3 -3
  13. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  14. data/spec/dummy/app/controllers/home_controller.rb +1 -1
  15. data/spec/dummy/app/{assets/javascripts/channels → mailers}/.keep +0 -0
  16. data/spec/dummy/{storage → app/models}/.keep +0 -0
  17. data/spec/dummy/app/views/layouts/application.html.erb +9 -10
  18. data/spec/dummy/bin/bundle +1 -1
  19. data/spec/dummy/bin/rails +6 -1
  20. data/spec/dummy/bin/rake +5 -0
  21. data/spec/dummy/bin/setup +13 -20
  22. data/spec/dummy/bin/spring +17 -0
  23. data/spec/dummy/config.ru +1 -2
  24. data/spec/dummy/config/application.rb +16 -8
  25. data/spec/dummy/config/boot.rb +2 -4
  26. data/spec/dummy/config/database.yml +1 -1
  27. data/spec/dummy/config/environment.rb +1 -1
  28. data/spec/dummy/config/environments/development.rb +11 -31
  29. data/spec/dummy/config/environments/production.rb +16 -31
  30. data/spec/dummy/config/environments/test.rb +6 -10
  31. data/spec/dummy/config/initializers/assets.rb +3 -6
  32. data/spec/dummy/config/initializers/cookies_serializer.rb +0 -2
  33. data/spec/dummy/config/initializers/session_store.rb +3 -0
  34. data/spec/dummy/config/initializers/to_time_preserves_timezone.rb +10 -0
  35. data/spec/dummy/config/initializers/wrap_parameters.rb +2 -2
  36. data/spec/dummy/config/locales/en.yml +0 -10
  37. data/spec/dummy/config/routes.rb +56 -1
  38. data/spec/dummy/config/secrets.yml +22 -0
  39. data/spec/dummy/db/seeds.rb +7 -0
  40. data/spec/dummy/{public/apple-touch-icon-precomposed.png → lib/tasks/.keep} +0 -0
  41. data/spec/dummy/public/404.html +6 -6
  42. data/spec/dummy/public/422.html +6 -6
  43. data/spec/dummy/public/500.html +6 -6
  44. data/spec/dummy/public/robots.txt +5 -0
  45. data/spec/dummy/{public/apple-touch-icon.png → test/controllers/.keep} +0 -0
  46. data/spec/dummy/test/fixtures/.keep +0 -0
  47. data/spec/dummy/test/helpers/.keep +0 -0
  48. data/spec/dummy/test/integration/.keep +0 -0
  49. data/spec/dummy/test/mailers/.keep +0 -0
  50. data/spec/dummy/test/models/.keep +0 -0
  51. data/spec/dummy/test/test_helper.rb +10 -0
  52. data/spec/dummy/vendor/assets/javascripts/.keep +0 -0
  53. data/spec/dummy/vendor/assets/stylesheets/.keep +0 -0
  54. metadata +25 -28
  55. data/spec/dummy/.ruby-version +0 -1
  56. data/spec/dummy/app/assets/config/manifest.js +0 -3
  57. data/spec/dummy/app/assets/javascripts/cable.js +0 -13
  58. data/spec/dummy/app/channels/application_cable/channel.rb +0 -4
  59. data/spec/dummy/app/channels/application_cable/connection.rb +0 -4
  60. data/spec/dummy/app/jobs/application_job.rb +0 -2
  61. data/spec/dummy/app/mailers/application_mailer.rb +0 -4
  62. data/spec/dummy/app/models/application_record.rb +0 -3
  63. data/spec/dummy/app/views/layouts/mailer.html.erb +0 -13
  64. data/spec/dummy/app/views/layouts/mailer.text.erb +0 -1
  65. data/spec/dummy/bin/update +0 -31
  66. data/spec/dummy/bin/yarn +0 -11
  67. data/spec/dummy/config/cable.yml +0 -10
  68. data/spec/dummy/config/initializers/application_controller_renderer.rb +0 -8
  69. data/spec/dummy/config/initializers/content_security_policy.rb +0 -25
  70. data/spec/dummy/config/puma.rb +0 -34
  71. data/spec/dummy/config/spring.rb +0 -6
  72. data/spec/dummy/config/storage.yml +0 -34
  73. data/spec/dummy/db/schema.rb +0 -15
  74. data/spec/dummy/package.json +0 -5
@@ -14,13 +14,15 @@ Rails.application.configure do
14
14
  config.consider_all_requests_local = false
15
15
  config.action_controller.perform_caching = true
16
16
 
17
- # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"]
18
- # or in config/master.key. This key is used to decrypt credentials (and other encrypted files).
19
- # config.require_master_key = true
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like
20
+ # NGINX, varnish or squid.
21
+ # config.action_dispatch.rack_cache = true
20
22
 
21
23
  # Disable serving static files from the `/public` folder by default since
22
24
  # Apache or NGINX already handles this.
23
- config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
25
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
24
26
 
25
27
  # Compress JavaScripts and CSS.
26
28
  config.assets.js_compressor = :uglifier
@@ -29,23 +31,16 @@ Rails.application.configure do
29
31
  # Do not fallback to assets pipeline if a precompiled asset is missed.
30
32
  config.assets.compile = false
31
33
 
32
- # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
34
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
35
+ # yet still be able to expire them through the digest params.
36
+ config.assets.digest = true
33
37
 
34
- # Enable serving of images, stylesheets, and JavaScripts from an asset server.
35
- # config.action_controller.asset_host = 'http://assets.example.com'
38
+ # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
36
39
 
37
40
  # Specifies the header that your server uses for sending files.
38
41
  # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
39
42
  # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
40
43
 
41
- # Store uploaded files on the local file system (see config/storage.yml for options)
42
- config.active_storage.service = :local
43
-
44
- # Mount Action Cable outside main process or domain
45
- # config.action_cable.mount_path = nil
46
- # config.action_cable.url = 'wss://example.com/cable'
47
- # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ]
48
-
49
44
  # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
50
45
  # config.force_ssl = true
51
46
 
@@ -54,16 +49,16 @@ Rails.application.configure do
54
49
  config.log_level = :debug
55
50
 
56
51
  # Prepend all log lines with the following tags.
57
- config.log_tags = [ :request_id ]
52
+ # config.log_tags = [ :subdomain, :uuid ]
53
+
54
+ # Use a different logger for distributed setups.
55
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
58
56
 
59
57
  # Use a different cache store in production.
60
58
  # config.cache_store = :mem_cache_store
61
59
 
62
- # Use a real queuing backend for Active Job (and separate queues per environment)
63
- # config.active_job.queue_adapter = :resque
64
- # config.active_job.queue_name_prefix = "dummy_#{Rails.env}"
65
-
66
- config.action_mailer.perform_caching = false
60
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
61
+ # config.action_controller.asset_host = 'http://assets.example.com'
67
62
 
68
63
  # Ignore bad email addresses and do not raise email delivery errors.
69
64
  # Set this to true and configure the email server for immediate delivery to raise delivery errors.
@@ -79,16 +74,6 @@ Rails.application.configure do
79
74
  # Use default logging formatter so that PID and timestamp are not suppressed.
80
75
  config.log_formatter = ::Logger::Formatter.new
81
76
 
82
- # Use a different logger for distributed setups.
83
- # require 'syslog/logger'
84
- # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
85
-
86
- if ENV["RAILS_LOG_TO_STDOUT"].present?
87
- logger = ActiveSupport::Logger.new(STDOUT)
88
- logger.formatter = config.log_formatter
89
- config.logger = ActiveSupport::TaggedLogging.new(logger)
90
- end
91
-
92
77
  # Do not dump schema after migrations.
93
78
  config.active_record.dump_schema_after_migration = false
94
79
  end
@@ -12,11 +12,9 @@ Rails.application.configure do
12
12
  # preloads Rails for running tests, you may have to set it to true.
13
13
  config.eager_load = false
14
14
 
15
- # Configure public file server for tests with Cache-Control for performance.
16
- config.public_file_server.enabled = true
17
- config.public_file_server.headers = {
18
- 'Cache-Control' => "public, max-age=#{1.hour.to_i}"
19
- }
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
17
+ config.static_cache_control = 'public, max-age=3600'
20
18
 
21
19
  # Show full error reports and disable caching.
22
20
  config.consider_all_requests_local = true
@@ -28,16 +26,14 @@ Rails.application.configure do
28
26
  # Disable request forgery protection in test environment.
29
27
  config.action_controller.allow_forgery_protection = false
30
28
 
31
- # Store uploaded files on the local file system in a temporary directory
32
- config.active_storage.service = :test
33
-
34
- config.action_mailer.perform_caching = false
35
-
36
29
  # Tell Action Mailer not to deliver emails to the real world.
37
30
  # The :test delivery method accumulates sent emails in the
38
31
  # ActionMailer::Base.deliveries array.
39
32
  config.action_mailer.delivery_method = :test
40
33
 
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
41
37
  # Print deprecation notices to the stderr.
42
38
  config.active_support.deprecation = :stderr
43
39
 
@@ -3,12 +3,9 @@
3
3
  # Version of your assets, change this if you want to expire all your assets.
4
4
  Rails.application.config.assets.version = '1.0'
5
5
 
6
- # Add additional assets to the asset load path.
6
+ # Add additional assets to the asset load path
7
7
  # Rails.application.config.assets.paths << Emoji.images_path
8
- # Add Yarn node_modules folder to the asset load path.
9
- Rails.application.config.assets.paths << Rails.root.join('node_modules')
10
8
 
11
9
  # Precompile additional assets.
12
- # application.js, application.css, and all non-JS/CSS in the app/assets
13
- # folder are already added.
14
- # Rails.application.config.assets.precompile += %w( admin.js admin.css )
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -1,5 +1,3 @@
1
1
  # Be sure to restart your server when you modify this file.
2
2
 
3
- # Specify a serializer for the signed and encrypted cookie jars.
4
- # Valid options are :json, :marshal, and :hybrid.
5
3
  Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Preserve the timezone of the receiver when calling to `to_time`.
4
+ # Ruby 2.4 will change the behavior of `to_time` to preserve the timezone
5
+ # when converting to an instance of `Time` instead of the previous behavior
6
+ # of converting to the local system timezone.
7
+ #
8
+ # Rails 5.0 introduced this config option so that apps made with earlier
9
+ # versions of Rails are not affected when upgrading.
10
+ ActiveSupport.to_time_preserves_timezone = true
@@ -5,10 +5,10 @@
5
5
 
6
6
  # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
7
  ActiveSupport.on_load(:action_controller) do
8
- wrap_parameters format: [:json]
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
9
  end
10
10
 
11
11
  # To enable root element in JSON for ActiveRecord objects.
12
12
  # ActiveSupport.on_load(:active_record) do
13
- # self.include_root_in_json = true
13
+ # self.include_root_in_json = true
14
14
  # end
@@ -16,16 +16,6 @@
16
16
  #
17
17
  # This would use the information in config/locales/es.yml.
18
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
19
  # To learn more, please read the Rails Internationalization guide
30
20
  # available at http://guides.rubyonrails.org/i18n.html.
31
21
 
@@ -1,3 +1,58 @@
1
1
  Rails.application.routes.draw do
2
- root 'home#index'
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ #
57
+ root to: 'home#index'
3
58
  end
@@ -0,0 +1,22 @@
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 `rake 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
+ development:
14
+ secret_key_base: fe8f2d6899ec2cc64fe8c007464f137374976c237ae458e8fc0f7dfc4078764e5db757fcff76d6dce97319965b296fe85866f1c955d4d983d6e878d0ca77404b
15
+
16
+ test:
17
+ secret_key_base: 2a592322bec8b420c3a75581d4784346321fd574968ff7c33764d699b0e33d934cb45cb29a6e1717e455258697a439720a1dc35ce939f01a8ff5cd03829a7aef
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -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 rake db:seed (or created alongside the db with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
7
+ # Mayor.create(name: 'Emanuel', city: cities.first)
@@ -4,7 +4,7 @@
4
4
  <title>The page you were looking for doesn't exist (404)</title>
5
5
  <meta name="viewport" content="width=device-width,initial-scale=1">
6
6
  <style>
7
- .rails-default-error-page {
7
+ body {
8
8
  background-color: #EFEFEF;
9
9
  color: #2E2F30;
10
10
  text-align: center;
@@ -12,13 +12,13 @@
12
12
  margin: 0;
13
13
  }
14
14
 
15
- .rails-default-error-page div.dialog {
15
+ div.dialog {
16
16
  width: 95%;
17
17
  max-width: 33em;
18
18
  margin: 4em auto 0;
19
19
  }
20
20
 
21
- .rails-default-error-page div.dialog > div {
21
+ div.dialog > div {
22
22
  border: 1px solid #CCC;
23
23
  border-right-color: #999;
24
24
  border-left-color: #999;
@@ -31,13 +31,13 @@
31
31
  box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
32
  }
33
33
 
34
- .rails-default-error-page h1 {
34
+ h1 {
35
35
  font-size: 100%;
36
36
  color: #730E15;
37
37
  line-height: 1.5em;
38
38
  }
39
39
 
40
- .rails-default-error-page div.dialog > p {
40
+ div.dialog > p {
41
41
  margin: 0 0 1em;
42
42
  padding: 1em;
43
43
  background-color: #F7F7F7;
@@ -54,7 +54,7 @@
54
54
  </style>
55
55
  </head>
56
56
 
57
- <body class="rails-default-error-page">
57
+ <body>
58
58
  <!-- This file lives in public/404.html -->
59
59
  <div class="dialog">
60
60
  <div>
@@ -4,7 +4,7 @@
4
4
  <title>The change you wanted was rejected (422)</title>
5
5
  <meta name="viewport" content="width=device-width,initial-scale=1">
6
6
  <style>
7
- .rails-default-error-page {
7
+ body {
8
8
  background-color: #EFEFEF;
9
9
  color: #2E2F30;
10
10
  text-align: center;
@@ -12,13 +12,13 @@
12
12
  margin: 0;
13
13
  }
14
14
 
15
- .rails-default-error-page div.dialog {
15
+ div.dialog {
16
16
  width: 95%;
17
17
  max-width: 33em;
18
18
  margin: 4em auto 0;
19
19
  }
20
20
 
21
- .rails-default-error-page div.dialog > div {
21
+ div.dialog > div {
22
22
  border: 1px solid #CCC;
23
23
  border-right-color: #999;
24
24
  border-left-color: #999;
@@ -31,13 +31,13 @@
31
31
  box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
32
  }
33
33
 
34
- .rails-default-error-page h1 {
34
+ h1 {
35
35
  font-size: 100%;
36
36
  color: #730E15;
37
37
  line-height: 1.5em;
38
38
  }
39
39
 
40
- .rails-default-error-page div.dialog > p {
40
+ div.dialog > p {
41
41
  margin: 0 0 1em;
42
42
  padding: 1em;
43
43
  background-color: #F7F7F7;
@@ -54,7 +54,7 @@
54
54
  </style>
55
55
  </head>
56
56
 
57
- <body class="rails-default-error-page">
57
+ <body>
58
58
  <!-- This file lives in public/422.html -->
59
59
  <div class="dialog">
60
60
  <div>
@@ -4,7 +4,7 @@
4
4
  <title>We're sorry, but something went wrong (500)</title>
5
5
  <meta name="viewport" content="width=device-width,initial-scale=1">
6
6
  <style>
7
- .rails-default-error-page {
7
+ body {
8
8
  background-color: #EFEFEF;
9
9
  color: #2E2F30;
10
10
  text-align: center;
@@ -12,13 +12,13 @@
12
12
  margin: 0;
13
13
  }
14
14
 
15
- .rails-default-error-page div.dialog {
15
+ div.dialog {
16
16
  width: 95%;
17
17
  max-width: 33em;
18
18
  margin: 4em auto 0;
19
19
  }
20
20
 
21
- .rails-default-error-page div.dialog > div {
21
+ div.dialog > div {
22
22
  border: 1px solid #CCC;
23
23
  border-right-color: #999;
24
24
  border-left-color: #999;
@@ -31,13 +31,13 @@
31
31
  box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
32
  }
33
33
 
34
- .rails-default-error-page h1 {
34
+ h1 {
35
35
  font-size: 100%;
36
36
  color: #730E15;
37
37
  line-height: 1.5em;
38
38
  }
39
39
 
40
- .rails-default-error-page div.dialog > p {
40
+ div.dialog > p {
41
41
  margin: 0 0 1em;
42
42
  padding: 1em;
43
43
  background-color: #F7F7F7;
@@ -54,7 +54,7 @@
54
54
  </style>
55
55
  </head>
56
56
 
57
- <body class="rails-default-error-page">
57
+ <body>
58
58
  <!-- This file lives in public/500.html -->
59
59
  <div class="dialog">
60
60
  <div>
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-agent: *
5
+ # Disallow: /
File without changes
File without changes