mkbrut 0.1.4 → 0.1.5
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3ea883e3c01df05ef559ca104ef0ad6f1b33ba0c35faee0a56ecaabc8bbb0c54
|
4
|
+
data.tar.gz: 15924a34b610af3eee20907d544cd0e6b1eeacca3aa74117c18ba6a28a05f387
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d6014c0f9891539d0c142b575531885124d624c9ecee42fd5dafc7164575ea1147cc095d13dc7c8d534ca05e27c5dec305fbe0fd4b5ff91be4691d7183598d7
|
7
|
+
data.tar.gz: f8d7766b389620d6973145b81cdd2b5a8b354cec827ee5a18d443eea87a80f66f66142cf8d933bf2824b1f36ec3682d58ff4b06ac3793f79e0dc962d83b4a15a
|
data/lib/mkbrut/version.rb
CHANGED
@@ -0,0 +1,39 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
set -e
|
4
|
+
|
5
|
+
usage() {
|
6
|
+
echo "Usage: $0"
|
7
|
+
echo
|
8
|
+
echo " Run all tests and quality checks, as if on a CI server"
|
9
|
+
echo
|
10
|
+
}
|
11
|
+
|
12
|
+
for arg in "$@"; do
|
13
|
+
if [ "${arg}" = "-h" ] || [ "${arg}" = "--help" ] || [ "${arg}" = "help" ]; then
|
14
|
+
usage
|
15
|
+
exit 0
|
16
|
+
fi
|
17
|
+
done
|
18
|
+
|
19
|
+
|
20
|
+
echo "[ bin/ci ] Building Assets"
|
21
|
+
bin/build-assets
|
22
|
+
|
23
|
+
echo "[ bin/ci ] Running non E2E tests"
|
24
|
+
bin/test run --rebuild
|
25
|
+
|
26
|
+
echo "[ bin/ci ] Running JS tests"
|
27
|
+
bin/test js
|
28
|
+
|
29
|
+
echo "[ bin/ci ] Running E2E tests"
|
30
|
+
bin/test e2e --rebuild --rebuild-after
|
31
|
+
|
32
|
+
echo "[ bin/ci ] Analyzing Ruby gems for"
|
33
|
+
echo "[ bin/ci ] security vulnerabilities"
|
34
|
+
bundle exec bundle audit check --update
|
35
|
+
|
36
|
+
echo "[ bin/ci ] Checking to see that all classes have tests"
|
37
|
+
bin/test audit --ignore app/src/front_end/components/custom_element_registration.rb
|
38
|
+
|
39
|
+
echo "[ bin/ci ] Done"
|
@@ -10,7 +10,7 @@ RSpec.describe GuestbookMessageHandler do
|
|
10
10
|
rack_request_ip = Faker::Internet.ip_v4_address
|
11
11
|
|
12
12
|
confidence_check do
|
13
|
-
expect(form).to have_constraint_violation(:name,key: :
|
13
|
+
expect(form).to have_constraint_violation(:name,key: :valueMissing)
|
14
14
|
end
|
15
15
|
|
16
16
|
handler = described_class.new(
|
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.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dave Copeland
|
@@ -124,7 +124,9 @@ files:
|
|
124
124
|
- templates/Base/app/src/front_end/svgs/comment-button.svg
|
125
125
|
- templates/Base/bin/README.md.erb
|
126
126
|
- templates/Base/bin/build-assets
|
127
|
+
- templates/Base/bin/ci
|
127
128
|
- templates/Base/bin/console
|
129
|
+
- templates/Base/bin/db
|
128
130
|
- templates/Base/bin/dbconsole
|
129
131
|
- templates/Base/bin/dev
|
130
132
|
- templates/Base/bin/release
|