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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 627d0930ad4358631d348d641ab1d99de75f00760b01ab9d29a418705e4a3202
4
- data.tar.gz: 3942b5a0a8d18cf3682edd447383942e6c9bcae864b9d872d8352bed64ad5039
3
+ metadata.gz: ead29d92650075faa6d0a8fb31cb90adc1092fc101128d039b722b7ca840f553
4
+ data.tar.gz: 7bde607796adacff3d8d45b9ee17a4c640401fd9204526e7455d6a518cefba93
5
5
  SHA512:
6
- metadata.gz: d725114194aeaaddb285f91eda29e8f9a9ee9ab8d8bcad6ea8fda3618c9effe84861e8b4b2d130c0c671b26d5da1f43d88e33f7abf677708f37f01f357c93e79
7
- data.tar.gz: fb6793d2c93008cef13d75093acee30f19af07b4add6bdcf7c02e8d67317fa21ccbf6f05f7bb25180b5129337e0a5deb45581c04ad5c3f8a8cae5b64b137e2a0
6
+ metadata.gz: 83c86d5abb409fd4774fc2b1da60729d2c53a153a74b8e1c8a1e92fc4a0368f4b4d50a4fb4e5ec1ce7f59b5699970262da6ba1c23a93605adc07404a18411b7d
7
+ data.tar.gz: 574c14a407adb39e5d1883e28035d8ea7fef35f3161b1d05331c6858a1c4f947f0d99c8f846d367deec8625f9dc39760b10de10b9e0418fc01559eca5f3653dd
data/CHANGELOG.md CHANGED
@@ -3,5 +3,8 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [0.2.0]
7
+ - add json dependency
8
+
6
9
  ## [0.1.0]
7
10
  - Initial release.
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  [![BoltOps Badge](https://img.boltops.com/boltops/badges/boltops-badge.png)](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
 
@@ -1,3 +1,3 @@
1
1
  module S3Antivirus
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
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.1.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