firespring_dev_commands 2.5.0.pre.alpha.2 → 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: 83bb511b8d20db07b3d3f001d82464c9c3edf81a7a719206f4840878d1301ecd
4
- data.tar.gz: 07545c8d8388f32658b09b1b4137f57d766456b1bc1e66696493b1e943330ae5
3
+ metadata.gz: 4d6edfc008b5f1864dfdb75300af7ea5afe3a9d3fb52ee6ed35918cda8467594
4
+ data.tar.gz: efe9ca062f154d384179159ec94ea30eeaf005fbc6894562cb3a1ff1fbe64ff2
5
5
  SHA512:
6
- metadata.gz: 67e6bf9497c126a6c00fb008d0341a7f1d8a1a792974fa7196d1c0a2eccf2e8beeb19485c9b4441f3c4e7eccd2a073fc82131ccccb900e77b3b1c8cba0faff0d
7
- data.tar.gz: 45769e10d0434c05e2c87a0fcb545bb6d225839a7fbd9e951be26b6ffa6c6769e052118b30b6cef93d170ef2a74002f8ae80ed1300a944756030846e25d705f8
6
+ metadata.gz: 5a852876ecd2168c3899d3ae3bdb05a7874da0dbb63d8ddfc65c8c248a5534065789107cae2265a0b732f7012911094574c8a52136afb6a9a68c048be8ee786c
7
+ data.tar.gz: 24b8762a98e1a89c6e0b36949960250fdebb0f65dabccd187296dec51daadced45d5e6ef4b9e5345740f99f2339e0329823b98c6a466a9e222a801f426cda45d
@@ -88,7 +88,7 @@ module Dev
88
88
 
89
89
  # Build the php test command
90
90
  def test_command
91
- test = []
91
+ test = base_command
92
92
  test << 'run' << 'test'
93
93
  test.concat(Dev::Common.new.tokenize(ENV['OPTS'].to_s))
94
94
  test
@@ -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.2'.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.2
4
+ version: 2.5.0.pre.alpha.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Firespring