mkbrut 0.4.0 → 0.4.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 847d6f7efc89998a82712ddf8cb57f606b718479fd06b28057c668b096794519
4
- data.tar.gz: 1e603967946eccb5744c173c02b19f42ad8596d390d2dcf9bf68fd07693b045f
3
+ metadata.gz: 984d9109d176ad8c71c73dcba0ca912ac355ac5c824916467c458c0c6f8258a9
4
+ data.tar.gz: add21e575b83c2c556c03bfe3e23e060d2b0fbfa88ee74f8984fa624f5914400
5
5
  SHA512:
6
- metadata.gz: 92a6f6c3f1309aa69c73a394bff444984ee605f3a5434e59ddeb767db91798e65350aeb474525a27618868ccefcc2b805f09ccd1c81fbd332ef06b979b936f30
7
- data.tar.gz: c5c7f161f8a67c805892aa7c4fe393ad9b53d92cb2bad22d32edacf7bb2f152dc54546b6f1e1a624eab1bb59a50d93e9522527a09c61c7899406949bf66a2ed9
6
+ metadata.gz: 3df7e5b66d93762bc76b7c42191db13a79bd6492a789818420789ba3c937131066c90d56490efe774acdede15cab28c805bc572c77cd3a5de7dcdcc4476c8b61
7
+ data.tar.gz: 2ecf2985b10b22face53190218b33e1cbbeda2dad1d308050a15eebbd354e5013bfaf877cdc71b4da43d3cb2d1fab1f73c548820bc4087aaf19c14ab30bc34b1
@@ -1,3 +1,3 @@
1
1
  module MKBrut
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.2"
3
3
  end
@@ -0,0 +1,6 @@
1
+ Sequel.migration do
2
+ up do
3
+ run %{CREATE EXTENSION IF NOT EXISTS citext}
4
+ end
5
+ end
6
+
@@ -57,6 +57,9 @@ services:
57
57
  # will be available on your localhost. The port AFTER the colon is where
58
58
  # the app runs in the container. So: change the port before the colon, and
59
59
  # don't change the one after.
60
+ #
61
+ # * 6502 - dev
62
+ # * 6503 - test server (run by E2E tests)
60
63
  ports:
61
64
  - "6502:6502"
62
65
  - "6503:6503"
@@ -71,20 +74,19 @@ services:
71
74
  pull_policy: "missing"
72
75
  environment:
73
76
  # Postgres will not work without being told the password. The most
74
- # direct way to do that is via thsi environment variable.
77
+ # direct way to do that is via this environment variable.
75
78
  POSTGRES_PASSWORD: postgres
76
- # This service runs Redis, though actuallyu ValKey.
77
- redis:
78
- image: valkey/valkey:7.2
79
79
  # This runes otel-deskop-viewer, which will receive OpenTelemetry traces
80
80
  # from your app. You can connect to this to observe those traces.
81
81
  otel-desktop-viewer:
82
82
  # The otel-desktop-viewer maintainers do not maintain a Docker
83
83
  # image of the app. I have made one available on my DockerHub account.
84
- # If you want to build your own, see https://github.com/CtrlSpice/otel-desktop-viewer?tab=readme-ov-file#via-docker
84
+ # If you want to build your own, see
85
+ # https://github.com/CtrlSpice/otel-desktop-viewer?tab=readme-ov-file#via-docker
85
86
  # When you build that image, change the value for image: below to the image
86
87
  # name you chose.
87
88
  image: davetron5000/otel-desktop-viewer:alpine-3
88
- # This runs on port 8000 and will be available on port 6504 of your machine.
89
+ # This runs internally on port 8000 but will be available
90
+ # on port 6504 of your machine.
89
91
  ports:
90
92
  - "6504:8000"
@@ -1,6 +1,5 @@
1
1
  Sequel.migration do
2
2
  up do
3
- run %{CREATE EXTENSION IF NOT EXISTS citext}
4
3
  create_table :guestbook_messages,
5
4
  comment: "Messages people have left in the guestbook",
6
5
  external_id: true do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mkbrut
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Copeland
@@ -100,6 +100,7 @@ files:
100
100
  - templates/Base/app/src/app.rb.erb
101
101
  - templates/Base/app/src/back_end/data_models/app_data_model.rb
102
102
  - templates/Base/app/src/back_end/data_models/db.rb
103
+ - templates/Base/app/src/back_end/data_models/migrations/00000000000000_citext.rb
103
104
  - templates/Base/app/src/back_end/data_models/seed/seed_data.rb
104
105
  - templates/Base/app/src/front_end/components/app_component.rb
105
106
  - templates/Base/app/src/front_end/components/custom_element_registration.rb.erb
@@ -175,7 +176,7 @@ files:
175
176
  - templates/segments/Demo/app/src/front_end/pages/new_guestbook_message_page.rb
176
177
  - templates/segments/Demo/specs/back_end/data_models/db/guestbook_message.spec.rb
177
178
  - templates/segments/Demo/specs/e2e/guest_message.spec.rb
178
- - templates/segments/Demo/specs/factories/db/guestbook_message.rb
179
+ - templates/segments/Demo/specs/factories/db/guestbook_message.factory.rb
179
180
  - templates/segments/Demo/specs/front_end/components/flash_component.spec.rb
180
181
  - templates/segments/Demo/specs/front_end/handlers/guestbook_message_handler.spec.rb
181
182
  - templates/segments/Demo/specs/front_end/pages/guestbook_page.spec.rb