deepsecurity 0.0.22hf1 → 0.0.22
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.
- data/CHANGELOG.md +1 -5
- data/README.md +1 -9
- data/lib/deepsecurity/version.rb +1 -1
- data/lib/savon_helper/type_mappings.rb +1 -1
- metadata +9 -6
data/CHANGELOG.md
CHANGED
@@ -2,11 +2,6 @@
|
|
2
2
|
|
3
3
|
## CHANGELOG (notable new features or fixes)
|
4
4
|
|
5
|
-
|
6
|
-
### 0.0.22hf1
|
7
|
-
|
8
|
-
* Fix call for warn_unparseable_data()
|
9
|
-
|
10
5
|
### 0.0.22
|
11
6
|
|
12
7
|
* Use Ruby 1.9.3-p448 on Windows for installer
|
@@ -17,6 +12,7 @@
|
|
17
12
|
* Extended `-fields` to accept a filename to read the fields from
|
18
13
|
* Added warning for unparseable entries
|
19
14
|
|
15
|
+
|
20
16
|
### 0.0.20
|
21
17
|
|
22
18
|
* `dsc` command refactoring
|
data/README.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
Provide a Ruby Wrapper for Trend Micro's DeepSecurity SOAP API. Also includes a command line binary `dsc` which exposes
|
4
4
|
some of the functionality to shell scripts.
|
5
5
|
|
6
|
-
## Installation
|
6
|
+
## Installation
|
7
7
|
|
8
8
|
Add this line to your application's Gemfile:
|
9
9
|
|
@@ -17,14 +17,6 @@ Or install it yourself as:
|
|
17
17
|
|
18
18
|
$ gem install deepsecurity
|
19
19
|
|
20
|
-
## Installation (Windows)
|
21
|
-
|
22
|
-
If you are using Windows and do feel familiar with the command line you may also download a bundled installer under
|
23
|
-
http://deepsecurity-gem.s3.amazonaws.com/index.html
|
24
|
-
|
25
|
-
The bundled installer allows you to install a current Ruby version and the deepsecurity gem using a simple graphical
|
26
|
-
installer.
|
27
|
-
|
28
20
|
## Usage
|
29
21
|
|
30
22
|
TODO: Write usage instructions here
|
data/lib/deepsecurity/version.rb
CHANGED
@@ -58,7 +58,7 @@ module SavonHelper
|
|
58
58
|
# Warn about unparsable mapping
|
59
59
|
# @todo Check if mappings can be derived from klass
|
60
60
|
# @param data [Hash, Object] Source Savon data
|
61
|
-
def
|
61
|
+
def warn_unparseable_data(data, interface)
|
62
62
|
message = "Can't parse #{type_string} #{@name.inspect}: #{data.inspect}"
|
63
63
|
interface.logger.warn(message)
|
64
64
|
self.default_value()
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: deepsecurity
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.0.22
|
5
|
+
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Udo Schneider
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-10-
|
12
|
+
date: 2013-10-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: savon
|
@@ -221,13 +221,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
221
221
|
version: '0'
|
222
222
|
segments:
|
223
223
|
- 0
|
224
|
-
hash:
|
224
|
+
hash: -771091231584410787
|
225
225
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
226
226
|
none: false
|
227
227
|
requirements:
|
228
|
-
- - ! '
|
228
|
+
- - ! '>='
|
229
229
|
- !ruby/object:Gem::Version
|
230
|
-
version:
|
230
|
+
version: '0'
|
231
|
+
segments:
|
232
|
+
- 0
|
233
|
+
hash: -771091231584410787
|
231
234
|
requirements: []
|
232
235
|
rubyforge_project:
|
233
236
|
rubygems_version: 1.8.24
|