clamav-client 3.0.0 → 3.1.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/.travis.yml +2 -5
- data/ChangeLog.md +11 -4
- data/clamav-client.gemspec +3 -3
- metadata +4 -12
- data/test/fixtures/clamavtest.gz +0 -0
- data/test/fixtures/clamavtest.txt +0 -1
- data/test/fixtures/clamavtest.zip +0 -0
- data/test/fixtures/innocent.txt +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f0765081b986a543225746b34463d67904e78d24
|
|
4
|
+
data.tar.gz: 02d2787cb4e94a0551a368571429b3ea603b2e73
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7f0fd0c5d6328d0335990864a2bfa8a7431134b864d6348ccb01d0f7576c0fd64256f0b72e7dd6bbfd766b29cf69a12f948335d1df82f646395a7a20aa879931
|
|
7
|
+
data.tar.gz: 1898edd1566913d9a2702a5372adbf8c870d5e20be424c81e362a8708de1280a67132272b871fb0315826bd648d9ec1a57865c9443be384fe7707f4f903324ac
|
data/.travis.yml
CHANGED
data/ChangeLog.md
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
|
-
# Unreleased (3.
|
|
1
|
+
# Unreleased (3.1.0)
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
3
|
+
# 3.0.1
|
|
4
|
+
|
|
5
|
+
* Drop support for old Rubies (prior to 2.2)
|
|
6
|
+
* Drop fixtures from the gem
|
|
6
7
|
|
|
8
|
+
# 3.0.0
|
|
9
|
+
|
|
10
|
+
* README.md: Added instructions to install ClamAV on Ubuntu, RedHat and CentOS
|
|
11
|
+
* INSTREAM: fixed a problem parsing the "FOUND" response
|
|
12
|
+
* VirusReponse: The virus file name is now held by the VirusReponse object
|
|
13
|
+
* test/ci-setup.sh : Configure ClamAV on the CI
|
|
7
14
|
|
|
8
15
|
# 2.0.1
|
|
9
16
|
|
data/clamav-client.gemspec
CHANGED
|
@@ -3,15 +3,15 @@ $:<< 'lib'
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |spec|
|
|
5
5
|
spec.name = "clamav-client"
|
|
6
|
-
spec.version = "3.
|
|
6
|
+
spec.version = "3.1.0"
|
|
7
7
|
spec.authors = ["Franck Verrot"]
|
|
8
8
|
spec.email = ["franck@verrot.fr"]
|
|
9
9
|
spec.summary = %q{ClamAV::Client connects to a Clam Anti-Virus clam daemon and send commands.}
|
|
10
10
|
spec.description = spec.summary
|
|
11
11
|
spec.homepage = "https://github.com/franckverrot/clamav-client"
|
|
12
|
-
spec.license = "
|
|
12
|
+
spec.license = "GPL-v3"
|
|
13
13
|
|
|
14
|
-
spec.files = `git ls-files -
|
|
14
|
+
spec.files = `git ls-files | grep -vE test/fixtures`.split("\n")
|
|
15
15
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
16
16
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
17
17
|
spec.require_paths = ["lib"]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: clamav-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Franck Verrot
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-05-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -97,10 +97,6 @@ files:
|
|
|
97
97
|
- lib/clamav/wrappers/new_line_wrapper.rb
|
|
98
98
|
- lib/clamav/wrappers/null_termination_wrapper.rb
|
|
99
99
|
- test/ci-setup.sh
|
|
100
|
-
- test/fixtures/clamavtest.gz
|
|
101
|
-
- test/fixtures/clamavtest.txt
|
|
102
|
-
- test/fixtures/clamavtest.zip
|
|
103
|
-
- test/fixtures/innocent.txt
|
|
104
100
|
- test/integration/clamav/client_test.rb
|
|
105
101
|
- test/integration/clamav/util_test.rb
|
|
106
102
|
- test/test_helper.rb
|
|
@@ -113,7 +109,7 @@ files:
|
|
|
113
109
|
- test/unit/clamav/wrappers/null_termination_wrapper_test.rb
|
|
114
110
|
homepage: https://github.com/franckverrot/clamav-client
|
|
115
111
|
licenses:
|
|
116
|
-
-
|
|
112
|
+
- GPL-v3
|
|
117
113
|
metadata: {}
|
|
118
114
|
post_install_message:
|
|
119
115
|
rdoc_options: []
|
|
@@ -131,16 +127,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
131
127
|
version: '0'
|
|
132
128
|
requirements: []
|
|
133
129
|
rubyforge_project:
|
|
134
|
-
rubygems_version: 2.
|
|
130
|
+
rubygems_version: 2.6.4
|
|
135
131
|
signing_key:
|
|
136
132
|
specification_version: 4
|
|
137
133
|
summary: ClamAV::Client connects to a Clam Anti-Virus clam daemon and send commands.
|
|
138
134
|
test_files:
|
|
139
135
|
- test/ci-setup.sh
|
|
140
|
-
- test/fixtures/clamavtest.gz
|
|
141
|
-
- test/fixtures/clamavtest.txt
|
|
142
|
-
- test/fixtures/clamavtest.zip
|
|
143
|
-
- test/fixtures/innocent.txt
|
|
144
136
|
- test/integration/clamav/client_test.rb
|
|
145
137
|
- test/integration/clamav/util_test.rb
|
|
146
138
|
- test/test_helper.rb
|
data/test/fixtures/clamavtest.gz
DELETED
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
$CEliacmaTrESTuScikgsn$FREE-TEST-SIGNATURE$EEEEE$
|
|
Binary file
|
data/test/fixtures/innocent.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Innocent!
|