firespring_dev_commands 2.5.0.pre.alpha.1 → 2.5.0.pre.alpha.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e146e8c9d9c3422dfd7641c6a09ca8c2cdfad6ed430d73aec5808de28ed5d880
4
- data.tar.gz: 273923aae5ccce231fc77174ed89cbe0e4f5ad59b52219b04303f983e9966e1d
3
+ metadata.gz: 4d6edfc008b5f1864dfdb75300af7ea5afe3a9d3fb52ee6ed35918cda8467594
4
+ data.tar.gz: efe9ca062f154d384179159ec94ea30eeaf005fbc6894562cb3a1ff1fbe64ff2
5
5
  SHA512:
6
- metadata.gz: 67223e6ba12a10f798d7fee6b1cab844da41cd3dc65a449330e8c8bd0ef86180cc297889b7365b7b68f5ca8054919e9881693707ecfde02e539d0a7e22c6af51
7
- data.tar.gz: ada0e13a3f2d8022687a2542503bad6bc847bf32fc17604116d17e06ed46ee7efa18aea35635c31a26c07f5ccdd6a3c5083235edaafd77684528bc487c17f3c7
6
+ metadata.gz: 5a852876ecd2168c3899d3ae3bdb05a7874da0dbb63d8ddfc65c8c248a5534065789107cae2265a0b732f7012911094574c8a52136afb6a9a68c048be8ee786c
7
+ data.tar.gz: 24b8762a98e1a89c6e0b36949960250fdebb0f65dabccd187296dec51daadced45d5e6ef4b9e5345740f99f2339e0329823b98c6a466a9e222a801f426cda45d
@@ -88,8 +88,8 @@ module Dev
88
88
 
89
89
  # Build the php test command
90
90
  def test_command
91
- test = []
92
- lint_fix << 'run' << 'test'
91
+ test = base_command
92
+ test << 'run' << 'test'
93
93
  test.concat(Dev::Common.new.tokenize(ENV['OPTS'].to_s))
94
94
  test
95
95
  end
@@ -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?
@@ -6,6 +6,6 @@ module Dev
6
6
  # Use 'v.v.v.pre.alpha.v' for pre-release vesions
7
7
  # Use 'v.v.v.beta.v for beta versions
8
8
  # Use semantic versioning for any releases (https://semver.org/)
9
- VERSION = '2.5.0.pre.alpha.1'.freeze
9
+ VERSION = '2.5.0.pre.alpha.3'.freeze
10
10
  end
11
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: firespring_dev_commands
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0.pre.alpha.1
4
+ version: 2.5.0.pre.alpha.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Firespring