Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ source 'https://rubygems.org'
# development dependencies will be added by default to the :development group.
gemspec

# Lock minitest to 5.x until Rails 7.1+ adds Minitest 6.0 support
# Minitest 6.0.0 was released Dec 2024 with breaking API changes
gem 'minitest', '~> 5.0'

# Declare any dependencies that are still in development here instead of in
# your gemspec. These might include edge Rails or gems from your path or
# Git. Remember to move these dependencies to your gemspec before releasing
Expand Down
17 changes: 14 additions & 3 deletions app/views/deposit/collection/index.html.erb
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
<div class="register add-new-custom-field-details">
<div class="">
<div class="mx-auto" style="<%= @account_id.nil? ? 'max-width: 40rem;' : 'max-width: 80rem;' %>">
<div class="kaui-container deposit-index">
<%= render partial: 'kaui/components/breadcrumb/breadcrumb', locals: {
breadcrumbs: [
{ label: 'Settings', href: '/' },
{ label: "Deposit", href: '#' }
]
} %>

<div class="d-flex" style="gap: 4rem;">
<%= render template: 'kaui/layouts/kaui_setting_sidebar' %>

<div class="w-100">
<div class="mx-auto" style="<%= @account_id.nil? ? 'max-width: 40rem;' : 'max-width: 80rem;' %>">
<h5 class="add-new-custom-field-title border-bottom pb-3 mb-3">
<span class="icon-container">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
Expand All @@ -14,4 +24,5 @@
<%= render 'payment_form' %>
</div>
</div>
</div>
</div>
2 changes: 1 addition & 1 deletion docker/docker-compose.ci.mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3.8'
services:
killbill:
network_mode: host
image: killbill/killbill:0.24.0
image: killbill/killbill:0.24.16
environment:
- KILLBILL_CATALOG_URI=SpyCarAdvanced.xml
- KILLBILL_DAO_URL=jdbc:mysql://127.0.0.1:3306/killbill
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.ci.postgresql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3.8'
services:
killbill:
network_mode: host
image: killbill/killbill:0.24.0
image: killbill/killbill:0.24.16
environment:
- KILLBILL_CATALOG_URI=SpyCarAdvanced.xml
- KILLBILL_DAO_URL=jdbc:postgresql://127.0.0.1:5432/killbill
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<%# Stub breadcrumb partial for testing %>
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<% breadcrumbs.each do |crumb| %>
<li class="breadcrumb-item"><a href="<%= crumb[:href] %>"><%= crumb[:label] %></a></li>
<% end %>
</ol>
</nav>
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<%# Stub sidebar partial for testing %>
<div class="kaui-setting-sidebar">
<!-- Stub sidebar content -->
</div>
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<%# Stub sidebar template for testing %>
<div class="kaui-setting-sidebar">
<!-- Stub sidebar content -->
</div>
Loading