s3-antivirus 0.1.0 → 0.2.0
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/CHANGELOG.md +3 -0
- data/README.md +1 -1
- data/lib/s3_antivirus/version.rb +1 -1
- data/s3-antivirus.gemspec +1 -0
- metadata +15 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ead29d92650075faa6d0a8fb31cb90adc1092fc101128d039b722b7ca840f553
|
|
4
|
+
data.tar.gz: 7bde607796adacff3d8d45b9ee17a4c640401fd9204526e7455d6a518cefba93
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 83c86d5abb409fd4774fc2b1da60729d2c53a153a74b8e1c8a1e92fc4a0368f4b4d50a4fb4e5ec1ce7f59b5699970262da6ba1c23a93605adc07404a18411b7d
|
|
7
|
+
data.tar.gz: 574c14a407adb39e5d1883e28035d8ea7fef35f3161b1d05331c6858a1c4f947f0d99c8f846d367deec8625f9dc39760b10de10b9e0418fc01559eca5f3653dd
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://www.boltops.com)
|
|
6
6
|
|
|
7
|
-
Detects if files uploaded to s3 contain a virus with ClamAV and auto-deletes or tags them. Works by processing an SQS Queue that contain messages from [S3 Bucket Event Notifications](https://docs.aws.amazon.com/AmazonS3/latest/user-guide/enable-event-notifications.html).
|
|
7
|
+
Detects if files uploaded to s3 contain a virus with [ClamAV](https://www.clamav.net/) and auto-deletes or tags them. Works by processing an SQS Queue that contain messages from [S3 Bucket Event Notifications](https://docs.aws.amazon.com/AmazonS3/latest/user-guide/enable-event-notifications.html).
|
|
8
8
|
|
|
9
9
|
## Usage
|
|
10
10
|
|
data/lib/s3_antivirus/version.rb
CHANGED
data/s3-antivirus.gemspec
CHANGED
|
@@ -22,6 +22,7 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
spec.add_dependency "aws-sdk-s3"
|
|
23
23
|
spec.add_dependency "aws-sdk-sns"
|
|
24
24
|
spec.add_dependency "aws-sdk-sqs"
|
|
25
|
+
spec.add_dependency "json"
|
|
25
26
|
spec.add_dependency "memoist"
|
|
26
27
|
spec.add_dependency "rainbow"
|
|
27
28
|
spec.add_dependency "recursive-open-struct"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: s3-antivirus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
@@ -66,6 +66,20 @@ dependencies:
|
|
|
66
66
|
- - ">="
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: json
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0'
|
|
76
|
+
type: :runtime
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0'
|
|
69
83
|
- !ruby/object:Gem::Dependency
|
|
70
84
|
name: memoist
|
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|