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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: de61901270558680112b8b90f787067add7f777204219016020adcc90c15564d
4
- data.tar.gz: 4437fee31bc132bd93fe419ac72df5bc1b1e7bb67f506a4e36ab126dc7395b85
3
+ metadata.gz: 39d165900ee11f8529aa2ec3d5faf4f33d0536353d8591ca5ab39a61ebf0dc70
4
+ data.tar.gz: 9aa0545b1cca012ad3df9d408e2d3b3c02d14748d873ad989be1487df290d34e
5
5
  SHA512:
6
- metadata.gz: fcc0ef80b40ea5703298cdbaa71f86f3ec8d22b96f8bc4e9cea336f41b09bbca109b211eea365b202759f8bca4c07ace5c35d2a6f638a7d2231f5d0534090556
7
- data.tar.gz: c4bb547d99089ca6d567e744c39539fda20ff85b21c45dd2419ab7d0bcfc0e265a9004006973e7bb4f96be35f41d21354efd71502f77e2276140dbd8badf29a3
6
+ metadata.gz: e4d1a6a1fdbf7117347f9a684d91f0c295afab512de3e48a1a793d06c226edcdf908555dabf325e54ba1bfe259ef611190a0e7180069615381b71fcd430865b1
7
+ data.tar.gz: 4400854bececb851407b21a500cfcb1fc3353583d5225ee907de21df42fb5258df2f6d322d6ac461a56eb06aa04488330858445415f816996f9e6227ac953d22
@@ -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
@@ -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 route_config.rb file via the `form` method"
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
@@ -1,4 +1,4 @@
1
1
  module Brut
2
2
  # @!visibility private
3
- VERSION = "0.20.1"
3
+ VERSION = "0.20.2"
4
4
  end
@@ -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 '#{var}'"
89
+ notify "A value is needed locally for `#{var}`, documented as:"
90
90
  notify ""
91
91
  notify comment
92
92
  notify ""
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brut
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.1
4
+ version: 0.20.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Bryant Copeland