my_api_client 1.3.1 → 2.0.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.
- checksums.yaml +4 -4
- data/.dockerignore +8 -0
- data/.envrc.skeleton +0 -1
- data/.github/dependabot.yml +82 -7
- data/.github/workflows/ci.yml +334 -0
- data/.github/workflows/dependabot-auto-merge.yml +96 -0
- data/.github/workflows/release.yml +33 -0
- data/.github/workflows/rubocop_challenge.yml +33 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +1 -1
- data/.ruby-version +1 -1
- data/AGENTS.md +128 -0
- data/CHANGELOG.md +54 -2
- data/CLAUDE.md +6 -0
- data/Dockerfile +22 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +67 -59
- data/README.md +398 -62
- data/docker-compose.yml +29 -0
- data/docs/runbooks/dependabot_pr_auto_merge.md +113 -0
- data/gemfiles/rails_7.2.gemfile +1 -1
- data/gemfiles/{rails_7.1.gemfile → rails_8.0.gemfile} +2 -2
- data/gemfiles/{rails_6.1.gemfile → rails_8.1.gemfile} +2 -2
- data/lib/my_api_client/default_error_handlers.rb +1 -1
- data/lib/my_api_client/errors/client_error.rb +5 -1
- data/lib/my_api_client/integrations/bugsnag.rb +1 -1
- data/lib/my_api_client/version.rb +1 -1
- data/lib/my_api_client.rb +1 -1
- data/my_api/.ruby-version +1 -1
- data/my_api/AGENTS.md +35 -0
- data/my_api/Dockerfile +25 -0
- data/my_api/Gemfile +5 -16
- data/my_api/Gemfile.lock +263 -228
- data/my_api/README.md +36 -25
- data/my_api/Rakefile +3 -2
- data/my_api/app/controllers/application_controller.rb +1 -2
- data/my_api/app/controllers/error_controller.rb +2 -2
- data/my_api/app/controllers/header_controller.rb +6 -3
- data/my_api/app/controllers/pagination_controller.rb +5 -15
- data/my_api/app/controllers/rest_controller.rb +12 -16
- data/my_api/app/controllers/status_controller.rb +3 -4
- data/my_api/config/application.rb +12 -67
- data/{rails_app/rails_6.1 → my_api}/config/boot.rb +1 -1
- data/{rails_app/rails_7.1 → my_api}/config/environment.rb +0 -2
- data/my_api/config/environments/development.rb +6 -6
- data/my_api/config/environments/production.rb +5 -8
- data/my_api/config/environments/test.rb +5 -6
- data/my_api/config/routes.rb +2 -10
- data/my_api/config.ru +2 -4
- data/my_api/public/index.html +10 -90
- data/{rails_app/rails_7.0 → my_api}/spec/rails_helper.rb +3 -4
- data/my_api/spec/requests/error_controller_spec.rb +18 -0
- data/my_api/spec/requests/pagination_controller_spec.rb +22 -0
- data/my_api/spec/requests/rest_controller_spec.rb +22 -0
- data/my_api/spec/requests/status_controller_spec.rb +20 -0
- data/my_api/spec/spec_helper.rb +15 -23
- data/my_api_client.gemspec +2 -2
- data/rails_app/AGENTS.md +13 -0
- data/rails_app/rails_7.2/Dockerfile +1 -1
- data/rails_app/rails_7.2/Gemfile +2 -0
- data/rails_app/rails_7.2/Gemfile.lock +143 -122
- data/rails_app/{rails_7.1 → rails_8.0}/.dockerignore +16 -2
- data/rails_app/{rails_6.1 → rails_8.0}/.gitattributes +2 -1
- data/rails_app/rails_8.0/.github/workflows/ci.yml +39 -0
- data/rails_app/{rails_6.1 → rails_8.0}/.gitignore +11 -7
- data/rails_app/rails_8.0/.rubocop.yml +8 -0
- data/rails_app/rails_8.0/.ruby-version +1 -0
- data/rails_app/{rails_7.1 → rails_8.0}/Dockerfile +28 -18
- data/rails_app/rails_8.0/Gemfile +15 -0
- data/rails_app/rails_8.0/Gemfile.lock +286 -0
- data/rails_app/{rails_6.1 → rails_8.0}/Rakefile +1 -3
- data/rails_app/{rails_7.1 → rails_8.0}/app/controllers/application_controller.rb +0 -2
- data/rails_app/rails_8.0/app/jobs/application_job.rb +7 -0
- data/rails_app/rails_8.0/app/mailers/application_mailer.rb +4 -0
- data/rails_app/{rails_7.0 → rails_8.0}/app/models/application_record.rb +0 -2
- data/rails_app/rails_8.0/app/views/layouts/mailer.html.erb +13 -0
- data/rails_app/rails_8.0/app/views/layouts/mailer.text.erb +1 -0
- data/rails_app/rails_8.0/bin/brakeman +7 -0
- data/rails_app/rails_8.0/bin/dev +2 -0
- data/rails_app/rails_8.0/bin/docker-entrypoint +14 -0
- data/rails_app/rails_8.0/bin/rails +4 -0
- data/rails_app/rails_8.0/bin/rake +4 -0
- data/rails_app/rails_8.0/bin/rubocop +8 -0
- data/rails_app/{rails_7.1 → rails_8.0}/bin/setup +11 -12
- data/rails_app/rails_8.0/bin/thrust +5 -0
- data/rails_app/{rails_7.1 → rails_8.0}/config/application.rb +14 -16
- data/rails_app/rails_8.0/config/boot.rb +3 -0
- data/rails_app/rails_8.0/config/cable.yml +10 -0
- data/rails_app/rails_8.0/config/credentials.yml.enc +1 -0
- data/rails_app/{rails_7.1 → rails_8.0}/config/database.yml +18 -2
- data/rails_app/{rails_6.1 → rails_8.0}/config/environment.rb +1 -3
- data/rails_app/rails_8.0/config/environments/development.rb +70 -0
- data/rails_app/rails_8.0/config/environments/production.rb +86 -0
- data/rails_app/{rails_7.1 → rails_8.0}/config/environments/test.rb +16 -19
- data/rails_app/{rails_7.1 → rails_8.0}/config/initializers/cors.rb +0 -1
- data/rails_app/{rails_7.1 → rails_8.0}/config/initializers/filter_parameter_logging.rb +2 -4
- data/rails_app/{rails_7.0 → rails_8.0}/config/initializers/inflections.rb +0 -1
- data/rails_app/rails_8.0/config/puma.rb +41 -0
- data/rails_app/{rails_7.1 → rails_8.0}/config/routes.rb +1 -3
- data/rails_app/rails_8.0/config/storage.yml +34 -0
- data/rails_app/{rails_7.1 → rails_8.0}/config.ru +1 -3
- data/rails_app/{rails_7.1 → rails_8.0}/db/seeds.rb +0 -1
- data/rails_app/{rails_7.1 → rails_8.0}/spec/rails_helper.rb +1 -1
- data/rails_app/rails_8.1/.dockerignore +45 -0
- data/rails_app/rails_8.1/.gitattributes +9 -0
- data/rails_app/rails_8.1/.github/workflows/ci.yml +52 -0
- data/rails_app/rails_8.1/.gitignore +33 -0
- data/rails_app/rails_8.1/.rspec +1 -0
- data/rails_app/rails_8.1/.rubocop.yml +8 -0
- data/rails_app/rails_8.1/.ruby-version +1 -0
- data/rails_app/rails_8.1/Dockerfile +68 -0
- data/rails_app/rails_8.1/Gemfile +15 -0
- data/rails_app/rails_8.1/Gemfile.lock +289 -0
- data/rails_app/{rails_7.0 → rails_8.1}/Rakefile +1 -3
- data/rails_app/{rails_6.1 → rails_8.1}/app/controllers/application_controller.rb +0 -2
- data/rails_app/rails_8.1/app/jobs/application_job.rb +7 -0
- data/rails_app/rails_8.1/app/mailers/application_mailer.rb +4 -0
- data/rails_app/{rails_7.1 → rails_8.1}/app/models/application_record.rb +0 -2
- data/rails_app/rails_8.1/app/views/layouts/mailer.html.erb +13 -0
- data/rails_app/rails_8.1/app/views/layouts/mailer.text.erb +1 -0
- data/rails_app/rails_8.1/bin/brakeman +7 -0
- data/rails_app/rails_8.1/bin/bundler-audit +6 -0
- data/rails_app/rails_8.1/bin/ci +6 -0
- data/rails_app/rails_8.1/bin/dev +2 -0
- data/rails_app/{rails_7.1 → rails_8.1}/bin/docker-entrypoint +1 -1
- data/rails_app/rails_8.1/bin/rails +4 -0
- data/rails_app/rails_8.1/bin/rake +4 -0
- data/rails_app/rails_8.1/bin/rubocop +8 -0
- data/rails_app/{rails_7.0 → rails_8.1}/bin/setup +13 -13
- data/rails_app/rails_8.1/bin/thrust +5 -0
- data/rails_app/{rails_6.1 → rails_8.1}/config/application.rb +19 -17
- data/rails_app/rails_8.1/config/boot.rb +3 -0
- data/rails_app/rails_8.1/config/bundler-audit.yml +5 -0
- data/rails_app/rails_8.1/config/cable.yml +10 -0
- data/rails_app/rails_8.1/config/ci.rb +19 -0
- data/rails_app/rails_8.1/config/credentials.yml.enc +1 -0
- data/rails_app/rails_8.1/config/database.yml +40 -0
- data/rails_app/{rails_7.0 → rails_8.1}/config/environment.rb +1 -3
- data/rails_app/rails_8.1/config/environments/development.rb +73 -0
- data/rails_app/rails_8.1/config/environments/production.rb +86 -0
- data/rails_app/rails_8.1/config/environments/test.rb +53 -0
- data/rails_app/{rails_7.0 → rails_8.1}/config/initializers/cors.rb +1 -2
- data/rails_app/rails_8.1/config/initializers/filter_parameter_logging.rb +8 -0
- data/rails_app/{rails_7.1 → rails_8.1}/config/initializers/inflections.rb +0 -1
- data/rails_app/rails_8.1/config/locales/en.yml +31 -0
- data/rails_app/rails_8.1/config/puma.rb +42 -0
- data/rails_app/rails_8.1/config/routes.rb +10 -0
- data/rails_app/rails_8.1/config/storage.yml +27 -0
- data/rails_app/{rails_7.0 → rails_8.1}/config.ru +1 -3
- data/rails_app/rails_8.1/db/seeds.rb +9 -0
- data/rails_app/{rails_6.1 → rails_8.1}/spec/rails_helper.rb +1 -2
- metadata +139 -136
- data/.circleci/config.yml +0 -344
- data/README.jp.md +0 -785
- data/gemfiles/rails_7.0.gemfile +0 -15
- data/my_api/.envrc.skeleton +0 -3
- data/my_api/.jetskeep +0 -1
- data/my_api/Procfile +0 -7
- data/my_api/app/helpers/application_helper.rb +0 -5
- data/my_api/app/jobs/application_job.rb +0 -7
- data/my_api/app/models/application_item.rb +0 -5
- data/my_api/config/dynamodb.yml +0 -22
- data/my_api/spec/controllers/error_controller_spec.rb +0 -43
- data/my_api/spec/controllers/header_controller_spec.rb +0 -33
- data/my_api/spec/controllers/pagination_controller_spec.rb +0 -73
- data/my_api/spec/controllers/rest_controller_spec.rb +0 -99
- data/my_api/spec/controllers/status_controller_spec.rb +0 -47
- data/my_api/spec/fixtures/payloads/posts-index.json +0 -51
- data/my_api/spec/fixtures/payloads/posts-show.json +0 -53
- data/rails_app/rails_6.1/.rspec +0 -3
- data/rails_app/rails_6.1/Gemfile +0 -17
- data/rails_app/rails_6.1/Gemfile.lock +0 -195
- data/rails_app/rails_6.1/app/models/application_record.rb +0 -5
- data/rails_app/rails_6.1/bin/bundle +0 -122
- data/rails_app/rails_6.1/bin/rails +0 -6
- data/rails_app/rails_6.1/bin/rake +0 -6
- data/rails_app/rails_6.1/bin/setup +0 -35
- data/rails_app/rails_6.1/config/credentials.yml.enc +0 -1
- data/rails_app/rails_6.1/config/database.yml +0 -25
- data/rails_app/rails_6.1/config/environments/development.rb +0 -59
- data/rails_app/rails_6.1/config/environments/production.rb +0 -97
- data/rails_app/rails_6.1/config/environments/test.rb +0 -51
- data/rails_app/rails_6.1/config/initializers/application_controller_renderer.rb +0 -9
- data/rails_app/rails_6.1/config/initializers/backtrace_silencers.rb +0 -10
- data/rails_app/rails_6.1/config/initializers/cors.rb +0 -17
- data/rails_app/rails_6.1/config/initializers/filter_parameter_logging.rb +0 -8
- data/rails_app/rails_6.1/config/initializers/inflections.rb +0 -17
- data/rails_app/rails_6.1/config/initializers/mime_types.rb +0 -5
- data/rails_app/rails_6.1/config/initializers/wrap_parameters.rb +0 -16
- data/rails_app/rails_6.1/config/locales/en.yml +0 -33
- data/rails_app/rails_6.1/config/routes.rb +0 -5
- data/rails_app/rails_6.1/config.ru +0 -8
- data/rails_app/rails_6.1/db/seeds.rb +0 -8
- data/rails_app/rails_7.0/Gemfile +0 -13
- data/rails_app/rails_7.0/Gemfile.lock +0 -212
- data/rails_app/rails_7.0/app/controllers/application_controller.rb +0 -4
- data/rails_app/rails_7.0/bin/bundle +0 -122
- data/rails_app/rails_7.0/bin/rails +0 -6
- data/rails_app/rails_7.0/bin/rake +0 -6
- data/rails_app/rails_7.0/config/application.rb +0 -41
- data/rails_app/rails_7.0/config/boot.rb +0 -5
- data/rails_app/rails_7.0/config/credentials.yml.enc +0 -1
- data/rails_app/rails_7.0/config/database.yml +0 -25
- data/rails_app/rails_7.0/config/environments/development.rb +0 -58
- data/rails_app/rails_7.0/config/environments/production.rb +0 -70
- data/rails_app/rails_7.0/config/environments/test.rb +0 -52
- data/rails_app/rails_7.0/config/initializers/filter_parameter_logging.rb +0 -8
- data/rails_app/rails_7.0/config/locales/en.yml +0 -33
- data/rails_app/rails_7.0/config/routes.rb +0 -8
- data/rails_app/rails_7.0/db/seeds.rb +0 -8
- data/rails_app/rails_7.1/Gemfile +0 -16
- data/rails_app/rails_7.1/Gemfile.lock +0 -241
- data/rails_app/rails_7.1/README.md +0 -24
- data/rails_app/rails_7.1/Rakefile +0 -8
- data/rails_app/rails_7.1/bin/bundle +0 -122
- data/rails_app/rails_7.1/bin/rails +0 -6
- data/rails_app/rails_7.1/bin/rake +0 -6
- data/rails_app/rails_7.1/config/boot.rb +0 -5
- data/rails_app/rails_7.1/config/credentials.yml.enc +0 -1
- data/rails_app/rails_7.1/config/environments/development.rb +0 -58
- data/rails_app/rails_7.1/config/environments/production.rb +0 -74
- data/rails_app/rails_7.1/config/puma.rb +0 -46
- data/rails_app/rails_7.1/public/robots.txt +0 -2
- data/rails_app/rails_7.1/spec/spec_helper.rb +0 -13
- data/rails_app/rails_7.1/vendor/.keep +0 -0
- data/rails_app/rails_7.2/.github/dependabot.yml +0 -12
- /data/rails_app/{rails_7.1 → rails_8.0}/.rspec +0 -0
- /data/rails_app/{rails_6.1 → rails_8.0}/README.md +0 -0
- /data/rails_app/{rails_6.1 → rails_8.0}/app/controllers/concerns/.keep +0 -0
- /data/rails_app/{rails_6.1/app/javascript → rails_8.0/app/models/concerns}/.keep +0 -0
- /data/rails_app/{rails_7.1 → rails_8.0}/config/locales/en.yml +0 -0
- /data/rails_app/{rails_6.1/app/models/concerns → rails_8.0/lib/tasks}/.keep +0 -0
- /data/rails_app/{rails_6.1/lib/tasks → rails_8.0/log}/.keep +0 -0
- /data/rails_app/{rails_6.1 → rails_8.0}/public/robots.txt +0 -0
- /data/rails_app/{rails_6.1/tmp → rails_8.0/script}/.keep +0 -0
- /data/rails_app/{rails_6.1 → rails_8.0}/spec/spec_helper.rb +0 -0
- /data/rails_app/{rails_6.1/tmp/pids → rails_8.0/storage}/.keep +0 -0
- /data/rails_app/{rails_6.1 → rails_8.0}/vendor/.keep +0 -0
- /data/rails_app/{rails_7.0 → rails_8.1}/README.md +0 -0
- /data/rails_app/{rails_7.1 → rails_8.1}/app/controllers/concerns/.keep +0 -0
- /data/rails_app/{rails_7.1 → rails_8.1}/app/models/concerns/.keep +0 -0
- /data/rails_app/{rails_7.1 → rails_8.1}/lib/tasks/.keep +0 -0
- /data/rails_app/{rails_7.1/storage → rails_8.1/log}/.keep +0 -0
- /data/rails_app/{rails_7.0 → rails_8.1}/public/robots.txt +0 -0
- /data/rails_app/{rails_7.1/tmp → rails_8.1/script}/.keep +0 -0
- /data/rails_app/{rails_7.0 → rails_8.1}/spec/spec_helper.rb +0 -0
- /data/rails_app/{rails_7.1/tmp/pids → rails_8.1/storage}/.keep +0 -0
- /data/rails_app/{rails_7.1/tmp/storage → rails_8.1/vendor}/.keep +0 -0
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
require "active_support/core_ext/integer/time"
|
|
2
|
+
|
|
3
|
+
Rails.application.configure do
|
|
4
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
|
5
|
+
|
|
6
|
+
# Code is not reloaded between requests.
|
|
7
|
+
config.enable_reloading = false
|
|
8
|
+
|
|
9
|
+
# Eager load code on boot for better performance and memory savings (ignored by Rake tasks).
|
|
10
|
+
config.eager_load = true
|
|
11
|
+
|
|
12
|
+
# Full error reports are disabled.
|
|
13
|
+
config.consider_all_requests_local = false
|
|
14
|
+
|
|
15
|
+
# Cache assets for far-future expiry since they are all digest stamped.
|
|
16
|
+
config.public_file_server.headers = { "cache-control" => "public, max-age=#{1.year.to_i}" }
|
|
17
|
+
|
|
18
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
|
19
|
+
# config.asset_host = "http://assets.example.com"
|
|
20
|
+
|
|
21
|
+
# Store uploaded files on the local file system (see config/storage.yml for options).
|
|
22
|
+
config.active_storage.service = :local
|
|
23
|
+
|
|
24
|
+
# Assume all access to the app is happening through a SSL-terminating reverse proxy.
|
|
25
|
+
config.assume_ssl = true
|
|
26
|
+
|
|
27
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
|
28
|
+
config.force_ssl = true
|
|
29
|
+
|
|
30
|
+
# Skip http-to-https redirect for the default health check endpoint.
|
|
31
|
+
# config.ssl_options = { redirect: { exclude: ->(request) { request.path == "/up" } } }
|
|
32
|
+
|
|
33
|
+
# Log to STDOUT with the current request id as a default log tag.
|
|
34
|
+
config.log_tags = [ :request_id ]
|
|
35
|
+
config.logger = ActiveSupport::TaggedLogging.logger(STDOUT)
|
|
36
|
+
|
|
37
|
+
# Change to "debug" to log everything (including potentially personally-identifiable information!)
|
|
38
|
+
config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info")
|
|
39
|
+
|
|
40
|
+
# Prevent health checks from clogging up the logs.
|
|
41
|
+
config.silence_healthcheck_path = "/up"
|
|
42
|
+
|
|
43
|
+
# Don't log any deprecations.
|
|
44
|
+
config.active_support.report_deprecations = false
|
|
45
|
+
|
|
46
|
+
# Replace the default in-process memory cache store with a durable alternative.
|
|
47
|
+
# config.cache_store = :mem_cache_store
|
|
48
|
+
|
|
49
|
+
# Replace the default in-process and non-durable queuing backend for Active Job.
|
|
50
|
+
# config.active_job.queue_adapter = :resque
|
|
51
|
+
|
|
52
|
+
# Ignore bad email addresses and do not raise email delivery errors.
|
|
53
|
+
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
|
54
|
+
# config.action_mailer.raise_delivery_errors = false
|
|
55
|
+
|
|
56
|
+
# Set host to be used by links generated in mailer templates.
|
|
57
|
+
config.action_mailer.default_url_options = { host: "example.com" }
|
|
58
|
+
|
|
59
|
+
# Specify outgoing SMTP server. Remember to add smtp/* credentials via rails credentials:edit.
|
|
60
|
+
# config.action_mailer.smtp_settings = {
|
|
61
|
+
# user_name: Rails.application.credentials.dig(:smtp, :user_name),
|
|
62
|
+
# password: Rails.application.credentials.dig(:smtp, :password),
|
|
63
|
+
# address: "smtp.example.com",
|
|
64
|
+
# port: 587,
|
|
65
|
+
# authentication: :plain
|
|
66
|
+
# }
|
|
67
|
+
|
|
68
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
|
69
|
+
# the I18n.default_locale when a translation cannot be found).
|
|
70
|
+
config.i18n.fallbacks = true
|
|
71
|
+
|
|
72
|
+
# Do not dump schema after migrations.
|
|
73
|
+
config.active_record.dump_schema_after_migration = false
|
|
74
|
+
|
|
75
|
+
# Only use :id for inspections in production.
|
|
76
|
+
config.active_record.attributes_for_inspect = [ :id ]
|
|
77
|
+
|
|
78
|
+
# Enable DNS rebinding protection and other `Host` header attacks.
|
|
79
|
+
# config.hosts = [
|
|
80
|
+
# "example.com", # Allow requests from example.com
|
|
81
|
+
# /.*\.example\.com/ # Allow requests from subdomains like `www.example.com`
|
|
82
|
+
# ]
|
|
83
|
+
#
|
|
84
|
+
# Skip DNS rebinding protection for the default health check endpoint.
|
|
85
|
+
# config.host_authorization = { exclude: ->(request) { request.path == "/up" } }
|
|
86
|
+
end
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
require 'active_support/core_ext/integer/time'
|
|
4
|
-
|
|
5
1
|
# The test environment is used exclusively to run your application's
|
|
6
2
|
# test suite. You never need to work with it otherwise. Remember that
|
|
7
3
|
# your test database is "scratch space" for the test suite and is wiped
|
|
@@ -17,17 +13,13 @@ Rails.application.configure do
|
|
|
17
13
|
# this is usually not necessary, and can slow down your test suite. However, it's
|
|
18
14
|
# recommended that you enable it in continuous integration systems to ensure eager
|
|
19
15
|
# loading is working properly before deploying your code.
|
|
20
|
-
config.eager_load = ENV[
|
|
16
|
+
config.eager_load = ENV["CI"].present?
|
|
21
17
|
|
|
22
|
-
# Configure public file server for tests with
|
|
23
|
-
config.public_file_server.
|
|
24
|
-
config.public_file_server.headers = {
|
|
25
|
-
'Cache-Control' => "public, max-age=#{1.hour.to_i}",
|
|
26
|
-
}
|
|
18
|
+
# Configure public file server for tests with cache-control for performance.
|
|
19
|
+
config.public_file_server.headers = { "cache-control" => "public, max-age=3600" }
|
|
27
20
|
|
|
28
|
-
# Show full error reports
|
|
21
|
+
# Show full error reports.
|
|
29
22
|
config.consider_all_requests_local = true
|
|
30
|
-
config.action_controller.perform_caching = false
|
|
31
23
|
config.cache_store = :null_store
|
|
32
24
|
|
|
33
25
|
# Render exception templates for rescuable exceptions and raise for other exceptions.
|
|
@@ -36,14 +28,19 @@ Rails.application.configure do
|
|
|
36
28
|
# Disable request forgery protection in test environment.
|
|
37
29
|
config.action_controller.allow_forgery_protection = false
|
|
38
30
|
|
|
39
|
-
#
|
|
40
|
-
config.
|
|
31
|
+
# Store uploaded files on the local file system in a temporary directory.
|
|
32
|
+
config.active_storage.service = :test
|
|
41
33
|
|
|
42
|
-
#
|
|
43
|
-
|
|
34
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
|
35
|
+
# The :test delivery method accumulates sent emails in the
|
|
36
|
+
# ActionMailer::Base.deliveries array.
|
|
37
|
+
config.action_mailer.delivery_method = :test
|
|
44
38
|
|
|
45
|
-
#
|
|
46
|
-
config.
|
|
39
|
+
# Set host to be used by links generated in mailer templates.
|
|
40
|
+
config.action_mailer.default_url_options = { host: "example.com" }
|
|
41
|
+
|
|
42
|
+
# Print deprecation notices to the stderr.
|
|
43
|
+
config.active_support.deprecation = :stderr
|
|
47
44
|
|
|
48
45
|
# Raises error for missing translations.
|
|
49
46
|
# config.i18n.raise_on_missing_translations = true
|
|
@@ -51,6 +48,6 @@ Rails.application.configure do
|
|
|
51
48
|
# Annotate rendered view with file names.
|
|
52
49
|
# config.action_view.annotate_rendered_view_with_filenames = true
|
|
53
50
|
|
|
54
|
-
# Raise error when a before_action's only/except options reference missing actions
|
|
51
|
+
# Raise error when a before_action's only/except options reference missing actions.
|
|
55
52
|
config.action_controller.raise_on_missing_callback_actions = true
|
|
56
53
|
end
|
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
1
|
# Be sure to restart your server when you modify this file.
|
|
4
2
|
|
|
5
3
|
# Configure parameters to be partially matched (e.g. passw matches password) and filtered from the log file.
|
|
6
4
|
# Use this to limit dissemination of sensitive information.
|
|
7
5
|
# See the ActiveSupport::ParameterFilter documentation for supported notations and behaviors.
|
|
8
|
-
Rails.application.config.filter_parameters +=
|
|
9
|
-
passw secret token _key crypt salt certificate otp ssn
|
|
6
|
+
Rails.application.config.filter_parameters += [
|
|
7
|
+
:passw, :email, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn, :cvv, :cvc
|
|
10
8
|
]
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# This configuration file will be evaluated by Puma. The top-level methods that
|
|
2
|
+
# are invoked here are part of Puma's configuration DSL. For more information
|
|
3
|
+
# about methods provided by the DSL, see https://puma.io/puma/Puma/DSL.html.
|
|
4
|
+
#
|
|
5
|
+
# Puma starts a configurable number of processes (workers) and each process
|
|
6
|
+
# serves each request in a thread from an internal thread pool.
|
|
7
|
+
#
|
|
8
|
+
# You can control the number of workers using ENV["WEB_CONCURRENCY"]. You
|
|
9
|
+
# should only set this value when you want to run 2 or more workers. The
|
|
10
|
+
# default is already 1.
|
|
11
|
+
#
|
|
12
|
+
# The ideal number of threads per worker depends both on how much time the
|
|
13
|
+
# application spends waiting for IO operations and on how much you wish to
|
|
14
|
+
# prioritize throughput over latency.
|
|
15
|
+
#
|
|
16
|
+
# As a rule of thumb, increasing the number of threads will increase how much
|
|
17
|
+
# traffic a given process can handle (throughput), but due to CRuby's
|
|
18
|
+
# Global VM Lock (GVL) it has diminishing returns and will degrade the
|
|
19
|
+
# response time (latency) of the application.
|
|
20
|
+
#
|
|
21
|
+
# The default is set to 3 threads as it's deemed a decent compromise between
|
|
22
|
+
# throughput and latency for the average Rails application.
|
|
23
|
+
#
|
|
24
|
+
# Any libraries that use a connection pool or another resource pool should
|
|
25
|
+
# be configured to provide at least as many connections as the number of
|
|
26
|
+
# threads. This includes Active Record's `pool` parameter in `database.yml`.
|
|
27
|
+
threads_count = ENV.fetch("RAILS_MAX_THREADS", 3)
|
|
28
|
+
threads threads_count, threads_count
|
|
29
|
+
|
|
30
|
+
# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
|
|
31
|
+
port ENV.fetch("PORT", 3000)
|
|
32
|
+
|
|
33
|
+
# Allow puma to be restarted by `bin/rails restart` command.
|
|
34
|
+
plugin :tmp_restart
|
|
35
|
+
|
|
36
|
+
# Run the Solid Queue supervisor inside of Puma for single-server deployments
|
|
37
|
+
plugin :solid_queue if ENV["SOLID_QUEUE_IN_PUMA"]
|
|
38
|
+
|
|
39
|
+
# Specify the PID file. Defaults to tmp/pids/server.pid in development.
|
|
40
|
+
# In other environments, only set the PID file if requested.
|
|
41
|
+
pidfile ENV["PIDFILE"] if ENV["PIDFILE"]
|
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
1
|
Rails.application.routes.draw do
|
|
4
2
|
# Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html
|
|
5
3
|
|
|
6
4
|
# Reveal health status on /up that returns 200 if the app boots with no exceptions, otherwise 500.
|
|
7
5
|
# Can be used by load balancers and uptime monitors to verify that the app is live.
|
|
8
|
-
get
|
|
6
|
+
get "up" => "rails/health#show", as: :rails_health_check
|
|
9
7
|
|
|
10
8
|
# Defines the root path route ("/")
|
|
11
9
|
# root "posts#index"
|
|
@@ -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 ]
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
1
|
# This file should ensure the existence of records required to run the application in every environment (production,
|
|
3
2
|
# development, test). The code here should be idempotent so that it can be executed at any point in every environment.
|
|
4
3
|
# The data can then be loaded with the bin/rails db:seed command (or created alongside the database with db:setup).
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
require 'spec_helper'
|
|
4
4
|
ENV['RAILS_ENV'] ||= 'test'
|
|
5
5
|
require_relative '../config/environment'
|
|
6
|
-
abort(
|
|
6
|
+
abort('The Rails environment is running in production mode!') if Rails.env.production?
|
|
7
7
|
require 'rspec/rails'
|
|
8
8
|
require 'my_api_client/rspec'
|
|
9
9
|
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# See https://docs.docker.com/engine/reference/builder/#dockerignore-file for more about ignoring files.
|
|
2
|
+
|
|
3
|
+
# Ignore git directory.
|
|
4
|
+
/.git/
|
|
5
|
+
/.gitignore
|
|
6
|
+
|
|
7
|
+
# Ignore bundler config.
|
|
8
|
+
/.bundle
|
|
9
|
+
|
|
10
|
+
# Ignore all environment files.
|
|
11
|
+
/.env*
|
|
12
|
+
|
|
13
|
+
# Ignore all default key files.
|
|
14
|
+
/config/master.key
|
|
15
|
+
/config/credentials/*.key
|
|
16
|
+
|
|
17
|
+
# Ignore all logfiles and tempfiles.
|
|
18
|
+
/log/*
|
|
19
|
+
/tmp/*
|
|
20
|
+
!/log/.keep
|
|
21
|
+
!/tmp/.keep
|
|
22
|
+
|
|
23
|
+
# Ignore pidfiles, but keep the directory.
|
|
24
|
+
/tmp/pids/*
|
|
25
|
+
!/tmp/pids/.keep
|
|
26
|
+
|
|
27
|
+
# Ignore storage (uploaded files in development and any SQLite databases).
|
|
28
|
+
/storage/*
|
|
29
|
+
!/storage/.keep
|
|
30
|
+
/tmp/storage/*
|
|
31
|
+
!/tmp/storage/.keep
|
|
32
|
+
|
|
33
|
+
# Ignore CI service files.
|
|
34
|
+
/.github
|
|
35
|
+
|
|
36
|
+
# Ignore Kamal files.
|
|
37
|
+
/config/deploy*.yml
|
|
38
|
+
/.kamal
|
|
39
|
+
|
|
40
|
+
# Ignore development files
|
|
41
|
+
/.devcontainer
|
|
42
|
+
|
|
43
|
+
# Ignore Docker-related files
|
|
44
|
+
/.dockerignore
|
|
45
|
+
/Dockerfile*
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# See https://git-scm.com/docs/gitattributes for more about git attribute files.
|
|
2
|
+
|
|
3
|
+
# Mark the database schema as having been generated.
|
|
4
|
+
db/schema.rb linguist-generated
|
|
5
|
+
|
|
6
|
+
# Mark any vendored files as having been vendored.
|
|
7
|
+
vendor/* linguist-vendored
|
|
8
|
+
config/credentials/*.yml.enc diff=rails_credentials
|
|
9
|
+
config/credentials.yml.enc diff=rails_credentials
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
push:
|
|
6
|
+
branches: [ main ]
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
scan_ruby:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
|
|
12
|
+
steps:
|
|
13
|
+
- name: Checkout code
|
|
14
|
+
uses: actions/checkout@v6
|
|
15
|
+
|
|
16
|
+
- name: Set up Ruby
|
|
17
|
+
uses: ruby/setup-ruby@v1
|
|
18
|
+
with:
|
|
19
|
+
bundler-cache: true
|
|
20
|
+
|
|
21
|
+
- name: Scan for common Rails security vulnerabilities using static analysis
|
|
22
|
+
run: bin/brakeman --no-pager
|
|
23
|
+
|
|
24
|
+
- name: Scan for known security vulnerabilities in gems used
|
|
25
|
+
run: bin/bundler-audit
|
|
26
|
+
|
|
27
|
+
lint:
|
|
28
|
+
runs-on: ubuntu-latest
|
|
29
|
+
env:
|
|
30
|
+
RUBOCOP_CACHE_ROOT: tmp/rubocop
|
|
31
|
+
steps:
|
|
32
|
+
- name: Checkout code
|
|
33
|
+
uses: actions/checkout@v6
|
|
34
|
+
|
|
35
|
+
- name: Set up Ruby
|
|
36
|
+
uses: ruby/setup-ruby@v1
|
|
37
|
+
with:
|
|
38
|
+
bundler-cache: true
|
|
39
|
+
|
|
40
|
+
- name: Prepare RuboCop cache
|
|
41
|
+
uses: actions/cache@v4
|
|
42
|
+
env:
|
|
43
|
+
DEPENDENCIES_HASH: ${{ hashFiles('.ruby-version', '**/.rubocop.yml', '**/.rubocop_todo.yml', 'Gemfile.lock') }}
|
|
44
|
+
with:
|
|
45
|
+
path: ${{ env.RUBOCOP_CACHE_ROOT }}
|
|
46
|
+
key: rubocop-${{ runner.os }}-${{ env.DEPENDENCIES_HASH }}-${{ github.ref_name == github.event.repository.default_branch && github.run_id || 'default' }}
|
|
47
|
+
restore-keys: |
|
|
48
|
+
rubocop-${{ runner.os }}-${{ env.DEPENDENCIES_HASH }}-
|
|
49
|
+
|
|
50
|
+
- name: Lint code for consistent style
|
|
51
|
+
run: bin/rubocop -f github
|
|
52
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
|
2
|
+
#
|
|
3
|
+
# Temporary files generated by your text editor or operating system
|
|
4
|
+
# belong in git's global ignore instead:
|
|
5
|
+
# `$XDG_CONFIG_HOME/git/ignore` or `~/.config/git/ignore`
|
|
6
|
+
|
|
7
|
+
# Ignore bundler config.
|
|
8
|
+
/.bundle
|
|
9
|
+
|
|
10
|
+
# Ignore all environment files.
|
|
11
|
+
/.env*
|
|
12
|
+
|
|
13
|
+
# Ignore all logfiles and tempfiles.
|
|
14
|
+
/log/*
|
|
15
|
+
/tmp/*
|
|
16
|
+
!/log/.keep
|
|
17
|
+
!/tmp/.keep
|
|
18
|
+
|
|
19
|
+
# Ignore pidfiles, but keep the directory.
|
|
20
|
+
/tmp/pids/*
|
|
21
|
+
!/tmp/pids/
|
|
22
|
+
!/tmp/pids/.keep
|
|
23
|
+
|
|
24
|
+
# Ignore storage (uploaded files in development and any SQLite databases).
|
|
25
|
+
/storage/*
|
|
26
|
+
!/storage/.keep
|
|
27
|
+
/tmp/storage/*
|
|
28
|
+
!/tmp/storage/
|
|
29
|
+
!/tmp/storage/.keep
|
|
30
|
+
|
|
31
|
+
# Ignore key files for decrypting credentials and more.
|
|
32
|
+
/config/*.key
|
|
33
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
--require spec_helper
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ruby-3.2.9
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# syntax=docker/dockerfile:1
|
|
2
|
+
# check=error=true
|
|
3
|
+
|
|
4
|
+
# This Dockerfile is designed for production, not development. Use with Kamal or build'n'run by hand:
|
|
5
|
+
# docker build -t rails81 .
|
|
6
|
+
# docker run -d -p 80:80 -e RAILS_MASTER_KEY=<value from config/master.key> --name rails81 rails81
|
|
7
|
+
|
|
8
|
+
# For a containerized dev environment, see Dev Containers: https://guides.rubyonrails.org/getting_started_with_devcontainer.html
|
|
9
|
+
|
|
10
|
+
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version
|
|
11
|
+
ARG RUBY_VERSION=3.2.9
|
|
12
|
+
FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base
|
|
13
|
+
|
|
14
|
+
# Rails app lives here
|
|
15
|
+
WORKDIR /rails
|
|
16
|
+
|
|
17
|
+
# Install base packages
|
|
18
|
+
RUN apt-get update -qq && \
|
|
19
|
+
apt-get install --no-install-recommends -y curl libjemalloc2 libvips sqlite3 && \
|
|
20
|
+
ln -s /usr/lib/$(uname -m)-linux-gnu/libjemalloc.so.2 /usr/local/lib/libjemalloc.so && \
|
|
21
|
+
rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
|
22
|
+
|
|
23
|
+
# Set production environment variables and enable jemalloc for reduced memory usage and latency.
|
|
24
|
+
ENV RAILS_ENV="production" \
|
|
25
|
+
BUNDLE_DEPLOYMENT="1" \
|
|
26
|
+
BUNDLE_PATH="/usr/local/bundle" \
|
|
27
|
+
BUNDLE_WITHOUT="development" \
|
|
28
|
+
LD_PRELOAD="/usr/local/lib/libjemalloc.so"
|
|
29
|
+
|
|
30
|
+
# Throw-away build stage to reduce size of final image
|
|
31
|
+
FROM base AS build
|
|
32
|
+
|
|
33
|
+
# Install packages needed to build gems
|
|
34
|
+
RUN apt-get update -qq && \
|
|
35
|
+
apt-get install --no-install-recommends -y build-essential git libyaml-dev pkg-config && \
|
|
36
|
+
rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
|
37
|
+
|
|
38
|
+
# Install application gems
|
|
39
|
+
COPY vendor/* ./vendor/
|
|
40
|
+
COPY Gemfile Gemfile.lock ./
|
|
41
|
+
|
|
42
|
+
RUN bundle install && \
|
|
43
|
+
rm -rf ~/.bundle/ "${BUNDLE_PATH}"/ruby/*/cache "${BUNDLE_PATH}"/ruby/*/bundler/gems/*/.git
|
|
44
|
+
|
|
45
|
+
# Copy application code
|
|
46
|
+
COPY . .
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
# Final stage for app image
|
|
52
|
+
FROM base
|
|
53
|
+
|
|
54
|
+
# Run and own only the runtime files as a non-root user for security
|
|
55
|
+
RUN groupadd --system --gid 1000 rails && \
|
|
56
|
+
useradd rails --uid 1000 --gid 1000 --create-home --shell /bin/bash
|
|
57
|
+
USER 1000:1000
|
|
58
|
+
|
|
59
|
+
# Copy built artifacts: gems, application
|
|
60
|
+
COPY --chown=rails:rails --from=build "${BUNDLE_PATH}" "${BUNDLE_PATH}"
|
|
61
|
+
COPY --chown=rails:rails --from=build /rails /rails
|
|
62
|
+
|
|
63
|
+
# Entrypoint prepares the database.
|
|
64
|
+
ENTRYPOINT ["/rails/bin/docker-entrypoint"]
|
|
65
|
+
|
|
66
|
+
# Start server via Thruster by default, this can be overwritten at runtime
|
|
67
|
+
EXPOSE 80
|
|
68
|
+
CMD ["./bin/thrust", "./bin/rails", "server"]
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
source 'https://rubygems.org'
|
|
2
|
+
|
|
3
|
+
gem 'rails', '~> 8.1.3'
|
|
4
|
+
gem 'sqlite3', '>= 2.1'
|
|
5
|
+
gem 'puma', '>= 5.0'
|
|
6
|
+
gem 'tzinfo-data', platforms: %i[windows jruby]
|
|
7
|
+
|
|
8
|
+
gem 'my_api_client', path: '../..'
|
|
9
|
+
gem 'benchmark'
|
|
10
|
+
gem 'cgi'
|
|
11
|
+
|
|
12
|
+
group :development, :test do
|
|
13
|
+
gem 'debug', platforms: %i[mri windows], require: 'debug/prelude'
|
|
14
|
+
gem 'rspec-rails'
|
|
15
|
+
end
|