ae_easy-qa 0.0.22 → 0.0.23
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/lib/ae_easy/qa/validate_internal.rb +10 -5
- data/lib/ae_easy/qa/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a1ce11607e5b2e7535b9aeebeb577c1e59bf07de7e19a6917103d3bd9b21737
|
4
|
+
data.tar.gz: a88348db9faeee8202d7b97e0356345305474c87e6cc0ac63ba65e733af9b737
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8c1b5796b0152aaff398211f51f8bf8be19949659313830f69288b1cda9ca7a73a4fd50321ede09ad8e8d32084508d7ba495813f2841e33a2bcb7a13f0f41ec
|
7
|
+
data.tar.gz: 44797dc5d2a9d73a6bf214f07c633be4bdb95112e7c8b8238b12462a8cb6d4325cd76ce3d862a6f0b6485ac7786f7b241df069d811db0acfcfcc0f225c7751fe
|
@@ -47,11 +47,16 @@ module AeEasy
|
|
47
47
|
end
|
48
48
|
|
49
49
|
def run
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
50
|
+
begin
|
51
|
+
output_scraper
|
52
|
+
if status_ok?
|
53
|
+
validate_collections if collections && collections.any?
|
54
|
+
else
|
55
|
+
output_response
|
56
|
+
return nil
|
57
|
+
end
|
58
|
+
rescue StandardError => e
|
59
|
+
puts "An error has occurred for the scraper named '#{scraper_name}': #{e}"
|
55
60
|
return nil
|
56
61
|
end
|
57
62
|
end
|
data/lib/ae_easy/qa/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ae_easy-qa
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.23
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Lynam
|
@@ -107,7 +107,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
107
107
|
- !ruby/object:Gem::Version
|
108
108
|
version: '0'
|
109
109
|
requirements: []
|
110
|
-
|
110
|
+
rubyforge_project:
|
111
|
+
rubygems_version: 2.7.8
|
111
112
|
signing_key:
|
112
113
|
specification_version: 4
|
113
114
|
summary: AnswersEngine Easy Quality Assurance gem
|