brut 0.20.1 → 0.20.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 +4 -4
- data/lib/brut/cli/apps/test.rb +1 -1
- data/lib/brut/front_end/form.rb +1 -1
- data/lib/brut/version.rb +1 -1
- data/templates/Base/bin/setup +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 39d165900ee11f8529aa2ec3d5faf4f33d0536353d8591ca5ab39a61ebf0dc70
|
|
4
|
+
data.tar.gz: 9aa0545b1cca012ad3df9d408e2d3b3c02d14748d873ad989be1487df290d34e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e4d1a6a1fdbf7117347f9a684d91f0c295afab512de3e48a1a793d06c226edcdf908555dabf325e54ba1bfe259ef611190a0e7180069615381b71fcd430865b1
|
|
7
|
+
data.tar.gz: 4400854bececb851407b21a500cfcb1fc3353583d5225ee907de21df42fb5258df2f6d322d6ac461a56eb06aa04488330858445415f816996f9e6227ac953d22
|
data/lib/brut/cli/apps/test.rb
CHANGED
|
@@ -103,12 +103,12 @@ Runs all end-to-end tests for the app, or runs a subset of end-to-end tests usin
|
|
|
103
103
|
private
|
|
104
104
|
|
|
105
105
|
def run_tests
|
|
106
|
+
require "brut/spec_support/e2e_test_server"
|
|
106
107
|
test_server = Brut::SpecSupport::E2ETestServer.new(
|
|
107
108
|
bin_dir: Brut.container.project_root / "bin",
|
|
108
109
|
start_timeout_seconds: ENV["E2E_STARTUP_TIMEOUT_SEC"]
|
|
109
110
|
)
|
|
110
111
|
begin
|
|
111
|
-
require "brut/spec_support/e2e_test_server"
|
|
112
112
|
test_server.start
|
|
113
113
|
super
|
|
114
114
|
ensure
|
data/lib/brut/front_end/form.rb
CHANGED
|
@@ -24,7 +24,7 @@ class Brut::FrontEnd::Form
|
|
|
24
24
|
|
|
25
25
|
# @!visibility private
|
|
26
26
|
def self.routing(*)
|
|
27
|
-
raise ArgumentError,"You called .routing on a form, but that form hasn't been configured with a route. You must do so in your
|
|
27
|
+
raise ArgumentError,"You called .routing on a form (or used a #{self.class} in a form tag), but that form hasn't been configured with a route. You must do so in your app.rb file via the `form` method"
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
# Create an instance of this form, optionally initialized with
|
data/lib/brut/version.rb
CHANGED
data/templates/Base/bin/setup
CHANGED
|
@@ -86,7 +86,7 @@ class SetupScript < Brut::TUI::Script
|
|
|
86
86
|
if dot_env_need_local.any?
|
|
87
87
|
step "Need local values" do
|
|
88
88
|
dot_env_need_local.each do |var,comment|
|
|
89
|
-
notify "A value is needed locally for
|
|
89
|
+
notify "A value is needed locally for `#{var}`, documented as:"
|
|
90
90
|
notify ""
|
|
91
91
|
notify comment
|
|
92
92
|
notify ""
|