dap 0.1.15 → 0.1.16
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/README.md +1 -1
- data/lib/dap/filter/geoip.rb +1 -1
- data/lib/dap/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9410149459a879f63da538a6b9fdad8d496e764c
|
|
4
|
+
data.tar.gz: 22949dbecc194bebceab8d0b92fcbe3aa6161a72
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 69852817238899b88b8a351ae3191e347ff93fddb8a5857dace314ea34541688e5a87e888a1b739480056fe1d7f1d5b8c5a9cb72ff23b52d770e34fad57a6ae7
|
|
7
|
+
data.tar.gz: 66345b1171f20da5fa0d419dfab435155d07037d9b1dbc6322d731be02f5727cb93bac3dcb3bec44add5a34ea931085b213a3cc94cadf2248f2fea318a025891
|
data/README.md
CHANGED
|
@@ -22,7 +22,7 @@ Using system managed/installed Rubies is possible but fraught with peril.
|
|
|
22
22
|
DAP depends on [Maxmind's geoip database](http://dev.maxmind.com/geoip/legacy/downloadable/) to be able to append geographic metadata to analyzed datasets. If you intend on using this capability, run the following as `root`:
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
sudo mkdir -p /var/lib/geoip && cd /var/lib/geoip && sudo wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz && sudo gunzip GeoLiteCity.dat.gz && sudo
|
|
25
|
+
sudo mkdir -p /var/lib/geoip && cd /var/lib/geoip && sudo wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz && sudo gunzip GeoLiteCity.dat.gz && sudo wget http://geolite.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz && sudo gunzip GeoIPASNum.dat.gz
|
|
26
26
|
|
|
27
27
|
```
|
|
28
28
|
|
data/lib/dap/filter/geoip.rb
CHANGED
|
@@ -8,7 +8,7 @@ module GeoIPLibrary
|
|
|
8
8
|
File.expand_path( File.join( File.dirname(__FILE__), "..", "..", "..", "data")),
|
|
9
9
|
"/var/lib/geoip"
|
|
10
10
|
]
|
|
11
|
-
GEOIP_CITY = %W{ geoip.dat geoip_city.dat GeoCity.dat IP_V4_CITY.dat GeoCityLite.dat }
|
|
11
|
+
GEOIP_CITY = %W{ geoip.dat geoip_city.dat GeoCity.dat IP_V4_CITY.dat GeoCityLite.dat GeoLiteCity.dat }
|
|
12
12
|
GEOIP_ORGS = %W{ geoip_org.dat IP_V4_ORG.dat }
|
|
13
13
|
GEOIP_ASN = %W{ GeoIPASNum.dat }
|
|
14
14
|
|
data/lib/dap/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.16
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rapid7 Research
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-06-
|
|
11
|
+
date: 2018-06-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -253,7 +253,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
253
253
|
version: '0'
|
|
254
254
|
requirements: []
|
|
255
255
|
rubyforge_project:
|
|
256
|
-
rubygems_version: 2.
|
|
256
|
+
rubygems_version: 2.6.11
|
|
257
257
|
signing_key:
|
|
258
258
|
specification_version: 4
|
|
259
259
|
summary: 'DAP: The Data Analysis Pipeline'
|