logtail-rails 0.1.6 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +91 -4
  3. data/example-project/.gitattributes +7 -0
  4. data/example-project/.gitignore +35 -0
  5. data/example-project/Gemfile +74 -0
  6. data/example-project/README.md +211 -0
  7. data/example-project/Rakefile +6 -0
  8. data/example-project/app/assets/config/manifest.js +4 -0
  9. data/example-project/app/assets/images/.keep +0 -0
  10. data/example-project/app/assets/stylesheets/application.css +15 -0
  11. data/example-project/app/channels/application_cable/channel.rb +4 -0
  12. data/example-project/app/channels/application_cable/connection.rb +4 -0
  13. data/example-project/app/controllers/application_controller.rb +2 -0
  14. data/example-project/app/controllers/concerns/.keep +0 -0
  15. data/example-project/app/controllers/example_controller.rb +40 -0
  16. data/example-project/app/helpers/application_helper.rb +2 -0
  17. data/example-project/app/helpers/example_helper.rb +2 -0
  18. data/example-project/app/javascript/application.js +3 -0
  19. data/example-project/app/javascript/controllers/application.js +9 -0
  20. data/example-project/app/javascript/controllers/hello_controller.js +7 -0
  21. data/example-project/app/javascript/controllers/index.js +11 -0
  22. data/example-project/app/jobs/application_job.rb +7 -0
  23. data/example-project/app/mailers/application_mailer.rb +4 -0
  24. data/example-project/app/models/application_record.rb +3 -0
  25. data/example-project/app/models/concerns/.keep +0 -0
  26. data/example-project/app/views/example/index.html.erb +3 -0
  27. data/example-project/app/views/example/send_logs.html.erb +4 -0
  28. data/example-project/app/views/layouts/application.html.erb +15 -0
  29. data/example-project/app/views/layouts/mailer.html.erb +13 -0
  30. data/example-project/app/views/layouts/mailer.text.erb +1 -0
  31. data/example-project/bin/bundle +114 -0
  32. data/example-project/bin/importmap +4 -0
  33. data/example-project/bin/rails +4 -0
  34. data/example-project/bin/rake +4 -0
  35. data/example-project/bin/setup +33 -0
  36. data/example-project/config/application.rb +24 -0
  37. data/example-project/config/boot.rb +4 -0
  38. data/example-project/config/cable.yml +11 -0
  39. data/example-project/config/credentials.yml.enc +1 -0
  40. data/example-project/config/database.yml +25 -0
  41. data/example-project/config/environment.rb +5 -0
  42. data/example-project/config/environments/development.rb +70 -0
  43. data/example-project/config/environments/production.rb +93 -0
  44. data/example-project/config/environments/test.rb +60 -0
  45. data/example-project/config/importmap.rb +7 -0
  46. data/example-project/config/initializers/assets.rb +12 -0
  47. data/example-project/config/initializers/content_security_policy.rb +25 -0
  48. data/example-project/config/initializers/filter_parameter_logging.rb +8 -0
  49. data/example-project/config/initializers/inflections.rb +16 -0
  50. data/example-project/config/initializers/permissions_policy.rb +11 -0
  51. data/example-project/config/locales/en.yml +33 -0
  52. data/example-project/config/puma.rb +43 -0
  53. data/example-project/config/routes.rb +7 -0
  54. data/example-project/config/storage.yml +34 -0
  55. data/example-project/config.ru +6 -0
  56. data/example-project/db/seeds.rb +7 -0
  57. data/example-project/lib/assets/.keep +0 -0
  58. data/example-project/lib/tasks/.keep +0 -0
  59. data/example-project/log/.keep +0 -0
  60. data/example-project/public/404.html +67 -0
  61. data/example-project/public/422.html +67 -0
  62. data/example-project/public/500.html +66 -0
  63. data/example-project/public/apple-touch-icon-precomposed.png +0 -0
  64. data/example-project/public/apple-touch-icon.png +0 -0
  65. data/example-project/public/favicon.ico +0 -0
  66. data/example-project/public/robots.txt +1 -0
  67. data/example-project/storage/.keep +0 -0
  68. data/example-project/test/application_system_test_case.rb +5 -0
  69. data/example-project/test/channels/application_cable/connection_test.rb +11 -0
  70. data/example-project/test/controllers/.keep +0 -0
  71. data/example-project/test/fixtures/files/.keep +0 -0
  72. data/example-project/test/helpers/.keep +0 -0
  73. data/example-project/test/integration/.keep +0 -0
  74. data/example-project/test/mailers/.keep +0 -0
  75. data/example-project/test/models/.keep +0 -0
  76. data/example-project/test/system/.keep +0 -0
  77. data/example-project/test/test_helper.rb +13 -0
  78. data/example-project/tmp/.keep +0 -0
  79. data/example-project/tmp/pids/.keep +0 -0
  80. data/example-project/tmp/storage/.keep +0 -0
  81. data/example-project/vendor/.keep +0 -0
  82. data/example-project/vendor/javascript/.keep +0 -0
  83. data/lib/logtail-rails/log_entry.rb +14 -0
  84. data/lib/logtail-rails/logger.rb +19 -1
  85. data/lib/logtail-rails/overrides/active_support_tagged_logging.rb +1 -1
  86. data/lib/logtail-rails/version.rb +1 -1
  87. data/lib/logtail-rails.rb +6 -2
  88. data/logtail-rails.gemspec +6 -3
  89. metadata +115 -7
  90. data/lib/logtail-rails/tasks/logtail.rake +0 -57
@@ -0,0 +1,34 @@
1
+ test:
2
+ service: Disk
3
+ root: <%= Rails.root.join("tmp/storage") %>
4
+
5
+ local:
6
+ service: Disk
7
+ root: <%= Rails.root.join("storage") %>
8
+
9
+ # Use bin/rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
10
+ # amazon:
11
+ # service: S3
12
+ # access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
13
+ # secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
14
+ # region: us-east-1
15
+ # bucket: your_own_bucket-<%= Rails.env %>
16
+
17
+ # Remember not to checkin your GCS keyfile to a repository
18
+ # google:
19
+ # service: GCS
20
+ # project: your_project
21
+ # credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
22
+ # bucket: your_own_bucket-<%= Rails.env %>
23
+
24
+ # Use bin/rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
25
+ # microsoft:
26
+ # service: AzureStorage
27
+ # storage_account_name: your_account_name
28
+ # storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
29
+ # container: your_container_name-<%= Rails.env %>
30
+
31
+ # mirror:
32
+ # service: Mirror
33
+ # primary: local
34
+ # mirrors: [ amazon, google, microsoft ]
@@ -0,0 +1,6 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require_relative "config/environment"
4
+
5
+ run Rails.application
6
+ Rails.application.load_server
@@ -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 bin/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)
File without changes
File without changes
File without changes
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
File without changes
@@ -0,0 +1 @@
1
+ # See https://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
File without changes
@@ -0,0 +1,5 @@
1
+ require "test_helper"
2
+
3
+ class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
4
+ driven_by :selenium, using: :chrome, screen_size: [1400, 1400]
5
+ end
@@ -0,0 +1,11 @@
1
+ require "test_helper"
2
+
3
+ class ApplicationCable::ConnectionTest < ActionCable::Connection::TestCase
4
+ # test "connects with cookies" do
5
+ # cookies.signed[:user_id] = 42
6
+ #
7
+ # connect
8
+ #
9
+ # assert_equal connection.user_id, "42"
10
+ # end
11
+ end
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,13 @@
1
+ ENV["RAILS_ENV"] ||= "test"
2
+ require_relative "../config/environment"
3
+ require "rails/test_help"
4
+
5
+ class ActiveSupport::TestCase
6
+ # Run tests in parallel with specified workers
7
+ parallelize(workers: :number_of_processors)
8
+
9
+ # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
10
+ fixtures :all
11
+
12
+ # Add more helper methods to be used by all tests here...
13
+ end
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,14 @@
1
+ module Logtail
2
+ class LogEntry
3
+ alias to_hash_unfiltered to_hash
4
+
5
+ def to_hash(options = {})
6
+ hash = to_hash_unfiltered(options)
7
+ return hash unless defined?(ActiveSupport::ParameterFilter)
8
+
9
+ parameter_filter = ActiveSupport::ParameterFilter.new(Rails.application.config.filter_parameters)
10
+
11
+ parameter_filter.filter(hash)
12
+ end
13
+ end
14
+ end
@@ -15,6 +15,24 @@ module Logtail
15
15
  elsif defined?(::LoggerSilence)
16
16
  include ::LoggerSilence
17
17
  end
18
+
19
+ def self.create_logger(*io_devices_and_loggers)
20
+ logger = Logtail::Logger.new(*io_devices_and_loggers)
21
+
22
+ tagged_logging_supported = Rails::VERSION::MAJOR >= 7 || Rails::VERSION::MAJOR == 6 && Rails::VERSION::MINOR >= 1
23
+ logger = ::ActiveSupport::TaggedLogging.new(logger) if tagged_logging_supported
24
+
25
+ logger
26
+ end
27
+
28
+ def self.create_default_logger(source_token)
29
+ if ENV['LOGTAIL_SKIP_LOGS'].blank? && !Rails.env.test?
30
+ io_device = Logtail::LogDevices::HTTP.new(source_token)
31
+ else
32
+ io_device = STDOUT
33
+ end
34
+
35
+ self.create_logger(io_device)
36
+ end
18
37
  end
19
38
  end
20
-
@@ -63,4 +63,4 @@ if defined?(ActiveSupport::TaggedLogging)
63
63
  end
64
64
  end
65
65
  end
66
- end
66
+ end
@@ -1,7 +1,7 @@
1
1
  module Logtail
2
2
  module Integrations
3
3
  module Rails
4
- VERSION = "0.1.6"
4
+ VERSION = "0.1.8"
5
5
  end
6
6
  end
7
7
  end
data/lib/logtail-rails.rb CHANGED
@@ -1,7 +1,11 @@
1
1
  require "logtail-rails/overrides"
2
2
 
3
3
  require "logtail"
4
- require "rails"
4
+
5
+ require "rails/railtie"
6
+ require "active_record"
7
+ require "rack"
8
+
5
9
  require "logtail-rails/active_support_log_subscriber"
6
10
  require "logtail-rails/config"
7
11
  require "logtail-rails/railtie"
@@ -18,6 +22,7 @@ require "logtail-rails/action_dispatch"
18
22
  require "logtail-rails/action_view"
19
23
  require "logtail-rails/active_record"
20
24
 
25
+ require "logtail-rails/log_entry"
21
26
  require "logtail-rails/logger"
22
27
 
23
28
  module Logtail
@@ -61,4 +66,3 @@ module Logtail
61
66
  end
62
67
  end
63
68
  end
64
-
@@ -6,9 +6,9 @@ Gem::Specification.new do |spec|
6
6
  spec.name = "logtail-rails"
7
7
  spec.version = Logtail::Integrations::Rails::VERSION
8
8
  spec.authors = ["Logtail"]
9
- spec.email = ["hi@logtail.com"]
9
+ spec.email = ["hello@betterstack.com"]
10
10
 
11
- spec.summary = %q{Logtail.com Rails integration}
11
+ spec.summary = %q{Better Stack Rails integration}
12
12
  spec.homepage = "https://github.com/logtail/logtail-ruby-rails"
13
13
  spec.license = "ISC"
14
14
 
@@ -29,7 +29,10 @@ Gem::Specification.new do |spec|
29
29
 
30
30
  spec.add_runtime_dependency "logtail", "~> 0.1"
31
31
  spec.add_runtime_dependency "logtail-rack", "~> 0.1"
32
- spec.add_runtime_dependency "rails", ">= 3.0.0"
32
+
33
+ spec.add_runtime_dependency 'activerecord', '>= 3.0.0'
34
+ spec.add_runtime_dependency 'railties', '>= 3.0.0'
35
+ spec.add_runtime_dependency 'actionpack', '>= 3.0.0'
33
36
 
34
37
  spec.add_development_dependency "bundler", ">= 0.0"
35
38
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logtail-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Logtail
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-12-02 00:00:00.000000000 Z
11
+ date: 2023-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logtail
@@ -39,7 +39,35 @@ dependencies:
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0.1'
41
41
  - !ruby/object:Gem::Dependency
42
- name: rails
42
+ name: activerecord
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: 3.0.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: 3.0.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: railties
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: 3.0.0
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: 3.0.0
69
+ - !ruby/object:Gem::Dependency
70
+ name: actionpack
43
71
  requirement: !ruby/object:Gem::Requirement
44
72
  requirements:
45
73
  - - ">="
@@ -180,7 +208,7 @@ dependencies:
180
208
  version: 1.4.0
181
209
  description:
182
210
  email:
183
- - hi@logtail.com
211
+ - hello@betterstack.com
184
212
  executables: []
185
213
  extensions: []
186
214
  extra_rdoc_files: []
@@ -192,6 +220,86 @@ files:
192
220
  - LICENSE.md
193
221
  - README.md
194
222
  - Rakefile
223
+ - example-project/.gitattributes
224
+ - example-project/.gitignore
225
+ - example-project/Gemfile
226
+ - example-project/README.md
227
+ - example-project/Rakefile
228
+ - example-project/app/assets/config/manifest.js
229
+ - example-project/app/assets/images/.keep
230
+ - example-project/app/assets/stylesheets/application.css
231
+ - example-project/app/channels/application_cable/channel.rb
232
+ - example-project/app/channels/application_cable/connection.rb
233
+ - example-project/app/controllers/application_controller.rb
234
+ - example-project/app/controllers/concerns/.keep
235
+ - example-project/app/controllers/example_controller.rb
236
+ - example-project/app/helpers/application_helper.rb
237
+ - example-project/app/helpers/example_helper.rb
238
+ - example-project/app/javascript/application.js
239
+ - example-project/app/javascript/controllers/application.js
240
+ - example-project/app/javascript/controllers/hello_controller.js
241
+ - example-project/app/javascript/controllers/index.js
242
+ - example-project/app/jobs/application_job.rb
243
+ - example-project/app/mailers/application_mailer.rb
244
+ - example-project/app/models/application_record.rb
245
+ - example-project/app/models/concerns/.keep
246
+ - example-project/app/views/example/index.html.erb
247
+ - example-project/app/views/example/send_logs.html.erb
248
+ - example-project/app/views/layouts/application.html.erb
249
+ - example-project/app/views/layouts/mailer.html.erb
250
+ - example-project/app/views/layouts/mailer.text.erb
251
+ - example-project/bin/bundle
252
+ - example-project/bin/importmap
253
+ - example-project/bin/rails
254
+ - example-project/bin/rake
255
+ - example-project/bin/setup
256
+ - example-project/config.ru
257
+ - example-project/config/application.rb
258
+ - example-project/config/boot.rb
259
+ - example-project/config/cable.yml
260
+ - example-project/config/credentials.yml.enc
261
+ - example-project/config/database.yml
262
+ - example-project/config/environment.rb
263
+ - example-project/config/environments/development.rb
264
+ - example-project/config/environments/production.rb
265
+ - example-project/config/environments/test.rb
266
+ - example-project/config/importmap.rb
267
+ - example-project/config/initializers/assets.rb
268
+ - example-project/config/initializers/content_security_policy.rb
269
+ - example-project/config/initializers/filter_parameter_logging.rb
270
+ - example-project/config/initializers/inflections.rb
271
+ - example-project/config/initializers/permissions_policy.rb
272
+ - example-project/config/locales/en.yml
273
+ - example-project/config/puma.rb
274
+ - example-project/config/routes.rb
275
+ - example-project/config/storage.yml
276
+ - example-project/db/seeds.rb
277
+ - example-project/lib/assets/.keep
278
+ - example-project/lib/tasks/.keep
279
+ - example-project/log/.keep
280
+ - example-project/public/404.html
281
+ - example-project/public/422.html
282
+ - example-project/public/500.html
283
+ - example-project/public/apple-touch-icon-precomposed.png
284
+ - example-project/public/apple-touch-icon.png
285
+ - example-project/public/favicon.ico
286
+ - example-project/public/robots.txt
287
+ - example-project/storage/.keep
288
+ - example-project/test/application_system_test_case.rb
289
+ - example-project/test/channels/application_cable/connection_test.rb
290
+ - example-project/test/controllers/.keep
291
+ - example-project/test/fixtures/files/.keep
292
+ - example-project/test/helpers/.keep
293
+ - example-project/test/integration/.keep
294
+ - example-project/test/mailers/.keep
295
+ - example-project/test/models/.keep
296
+ - example-project/test/system/.keep
297
+ - example-project/test/test_helper.rb
298
+ - example-project/tmp/.keep
299
+ - example-project/tmp/pids/.keep
300
+ - example-project/tmp/storage/.keep
301
+ - example-project/vendor/.keep
302
+ - example-project/vendor/javascript/.keep
195
303
  - gemfiles/rails-3.0.gemfile
196
304
  - gemfiles/rails-3.1.gemfile
197
305
  - gemfiles/rails-3.2.gemfile
@@ -222,6 +330,7 @@ files:
222
330
  - lib/logtail-rails/config/action_view.rb
223
331
  - lib/logtail-rails/config/active_record.rb
224
332
  - lib/logtail-rails/error_event.rb
333
+ - lib/logtail-rails/log_entry.rb
225
334
  - lib/logtail-rails/logger.rb
226
335
  - lib/logtail-rails/overrides.rb
227
336
  - lib/logtail-rails/overrides/active_support_3_tagged_logging.rb
@@ -232,7 +341,6 @@ files:
232
341
  - lib/logtail-rails/rack_logger.rb
233
342
  - lib/logtail-rails/railtie.rb
234
343
  - lib/logtail-rails/session_context.rb
235
- - lib/logtail-rails/tasks/logtail.rake
236
344
  - lib/logtail-rails/version.rb
237
345
  - logtail-rails.gemspec
238
346
  homepage: https://github.com/logtail/logtail-ruby-rails
@@ -257,8 +365,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
257
365
  - !ruby/object:Gem::Version
258
366
  version: '0'
259
367
  requirements: []
260
- rubygems_version: 3.2.3
368
+ rubygems_version: 3.3.7
261
369
  signing_key:
262
370
  specification_version: 4
263
- summary: Logtail.com Rails integration
371
+ summary: Better Stack Rails integration
264
372
  test_files: []