kcppayments_rails 0.1.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.
Files changed (130) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +5 -0
  3. data/README.md +49 -0
  4. data/Rakefile +4 -0
  5. data/lib/generators/kcppayments_rails/install/install_generator.rb +21 -0
  6. data/lib/generators/kcppayments_rails/install/templates/kcp_controller.js +54 -0
  7. data/lib/generators/kcppayments_rails/install/templates/kcppayments_rails.rb +14 -0
  8. data/lib/kcppayments_rails/client.rb +49 -0
  9. data/lib/kcppayments_rails/configuration.rb +24 -0
  10. data/lib/kcppayments_rails/engine.rb +21 -0
  11. data/lib/kcppayments_rails/helpers/kcp_helper.rb +33 -0
  12. data/lib/kcppayments_rails/version.rb +5 -0
  13. data/lib/kcppayments_rails.rb +26 -0
  14. data/sig/kcppayments_rails.rbs +4 -0
  15. data/test_app/.dockerignore +51 -0
  16. data/test_app/.github/dependabot.yml +12 -0
  17. data/test_app/.github/workflows/ci.yml +55 -0
  18. data/test_app/.gitignore +87 -0
  19. data/test_app/.kamal/hooks/docker-setup.sample +3 -0
  20. data/test_app/.kamal/hooks/post-app-boot.sample +3 -0
  21. data/test_app/.kamal/hooks/post-deploy.sample +14 -0
  22. data/test_app/.kamal/hooks/post-proxy-reboot.sample +3 -0
  23. data/test_app/.kamal/hooks/pre-app-boot.sample +3 -0
  24. data/test_app/.kamal/hooks/pre-build.sample +51 -0
  25. data/test_app/.kamal/hooks/pre-connect.sample +47 -0
  26. data/test_app/.kamal/hooks/pre-deploy.sample +122 -0
  27. data/test_app/.kamal/hooks/pre-proxy-reboot.sample +3 -0
  28. data/test_app/.kamal/secrets +17 -0
  29. data/test_app/.rubocop.yml +8 -0
  30. data/test_app/.ruby-version +1 -0
  31. data/test_app/Dockerfile +72 -0
  32. data/test_app/Gemfile +60 -0
  33. data/test_app/Gemfile.lock +370 -0
  34. data/test_app/README.md +181 -0
  35. data/test_app/Rakefile +6 -0
  36. data/test_app/app/assets/images/.keep +0 -0
  37. data/test_app/app/assets/stylesheets/application.css +10 -0
  38. data/test_app/app/controllers/application_controller.rb +4 -0
  39. data/test_app/app/controllers/concerns/.keep +0 -0
  40. data/test_app/app/controllers/orders_controller.rb +31 -0
  41. data/test_app/app/controllers/payments_controller.rb +120 -0
  42. data/test_app/app/helpers/application_helper.rb +2 -0
  43. data/test_app/app/helpers/orders_helper.rb +2 -0
  44. data/test_app/app/helpers/payments_helper.rb +2 -0
  45. data/test_app/app/javascript/application.js +3 -0
  46. data/test_app/app/javascript/controllers/application.js +9 -0
  47. data/test_app/app/javascript/controllers/hello_controller.js +7 -0
  48. data/test_app/app/javascript/controllers/index.js +4 -0
  49. data/test_app/app/javascript/controllers/kcp_controller.js +310 -0
  50. data/test_app/app/jobs/application_job.rb +7 -0
  51. data/test_app/app/mailers/application_mailer.rb +4 -0
  52. data/test_app/app/models/application_record.rb +3 -0
  53. data/test_app/app/models/concerns/.keep +0 -0
  54. data/test_app/app/models/order.rb +67 -0
  55. data/test_app/app/views/layouts/application.html.erb +28 -0
  56. data/test_app/app/views/layouts/mailer.html.erb +13 -0
  57. data/test_app/app/views/layouts/mailer.text.erb +1 -0
  58. data/test_app/app/views/orders/create.html.erb +2 -0
  59. data/test_app/app/views/orders/index.html.erb +41 -0
  60. data/test_app/app/views/orders/new.html.erb +44 -0
  61. data/test_app/app/views/orders/show.html.erb +36 -0
  62. data/test_app/app/views/payments/_receipt_links.html.erb +31 -0
  63. data/test_app/app/views/payments/callback.html.erb +2 -0
  64. data/test_app/app/views/payments/create.html.erb +2 -0
  65. data/test_app/app/views/payments/failure.html.erb +20 -0
  66. data/test_app/app/views/payments/new.html.erb +145 -0
  67. data/test_app/app/views/payments/receipt.html.erb +156 -0
  68. data/test_app/app/views/payments/success.html.erb +34 -0
  69. data/test_app/app/views/pwa/manifest.json.erb +22 -0
  70. data/test_app/app/views/pwa/service-worker.js +26 -0
  71. data/test_app/bin/brakeman +7 -0
  72. data/test_app/bin/dev +2 -0
  73. data/test_app/bin/docker-entrypoint +14 -0
  74. data/test_app/bin/importmap +4 -0
  75. data/test_app/bin/jobs +6 -0
  76. data/test_app/bin/kamal +16 -0
  77. data/test_app/bin/rails +4 -0
  78. data/test_app/bin/rake +4 -0
  79. data/test_app/bin/rubocop +8 -0
  80. data/test_app/bin/setup +65 -0
  81. data/test_app/bin/thrust +5 -0
  82. data/test_app/config/application.rb +42 -0
  83. data/test_app/config/boot.rb +4 -0
  84. data/test_app/config/cable.yml +17 -0
  85. data/test_app/config/cache.yml +16 -0
  86. data/test_app/config/credentials.yml.enc +1 -0
  87. data/test_app/config/database.yml +41 -0
  88. data/test_app/config/deploy.yml +116 -0
  89. data/test_app/config/environment.rb +5 -0
  90. data/test_app/config/environments/development.rb +74 -0
  91. data/test_app/config/environments/production.rb +90 -0
  92. data/test_app/config/environments/test.rb +53 -0
  93. data/test_app/config/importmap.rb +7 -0
  94. data/test_app/config/initializers/assets.rb +7 -0
  95. data/test_app/config/initializers/content_security_policy.rb +25 -0
  96. data/test_app/config/initializers/filter_parameter_logging.rb +8 -0
  97. data/test_app/config/initializers/inflections.rb +16 -0
  98. data/test_app/config/initializers/kcppayments_rails.rb +29 -0
  99. data/test_app/config/locales/en.yml +31 -0
  100. data/test_app/config/master.key +1 -0
  101. data/test_app/config/puma.rb +41 -0
  102. data/test_app/config/queue.yml +18 -0
  103. data/test_app/config/recurring.yml +15 -0
  104. data/test_app/config/routes.rb +29 -0
  105. data/test_app/config/storage.yml +34 -0
  106. data/test_app/config.ru +6 -0
  107. data/test_app/db/cable_schema.rb +11 -0
  108. data/test_app/db/cache_schema.rb +14 -0
  109. data/test_app/db/migrate/20250827075913_create_orders.rb +16 -0
  110. data/test_app/db/migrate/20250827121258_add_kcp_fields_to_orders.rb +6 -0
  111. data/test_app/db/queue_schema.rb +129 -0
  112. data/test_app/db/schema.rb +28 -0
  113. data/test_app/db/seeds.rb +80 -0
  114. data/test_app/lib/tasks/.keep +0 -0
  115. data/test_app/log/.keep +0 -0
  116. data/test_app/public/.well-known/appspecific/com.chrome.devtools.json +1 -0
  117. data/test_app/public/400.html +114 -0
  118. data/test_app/public/404.html +114 -0
  119. data/test_app/public/406-unsupported-browser.html +114 -0
  120. data/test_app/public/422.html +114 -0
  121. data/test_app/public/500.html +114 -0
  122. data/test_app/public/icon.png +0 -0
  123. data/test_app/public/icon.svg +3 -0
  124. data/test_app/public/robots.txt +1 -0
  125. data/test_app/script/.keep +0 -0
  126. data/test_app/tmp/.keep +0 -0
  127. data/test_app/tmp/restart.txt +0 -0
  128. data/test_app/vendor/.keep +0 -0
  129. data/test_app/vendor/javascript/.keep +0 -0
  130. metadata +184 -0
@@ -0,0 +1,122 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # A sample pre-deploy hook
4
+ #
5
+ # Checks the Github status of the build, waiting for a pending build to complete for up to 720 seconds.
6
+ #
7
+ # Fails unless the combined status is "success"
8
+ #
9
+ # These environment variables are available:
10
+ # KAMAL_RECORDED_AT
11
+ # KAMAL_PERFORMER
12
+ # KAMAL_VERSION
13
+ # KAMAL_HOSTS
14
+ # KAMAL_COMMAND
15
+ # KAMAL_SUBCOMMAND
16
+ # KAMAL_ROLES (if set)
17
+ # KAMAL_DESTINATION (if set)
18
+
19
+ # Only check the build status for production deployments
20
+ if ENV["KAMAL_COMMAND"] == "rollback" || ENV["KAMAL_DESTINATION"] != "production"
21
+ exit 0
22
+ end
23
+
24
+ require "bundler/inline"
25
+
26
+ # true = install gems so this is fast on repeat invocations
27
+ gemfile(true, quiet: true) do
28
+ source "https://rubygems.org"
29
+
30
+ gem "octokit"
31
+ gem "faraday-retry"
32
+ end
33
+
34
+ MAX_ATTEMPTS = 72
35
+ ATTEMPTS_GAP = 10
36
+
37
+ def exit_with_error(message)
38
+ $stderr.puts message
39
+ exit 1
40
+ end
41
+
42
+ class GithubStatusChecks
43
+ attr_reader :remote_url, :git_sha, :github_client, :combined_status
44
+
45
+ def initialize
46
+ @remote_url = github_repo_from_remote_url
47
+ @git_sha = `git rev-parse HEAD`.strip
48
+ @github_client = Octokit::Client.new(access_token: ENV["GITHUB_TOKEN"])
49
+ refresh!
50
+ end
51
+
52
+ def refresh!
53
+ @combined_status = github_client.combined_status(remote_url, git_sha)
54
+ end
55
+
56
+ def state
57
+ combined_status[:state]
58
+ end
59
+
60
+ def first_status_url
61
+ first_status = combined_status[:statuses].find { |status| status[:state] == state }
62
+ first_status && first_status[:target_url]
63
+ end
64
+
65
+ def complete_count
66
+ combined_status[:statuses].count { |status| status[:state] != "pending"}
67
+ end
68
+
69
+ def total_count
70
+ combined_status[:statuses].count
71
+ end
72
+
73
+ def current_status
74
+ if total_count > 0
75
+ "Completed #{complete_count}/#{total_count} checks, see #{first_status_url} ..."
76
+ else
77
+ "Build not started..."
78
+ end
79
+ end
80
+
81
+ private
82
+ def github_repo_from_remote_url
83
+ url = `git config --get remote.origin.url`.strip.delete_suffix(".git")
84
+ if url.start_with?("https://github.com/")
85
+ url.delete_prefix("https://github.com/")
86
+ elsif url.start_with?("git@github.com:")
87
+ url.delete_prefix("git@github.com:")
88
+ else
89
+ url
90
+ end
91
+ end
92
+ end
93
+
94
+
95
+ $stdout.sync = true
96
+
97
+ begin
98
+ puts "Checking build status..."
99
+
100
+ attempts = 0
101
+ checks = GithubStatusChecks.new
102
+
103
+ loop do
104
+ case checks.state
105
+ when "success"
106
+ puts "Checks passed, see #{checks.first_status_url}"
107
+ exit 0
108
+ when "failure"
109
+ exit_with_error "Checks failed, see #{checks.first_status_url}"
110
+ when "pending"
111
+ attempts += 1
112
+ end
113
+
114
+ exit_with_error "Checks are still pending, gave up after #{MAX_ATTEMPTS * ATTEMPTS_GAP} seconds" if attempts == MAX_ATTEMPTS
115
+
116
+ puts checks.current_status
117
+ sleep(ATTEMPTS_GAP)
118
+ checks.refresh!
119
+ end
120
+ rescue Octokit::NotFound
121
+ exit_with_error "Build status could not be found"
122
+ end
@@ -0,0 +1,3 @@
1
+ #!/bin/sh
2
+
3
+ echo "Rebooting kamal-proxy on $KAMAL_HOSTS..."
@@ -0,0 +1,17 @@
1
+ # Secrets defined here are available for reference under registry/password, env/secret, builder/secrets,
2
+ # and accessories/*/env/secret in config/deploy.yml. All secrets should be pulled from either
3
+ # password manager, ENV, or a file. DO NOT ENTER RAW CREDENTIALS HERE! This file needs to be safe for git.
4
+
5
+ # Example of extracting secrets from 1password (or another compatible pw manager)
6
+ # SECRETS=$(kamal secrets fetch --adapter 1password --account your-account --from Vault/Item KAMAL_REGISTRY_PASSWORD RAILS_MASTER_KEY)
7
+ # KAMAL_REGISTRY_PASSWORD=$(kamal secrets extract KAMAL_REGISTRY_PASSWORD ${SECRETS})
8
+ # RAILS_MASTER_KEY=$(kamal secrets extract RAILS_MASTER_KEY ${SECRETS})
9
+
10
+ # Use a GITHUB_TOKEN if private repositories are needed for the image
11
+ # GITHUB_TOKEN=$(gh config get -h github.com oauth_token)
12
+
13
+ # Grab the registry password from ENV
14
+ KAMAL_REGISTRY_PASSWORD=$KAMAL_REGISTRY_PASSWORD
15
+
16
+ # Improve security by using a password manager. Never check config/master.key into git!
17
+ RAILS_MASTER_KEY=$(cat config/master.key)
@@ -0,0 +1,8 @@
1
+ # Omakase Ruby styling for Rails
2
+ inherit_gem: { rubocop-rails-omakase: rubocop.yml }
3
+
4
+ # Overwrite or add rules to create your own house style
5
+ #
6
+ # # Use `[a, [b, c]]` not `[ a, [ b, c ] ]`
7
+ # Layout/SpaceInsideArrayLiteralBrackets:
8
+ # Enabled: false
@@ -0,0 +1 @@
1
+ 3.4.5
@@ -0,0 +1,72 @@
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 test_app .
6
+ # docker run -d -p 80:80 -e RAILS_MASTER_KEY=<value from config/master.key> --name test_app test_app
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.4.5
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
+ rm -rf /var/lib/apt/lists /var/cache/apt/archives
21
+
22
+ # Set production environment
23
+ ENV RAILS_ENV="production" \
24
+ BUNDLE_DEPLOYMENT="1" \
25
+ BUNDLE_PATH="/usr/local/bundle" \
26
+ BUNDLE_WITHOUT="development"
27
+
28
+ # Throw-away build stage to reduce size of final image
29
+ FROM base AS build
30
+
31
+ # Install packages needed to build gems
32
+ RUN apt-get update -qq && \
33
+ apt-get install --no-install-recommends -y build-essential git libyaml-dev pkg-config && \
34
+ rm -rf /var/lib/apt/lists /var/cache/apt/archives
35
+
36
+ # Install application gems
37
+ COPY Gemfile Gemfile.lock ./
38
+ RUN bundle install && \
39
+ rm -rf ~/.bundle/ "${BUNDLE_PATH}"/ruby/*/cache "${BUNDLE_PATH}"/ruby/*/bundler/gems/*/.git && \
40
+ bundle exec bootsnap precompile --gemfile
41
+
42
+ # Copy application code
43
+ COPY . .
44
+
45
+ # Precompile bootsnap code for faster boot times
46
+ RUN bundle exec bootsnap precompile app/ lib/
47
+
48
+ # Precompiling assets for production without requiring secret RAILS_MASTER_KEY
49
+ RUN SECRET_KEY_BASE_DUMMY=1 ./bin/rails assets:precompile
50
+
51
+
52
+
53
+
54
+ # Final stage for app image
55
+ FROM base
56
+
57
+ # Copy built artifacts: gems, application
58
+ COPY --from=build "${BUNDLE_PATH}" "${BUNDLE_PATH}"
59
+ COPY --from=build /rails /rails
60
+
61
+ # Run and own only the runtime files as a non-root user for security
62
+ RUN groupadd --system --gid 1000 rails && \
63
+ useradd rails --uid 1000 --gid 1000 --create-home --shell /bin/bash && \
64
+ chown -R rails:rails db log storage tmp
65
+ USER 1000:1000
66
+
67
+ # Entrypoint prepares the database.
68
+ ENTRYPOINT ["/rails/bin/docker-entrypoint"]
69
+
70
+ # Start server via Thruster by default, this can be overwritten at runtime
71
+ EXPOSE 80
72
+ CMD ["./bin/thrust", "./bin/rails", "server"]
data/test_app/Gemfile ADDED
@@ -0,0 +1,60 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
4
+ gem "rails", "~> 8.0.2", ">= 8.0.2.1"
5
+ # The modern asset pipeline for Rails [https://github.com/rails/propshaft]
6
+ gem "propshaft"
7
+ # Use sqlite3 as the database for Active Record
8
+ gem "sqlite3", ">= 2.1"
9
+ # Use the Puma web server [https://github.com/puma/puma]
10
+ gem "puma", ">= 5.0"
11
+ # Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
12
+ gem "importmap-rails"
13
+ # Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
14
+ gem "turbo-rails"
15
+ # Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
16
+ gem "stimulus-rails"
17
+ # Build JSON APIs with ease [https://github.com/rails/jbuilder]
18
+ gem "jbuilder"
19
+
20
+ # KCP Payments Rails gem (로컬 젬 사용)
21
+ gem 'kcppayments_rails', path: '..'
22
+
23
+ # Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
24
+ # gem "bcrypt", "~> 3.1.7"
25
+
26
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
27
+ gem "tzinfo-data", platforms: %i[ windows jruby ]
28
+
29
+ # Use the database-backed adapters for Rails.cache, Active Job, and Action Cable
30
+ gem "solid_cache"
31
+ gem "solid_queue"
32
+ gem "solid_cable"
33
+
34
+ # Reduces boot times through caching; required in config/boot.rb
35
+ gem "bootsnap", require: false
36
+
37
+ # Deploy this application anywhere as a Docker container [https://kamal-deploy.org]
38
+ gem "kamal", require: false
39
+
40
+ # Add HTTP asset caching/compression and X-Sendfile acceleration to Puma [https://github.com/basecamp/thruster/]
41
+ gem "thruster", require: false
42
+
43
+ # Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
44
+ # gem "image_processing", "~> 1.2"
45
+
46
+ group :development, :test do
47
+ # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
48
+ gem "debug", platforms: %i[ mri windows ], require: "debug/prelude"
49
+
50
+ # Static analysis for security vulnerabilities [https://brakemanscanner.org/]
51
+ gem "brakeman", require: false
52
+
53
+ # Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/]
54
+ gem "rubocop-rails-omakase", require: false
55
+ end
56
+
57
+ group :development do
58
+ # Use console on exceptions pages [https://github.com/rails/web-console]
59
+ gem "web-console"
60
+ end
@@ -0,0 +1,370 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ kcppayments_rails (0.1.0)
5
+ rails (>= 7.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (8.0.2.1)
11
+ actionpack (= 8.0.2.1)
12
+ activesupport (= 8.0.2.1)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ zeitwerk (~> 2.6)
16
+ actionmailbox (8.0.2.1)
17
+ actionpack (= 8.0.2.1)
18
+ activejob (= 8.0.2.1)
19
+ activerecord (= 8.0.2.1)
20
+ activestorage (= 8.0.2.1)
21
+ activesupport (= 8.0.2.1)
22
+ mail (>= 2.8.0)
23
+ actionmailer (8.0.2.1)
24
+ actionpack (= 8.0.2.1)
25
+ actionview (= 8.0.2.1)
26
+ activejob (= 8.0.2.1)
27
+ activesupport (= 8.0.2.1)
28
+ mail (>= 2.8.0)
29
+ rails-dom-testing (~> 2.2)
30
+ actionpack (8.0.2.1)
31
+ actionview (= 8.0.2.1)
32
+ activesupport (= 8.0.2.1)
33
+ nokogiri (>= 1.8.5)
34
+ rack (>= 2.2.4)
35
+ rack-session (>= 1.0.1)
36
+ rack-test (>= 0.6.3)
37
+ rails-dom-testing (~> 2.2)
38
+ rails-html-sanitizer (~> 1.6)
39
+ useragent (~> 0.16)
40
+ actiontext (8.0.2.1)
41
+ actionpack (= 8.0.2.1)
42
+ activerecord (= 8.0.2.1)
43
+ activestorage (= 8.0.2.1)
44
+ activesupport (= 8.0.2.1)
45
+ globalid (>= 0.6.0)
46
+ nokogiri (>= 1.8.5)
47
+ actionview (8.0.2.1)
48
+ activesupport (= 8.0.2.1)
49
+ builder (~> 3.1)
50
+ erubi (~> 1.11)
51
+ rails-dom-testing (~> 2.2)
52
+ rails-html-sanitizer (~> 1.6)
53
+ activejob (8.0.2.1)
54
+ activesupport (= 8.0.2.1)
55
+ globalid (>= 0.3.6)
56
+ activemodel (8.0.2.1)
57
+ activesupport (= 8.0.2.1)
58
+ activerecord (8.0.2.1)
59
+ activemodel (= 8.0.2.1)
60
+ activesupport (= 8.0.2.1)
61
+ timeout (>= 0.4.0)
62
+ activestorage (8.0.2.1)
63
+ actionpack (= 8.0.2.1)
64
+ activejob (= 8.0.2.1)
65
+ activerecord (= 8.0.2.1)
66
+ activesupport (= 8.0.2.1)
67
+ marcel (~> 1.0)
68
+ activesupport (8.0.2.1)
69
+ base64
70
+ benchmark (>= 0.3)
71
+ bigdecimal
72
+ concurrent-ruby (~> 1.0, >= 1.3.1)
73
+ connection_pool (>= 2.2.5)
74
+ drb
75
+ i18n (>= 1.6, < 2)
76
+ logger (>= 1.4.2)
77
+ minitest (>= 5.1)
78
+ securerandom (>= 0.3)
79
+ tzinfo (~> 2.0, >= 2.0.5)
80
+ uri (>= 0.13.1)
81
+ ast (2.4.3)
82
+ base64 (0.3.0)
83
+ bcrypt_pbkdf (1.1.1)
84
+ benchmark (0.4.1)
85
+ bigdecimal (3.2.2)
86
+ bindex (0.8.1)
87
+ bootsnap (1.18.6)
88
+ msgpack (~> 1.2)
89
+ brakeman (7.1.0)
90
+ racc
91
+ builder (3.3.0)
92
+ concurrent-ruby (1.3.5)
93
+ connection_pool (2.5.3)
94
+ crass (1.0.6)
95
+ date (3.4.1)
96
+ debug (1.11.0)
97
+ irb (~> 1.10)
98
+ reline (>= 0.3.8)
99
+ dotenv (3.1.8)
100
+ drb (2.2.3)
101
+ ed25519 (1.4.0)
102
+ erb (5.0.2)
103
+ erubi (1.13.1)
104
+ et-orbi (1.3.0)
105
+ tzinfo
106
+ fugit (1.11.2)
107
+ et-orbi (~> 1, >= 1.2.11)
108
+ raabro (~> 1.4)
109
+ globalid (1.2.1)
110
+ activesupport (>= 6.1)
111
+ i18n (1.14.7)
112
+ concurrent-ruby (~> 1.0)
113
+ importmap-rails (2.2.2)
114
+ actionpack (>= 6.0.0)
115
+ activesupport (>= 6.0.0)
116
+ railties (>= 6.0.0)
117
+ io-console (0.8.1)
118
+ irb (1.15.2)
119
+ pp (>= 0.6.0)
120
+ rdoc (>= 4.0.0)
121
+ reline (>= 0.4.2)
122
+ jbuilder (2.14.1)
123
+ actionview (>= 7.0.0)
124
+ activesupport (>= 7.0.0)
125
+ json (2.13.2)
126
+ kamal (2.7.0)
127
+ activesupport (>= 7.0)
128
+ base64 (~> 0.2)
129
+ bcrypt_pbkdf (~> 1.0)
130
+ concurrent-ruby (~> 1.2)
131
+ dotenv (~> 3.1)
132
+ ed25519 (~> 1.4)
133
+ net-ssh (~> 7.3)
134
+ sshkit (>= 1.23.0, < 2.0)
135
+ thor (~> 1.3)
136
+ zeitwerk (>= 2.6.18, < 3.0)
137
+ language_server-protocol (3.17.0.5)
138
+ lint_roller (1.1.0)
139
+ logger (1.7.0)
140
+ loofah (2.24.1)
141
+ crass (~> 1.0.2)
142
+ nokogiri (>= 1.12.0)
143
+ mail (2.8.1)
144
+ mini_mime (>= 0.1.1)
145
+ net-imap
146
+ net-pop
147
+ net-smtp
148
+ marcel (1.0.4)
149
+ mini_mime (1.1.5)
150
+ minitest (5.25.5)
151
+ msgpack (1.8.0)
152
+ net-imap (0.5.9)
153
+ date
154
+ net-protocol
155
+ net-pop (0.1.2)
156
+ net-protocol
157
+ net-protocol (0.2.2)
158
+ timeout
159
+ net-scp (4.1.0)
160
+ net-ssh (>= 2.6.5, < 8.0.0)
161
+ net-sftp (4.0.0)
162
+ net-ssh (>= 5.0.0, < 8.0.0)
163
+ net-smtp (0.5.1)
164
+ net-protocol
165
+ net-ssh (7.3.0)
166
+ nio4r (2.7.4)
167
+ nokogiri (1.18.9-aarch64-linux-gnu)
168
+ racc (~> 1.4)
169
+ nokogiri (1.18.9-aarch64-linux-musl)
170
+ racc (~> 1.4)
171
+ nokogiri (1.18.9-arm-linux-gnu)
172
+ racc (~> 1.4)
173
+ nokogiri (1.18.9-arm-linux-musl)
174
+ racc (~> 1.4)
175
+ nokogiri (1.18.9-arm64-darwin)
176
+ racc (~> 1.4)
177
+ nokogiri (1.18.9-x86_64-linux-gnu)
178
+ racc (~> 1.4)
179
+ nokogiri (1.18.9-x86_64-linux-musl)
180
+ racc (~> 1.4)
181
+ ostruct (0.6.3)
182
+ parallel (1.27.0)
183
+ parser (3.3.9.0)
184
+ ast (~> 2.4.1)
185
+ racc
186
+ pp (0.6.2)
187
+ prettyprint
188
+ prettyprint (0.2.0)
189
+ prism (1.4.0)
190
+ propshaft (1.2.1)
191
+ actionpack (>= 7.0.0)
192
+ activesupport (>= 7.0.0)
193
+ rack
194
+ psych (5.2.6)
195
+ date
196
+ stringio
197
+ puma (6.6.1)
198
+ nio4r (~> 2.0)
199
+ raabro (1.4.0)
200
+ racc (1.8.1)
201
+ rack (3.2.0)
202
+ rack-session (2.1.1)
203
+ base64 (>= 0.1.0)
204
+ rack (>= 3.0.0)
205
+ rack-test (2.2.0)
206
+ rack (>= 1.3)
207
+ rackup (2.2.1)
208
+ rack (>= 3)
209
+ rails (8.0.2.1)
210
+ actioncable (= 8.0.2.1)
211
+ actionmailbox (= 8.0.2.1)
212
+ actionmailer (= 8.0.2.1)
213
+ actionpack (= 8.0.2.1)
214
+ actiontext (= 8.0.2.1)
215
+ actionview (= 8.0.2.1)
216
+ activejob (= 8.0.2.1)
217
+ activemodel (= 8.0.2.1)
218
+ activerecord (= 8.0.2.1)
219
+ activestorage (= 8.0.2.1)
220
+ activesupport (= 8.0.2.1)
221
+ bundler (>= 1.15.0)
222
+ railties (= 8.0.2.1)
223
+ rails-dom-testing (2.3.0)
224
+ activesupport (>= 5.0.0)
225
+ minitest
226
+ nokogiri (>= 1.6)
227
+ rails-html-sanitizer (1.6.2)
228
+ loofah (~> 2.21)
229
+ nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
230
+ railties (8.0.2.1)
231
+ actionpack (= 8.0.2.1)
232
+ activesupport (= 8.0.2.1)
233
+ irb (~> 1.13)
234
+ rackup (>= 1.0.0)
235
+ rake (>= 12.2)
236
+ thor (~> 1.0, >= 1.2.2)
237
+ zeitwerk (~> 2.6)
238
+ rainbow (3.1.1)
239
+ rake (13.3.0)
240
+ rdoc (6.14.2)
241
+ erb
242
+ psych (>= 4.0.0)
243
+ regexp_parser (2.11.2)
244
+ reline (0.6.2)
245
+ io-console (~> 0.5)
246
+ rubocop (1.80.1)
247
+ json (~> 2.3)
248
+ language_server-protocol (~> 3.17.0.2)
249
+ lint_roller (~> 1.1.0)
250
+ parallel (~> 1.10)
251
+ parser (>= 3.3.0.2)
252
+ rainbow (>= 2.2.2, < 4.0)
253
+ regexp_parser (>= 2.9.3, < 3.0)
254
+ rubocop-ast (>= 1.46.0, < 2.0)
255
+ ruby-progressbar (~> 1.7)
256
+ unicode-display_width (>= 2.4.0, < 4.0)
257
+ rubocop-ast (1.46.0)
258
+ parser (>= 3.3.7.2)
259
+ prism (~> 1.4)
260
+ rubocop-performance (1.25.0)
261
+ lint_roller (~> 1.1)
262
+ rubocop (>= 1.75.0, < 2.0)
263
+ rubocop-ast (>= 1.38.0, < 2.0)
264
+ rubocop-rails (2.33.3)
265
+ activesupport (>= 4.2.0)
266
+ lint_roller (~> 1.1)
267
+ rack (>= 1.1)
268
+ rubocop (>= 1.75.0, < 2.0)
269
+ rubocop-ast (>= 1.44.0, < 2.0)
270
+ rubocop-rails-omakase (1.1.0)
271
+ rubocop (>= 1.72)
272
+ rubocop-performance (>= 1.24)
273
+ rubocop-rails (>= 2.30)
274
+ ruby-progressbar (1.13.0)
275
+ securerandom (0.4.1)
276
+ solid_cable (3.0.12)
277
+ actioncable (>= 7.2)
278
+ activejob (>= 7.2)
279
+ activerecord (>= 7.2)
280
+ railties (>= 7.2)
281
+ solid_cache (1.0.7)
282
+ activejob (>= 7.2)
283
+ activerecord (>= 7.2)
284
+ railties (>= 7.2)
285
+ solid_queue (1.2.1)
286
+ activejob (>= 7.1)
287
+ activerecord (>= 7.1)
288
+ concurrent-ruby (>= 1.3.1)
289
+ fugit (~> 1.11.0)
290
+ railties (>= 7.1)
291
+ thor (>= 1.3.1)
292
+ sqlite3 (2.7.3-aarch64-linux-gnu)
293
+ sqlite3 (2.7.3-aarch64-linux-musl)
294
+ sqlite3 (2.7.3-arm-linux-gnu)
295
+ sqlite3 (2.7.3-arm-linux-musl)
296
+ sqlite3 (2.7.3-arm64-darwin)
297
+ sqlite3 (2.7.3-x86_64-linux-gnu)
298
+ sqlite3 (2.7.3-x86_64-linux-musl)
299
+ sshkit (1.24.0)
300
+ base64
301
+ logger
302
+ net-scp (>= 1.1.2)
303
+ net-sftp (>= 2.1.2)
304
+ net-ssh (>= 2.8.0)
305
+ ostruct
306
+ stimulus-rails (1.3.4)
307
+ railties (>= 6.0.0)
308
+ stringio (3.1.7)
309
+ thor (1.4.0)
310
+ thruster (0.1.15)
311
+ thruster (0.1.15-aarch64-linux)
312
+ thruster (0.1.15-arm64-darwin)
313
+ thruster (0.1.15-x86_64-linux)
314
+ timeout (0.4.3)
315
+ turbo-rails (2.0.16)
316
+ actionpack (>= 7.1.0)
317
+ railties (>= 7.1.0)
318
+ tzinfo (2.0.6)
319
+ concurrent-ruby (~> 1.0)
320
+ unicode-display_width (3.1.5)
321
+ unicode-emoji (~> 4.0, >= 4.0.4)
322
+ unicode-emoji (4.0.4)
323
+ uri (1.0.3)
324
+ useragent (0.16.11)
325
+ web-console (4.2.1)
326
+ actionview (>= 6.0.0)
327
+ activemodel (>= 6.0.0)
328
+ bindex (>= 0.4.0)
329
+ railties (>= 6.0.0)
330
+ websocket-driver (0.8.0)
331
+ base64
332
+ websocket-extensions (>= 0.1.0)
333
+ websocket-extensions (0.1.5)
334
+ zeitwerk (2.7.3)
335
+
336
+ PLATFORMS
337
+ aarch64-linux
338
+ aarch64-linux-gnu
339
+ aarch64-linux-musl
340
+ arm-linux-gnu
341
+ arm-linux-musl
342
+ arm64-darwin-24
343
+ x86_64-linux
344
+ x86_64-linux-gnu
345
+ x86_64-linux-musl
346
+
347
+ DEPENDENCIES
348
+ bootsnap
349
+ brakeman
350
+ debug
351
+ importmap-rails
352
+ jbuilder
353
+ kamal
354
+ kcppayments_rails!
355
+ propshaft
356
+ puma (>= 5.0)
357
+ rails (~> 8.0.2, >= 8.0.2.1)
358
+ rubocop-rails-omakase
359
+ solid_cable
360
+ solid_cache
361
+ solid_queue
362
+ sqlite3 (>= 2.1)
363
+ stimulus-rails
364
+ thruster
365
+ turbo-rails
366
+ tzinfo-data
367
+ web-console
368
+
369
+ BUNDLED WITH
370
+ 2.7.1