Skip to content

Commit 15c8cbd

Browse files
committed
add rorvswild
1 parent 39a3aaf commit 15c8cbd

File tree

3 files changed

+57
-1
lines changed

3 files changed

+57
-1
lines changed

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,5 @@ gem "tailwindcss-rails", "~> 3.0"
7373

7474
gem "pagy", "< 43"
7575
gem "whenever"
76+
77+
gem "rorvswild", "~> 1.10"

Gemfile.lock

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,7 @@ GEM
336336
actionpack (>= 5.2)
337337
railties (>= 5.2)
338338
rexml (3.3.8)
339+
rorvswild (1.10.1)
339340
rubocop (1.67.0)
340341
json (~> 2.3)
341342
language_server-protocol (>= 3.17.0)
@@ -471,6 +472,7 @@ DEPENDENCIES
471472
progressbar (~> 1.13)
472473
puma (>= 5.0)
473474
rails (~> 7.2.1)
475+
rorvswild (~> 1.10)
474476
rubocop-rails-omakase
475477
selenium-webdriver
476478
sprockets-rails
@@ -483,4 +485,4 @@ DEPENDENCIES
483485
whenever
484486

485487
BUNDLED WITH
486-
2.5.10
488+
4.0.4

config/rorvswild.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
development:
2+
# Widget position
3+
# widget: top-left, top-right, bottom-left, bottom-right or hidden
4+
5+
# Open files in your text editor by clicking from the local widget.
6+
# VSCode: vscode://file${path}:${line}
7+
# Sublime: subl://${path}:${line}
8+
# It should be set with an env variable when developers are not using the same editor.
9+
editor_url: <%= ENV.fetch("RORVSWILD_EDITOR_URL", "vscode://file${path}:${line}") %>
10+
11+
production:
12+
api_key: M0FoaT4hFo8Gir9KJm6P
13+
# ignore_requests: # Do not monitor the following actions
14+
# - SecretController#index
15+
# ignore_jobs: # Do not monitor the following jobs
16+
# - SecretJob
17+
# ignore_exceptions: # Do not record the following exceptions
18+
# - ActionController::RoutingError # By default to ignore 404
19+
# ignore_plugins:
20+
# - ActionController
21+
# - ActionMailer
22+
# - ActionView
23+
# - ActiveJob
24+
# - ActiveRecord
25+
# - DelayedJob
26+
# - Elasticsearch
27+
# - Mongo
28+
# - NetHttp
29+
# - Redis
30+
# - Resque
31+
# - Sidekiq
32+
#
33+
# logger: log/rorvswild.log # By default it uses Rails.logger or Logger.new(STDOUT)
34+
#
35+
# # Deployment tracking is working without any actions from your part if the Rails app
36+
# # is inside a Git repository, is deployed via Capistrano.
37+
# # In the other cases, you can provide the following details.
38+
# deployment:
39+
# revision: <%= "Anything that will return the deployment version" %> # Mandatory
40+
# description: <%= "Eventually if you have a description such as a Git message" %>
41+
# author: <%= "Author's name of the deployment" %>
42+
# email: <%= "emailOf@theAuthor.example" %>
43+
#
44+
# Sampling allows to send a fraction of jobs and requests.
45+
# If your app is sending hundred of millions of requests per month,
46+
# you will probably get the same precision if you send only a fraction of it.
47+
# Thus, it decreases the bill at the end of the month. It's also a mitigation if
48+
# your app is a target of a DoS. There are 2 parameters to dissociate requests and jobs.
49+
# Indeed, for an app handling a lot of request but very few jobs, it makes sens to sample
50+
# the former but not the latter.
51+
# request_sampling_rate: 0.25 # 25% of requests are sent
52+
# job_sampling_rate: 0.5 # 50% of jobs are sent

0 commit comments

Comments
 (0)