veracodecli 1.0.12 → 1.0.13
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 +4 -4
- data/VERSION +1 -1
- data/lib/veracodecli/api.rb +3 -1
- data/veracodecli.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b940e1d33ae6374b5c61d93f7e61836ca381301e
|
|
4
|
+
data.tar.gz: 90501d0de41cd4e3ad960553deb8345c8dd72d2a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6fe1e7cb0aeb36e557ceb972c9e67b12265e0b449f552568fcc67637066e232cde7dcf31c30d68aded57945f66ea8c30cba53093c127cd35a086a90347d2fd81
|
|
7
|
+
data.tar.gz: 62d423d5a194b2967ac0788fe136cd57c7294530e9c0d35f6b7c0c587106e16999378913a9a171517274a70acbd6020ff30e8b45c2d924d1e09eee5d84cecdb0
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.13
|
data/lib/veracodecli/api.rb
CHANGED
|
@@ -121,8 +121,10 @@ module VeracodeApiMacros
|
|
|
121
121
|
if app_id.nil?
|
|
122
122
|
app_id = create_app_profile(app_name, business_criticality, business_unit, team)
|
|
123
123
|
end
|
|
124
|
-
upload_file app_id, archive_path
|
|
124
|
+
upload = upload_file app_id, archive_path
|
|
125
|
+
ResponseLogger.new.log upload
|
|
125
126
|
submit_prescan app_id
|
|
127
|
+
File.delete archive_path
|
|
126
128
|
end
|
|
127
129
|
|
|
128
130
|
def get_report_macro(app_name)
|
data/veracodecli.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: veracodecli 1.0.
|
|
5
|
+
# stub: veracodecli 1.0.13 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "veracodecli"
|
|
9
|
-
s.version = "1.0.
|
|
9
|
+
s.version = "1.0.13"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|