File tree Expand file tree Collapse file tree 7 files changed +148
-107
lines changed Expand file tree Collapse file tree 7 files changed +148
-107
lines changed Original file line number Diff line number Diff line change @@ -2,3 +2,4 @@ ORGANIZATION_LOGIN=<INSERT-HERE>
2
2
GITHUB_APP_ID = <INSERT-HERE>
3
3
GITHUB_APP_SECRET = <INSERT-HERE>
4
4
NEW_RELIC_LICENSE_KEY = <INSERT-HERE>
5
+ SENTRY_DSN = <INSERT-HERE>
Original file line number Diff line number Diff line change 35
35
- name : Setup Ruby
36
36
uses : ruby/setup-ruby@v1
37
37
with :
38
- ruby-version : " 3.2.2 "
38
+ ruby-version : " 3.2.3 "
39
39
40
40
- name : Build App
41
41
run : |
Original file line number Diff line number Diff line change 35
35
- name : Setup Ruby
36
36
uses : ruby/setup-ruby@v1
37
37
with :
38
- ruby-version : " 3.2.2 "
38
+ ruby-version : " 3.2.3 "
39
39
bundler-cache : true
40
40
41
41
- name : Build App
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ def next?
4
4
File . basename ( __FILE__ ) == "Gemfile.next"
5
5
end
6
6
7
- ruby "3.2.2 "
7
+ ruby "3.2.3 "
8
8
9
9
git_source ( :github ) do |repo_name |
10
10
repo_name = "#{ repo_name } /#{ repo_name } " unless repo_name . include? ( "/" )
@@ -16,7 +16,7 @@ if next?
16
16
# to make it work with ruby 3.1
17
17
# read more about it here: https://github.com/rails/rails/issues/43998,
18
18
# and here: https://gist.github.com/claudiug/bdc2fb70b10d19513208c816588aed92
19
- gem "rails" , github : "rails/rails" , branch : "main "
19
+ gem "rails" , "~> 7.2.0 "
20
20
else
21
21
gem "rails" , "~> 7.1.0"
22
22
end
@@ -64,6 +64,9 @@ gem "rack-mini-profiler"
64
64
group :production do
65
65
gem "newrelic_rpm"
66
66
gem "terser"
67
+ gem "stackprof"
68
+ gem "sentry-ruby"
69
+ gem "sentry-rails"
67
70
end
68
71
69
72
group :development , :test do
Original file line number Diff line number Diff line change 215
215
next_rails (1.3.0 )
216
216
colorize (>= 0.8.1 )
217
217
nio4r (2.7.0 )
218
+ nokogiri (1.16.2-arm64-darwin )
219
+ racc (~> 1.4 )
218
220
nokogiri (1.16.2-x86_64-darwin )
219
221
racc (~> 1.4 )
220
222
nokogiri (1.16.2-x86_64-linux )
375
377
rexml (~> 3.2 , >= 3.2.5 )
376
378
rubyzip (>= 1.2.2 , < 3.0 )
377
379
websocket (~> 1.0 )
380
+ sentry-rails (5.22.1 )
381
+ railties (>= 5.0 )
382
+ sentry-ruby (~> 5.22.1 )
383
+ sentry-ruby (5.22.1 )
384
+ bigdecimal
385
+ concurrent-ruby (~> 1.0 , >= 1.0.2 )
378
386
shoulda-matchers (3.1.3 )
379
387
activesupport (>= 4.0.0 )
380
388
simplecov (0.22.0 )
394
402
actionpack (>= 5.2 )
395
403
activesupport (>= 5.2 )
396
404
sprockets (>= 3.0.0 )
405
+ stackprof (0.2.26 )
397
406
standard (1.31.1 )
398
407
language_server-protocol (~> 3.17.0.2 )
399
408
lint_roller (~> 1.0 )
442
451
zeitwerk (2.6.12 )
443
452
444
453
PLATFORMS
454
+ arm64-darwin-23
445
455
x86_64-darwin-21
446
456
x86_64-darwin-22
447
457
x86_64-linux
@@ -479,9 +489,12 @@ DEPENDENCIES
479
489
redcarpet (~> 3.5.1 )
480
490
rspec-rails (~> 6.0.3 )
481
491
sass-rails (~> 5.0 )
492
+ sentry-rails
493
+ sentry-ruby
482
494
shoulda-matchers (~> 3.1 )
483
495
simplecov
484
496
spring (= 3.0.0 )
497
+ stackprof
485
498
standardrb
486
499
terser
487
500
turbolinks (~> 5 )
@@ -490,7 +503,7 @@ DEPENDENCIES
490
503
webdrivers
491
504
492
505
RUBY VERSION
493
- ruby 3.2.2p53
506
+ ruby 3.2.3p157
494
507
495
508
BUNDLED WITH
496
509
2.4.13
You can’t perform that action at this time.
0 commit comments