firespring_dev_commands 2.5.0.pre.alpha.2 → 2.5.0.pre.alpha.3
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: 4d6edfc008b5f1864dfdb75300af7ea5afe3a9d3fb52ee6ed35918cda8467594
|
|
4
|
+
data.tar.gz: efe9ca062f154d384179159ec94ea30eeaf005fbc6894562cb3a1ff1fbe64ff2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a852876ecd2168c3899d3ae3bdb05a7874da0dbb63d8ddfc65c8c248a5534065789107cae2265a0b732f7012911094574c8a52136afb6a9a68c048be8ee786c
|
|
7
|
+
data.tar.gz: 24b8762a98e1a89c6e0b36949960250fdebb0f65dabccd187296dec51daadced45d5e6ef4b9e5345740f99f2339e0329823b98c6a466a9e222a801f426cda45d
|
|
@@ -79,7 +79,8 @@ module Dev
|
|
|
79
79
|
end
|
|
80
80
|
|
|
81
81
|
namespace :php do
|
|
82
|
-
desc "Run the php linting software against the #{application}'s codebase"
|
|
82
|
+
desc "Run the php linting software against the #{application}'s codebase" \
|
|
83
|
+
"\n\t(optional) use OPTS=... to pass additional options to the command"
|
|
83
84
|
task lint: %w(init_docker up_no_deps) do
|
|
84
85
|
LOG.debug("Check for php linting errors in the #{application} codebase")
|
|
85
86
|
|
|
@@ -119,7 +120,8 @@ module Dev
|
|
|
119
120
|
end
|
|
120
121
|
|
|
121
122
|
namespace :php do
|
|
122
|
-
desc "Run all php tests against the #{application}'s codebase"
|
|
123
|
+
desc "Run all php tests against the #{application}'s codebase" \
|
|
124
|
+
"\n\t(optional) use OPTS=... to pass additional options to the command"
|
|
123
125
|
task test: %w(init_docker up) do
|
|
124
126
|
LOG.debug("Running all php tests in the #{application} codebase")
|
|
125
127
|
|
|
@@ -174,7 +176,8 @@ module Dev
|
|
|
174
176
|
namespace :php do
|
|
175
177
|
desc 'Run Composer Audit on the target application' \
|
|
176
178
|
"\n\tuse MIN_SEVERITY=(info low moderate high critical) to fetch only severity type selected and above (default=high)." \
|
|
177
|
-
"\n\tuse IGNORELIST=(comma delimited list of cwe numbers) removes the entry from the list."
|
|
179
|
+
"\n\tuse IGNORELIST=(comma delimited list of cwe numbers) removes the entry from the list." \
|
|
180
|
+
"\n\t(optional) use OPTS=... to pass additional options to the command"
|
|
178
181
|
task audit: %w(init_docker up_no_deps) do
|
|
179
182
|
opts = []
|
|
180
183
|
opts << '-T' if Dev::Common.new.running_codebuild?
|