dap 1.2.8 → 1.3.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: 2e0ed16a920babb2efdaa5afc286a117525da9dd9c0603b1c5c3af46226cd808
4
- data.tar.gz: 59207589322edf4886493847efcc449ef4eb6fccfebf7c3f0ea96fd940e958f5
3
+ metadata.gz: df1661ddbdc24e5d02c51f4b0413d39bde6c0132b75f63effeb03b91de3ea429
4
+ data.tar.gz: 80548483abe67f4224d571ca5a22d2dc2072f529c21f661e7d59710eaaeba519
5
5
  SHA512:
6
- metadata.gz: e46e7fcaf7c884f78ef7698a860984d623dfabf61f58986830bedcc7b06d1df138a943859269b2c8fd5a9ed8e2e492fca0ef57da829363a0db5b2d927310a9fd
7
- data.tar.gz: 67c341369782f84f542b82babf35a176c8f866de0d59ea6539c1332eedcce1b6df4180bf66beede6b11c6c45070440635a64c40f80bf2f503212b5c897e0328c
6
+ metadata.gz: abd2cfa7fec94f7a12ec195e7ebf0acc2625f06fa558ef367392d92e91c32a56d54ddb0e8f5aba3f9bc7763a99f6fef6cbbe397023310c9a472e692a0d1cd840
7
+ data.tar.gz: 94fffd07e7d092ff0e007222e168cf185e17bec339f675765d7f6dd83c9b141d208bf53a6bc604dd6961b5228ac0d972ce5d71429cf45436d2a90f94759f8642
data/.gitignore CHANGED
@@ -4,6 +4,9 @@
4
4
 
5
5
  # Ignore geoip data file
6
6
  data/geoip.dat
7
+ data/GeoLite2-ASN.mmdb
8
+ data/GeoLite2-City.mmdb
9
+ data/GeoLite2-Country.mmdb
7
10
 
8
11
  /pkg/
9
12
 
data/Dockerfile.testing CHANGED
@@ -1,4 +1,4 @@
1
- FROM ubuntu:18.04
1
+ FROM ubuntu:20.04
2
2
 
3
3
  ENV TEST_DIR /opt/bats_testing
4
4
 
@@ -14,7 +14,7 @@ RUN /bin/bash -l -c "rvm requirements"
14
14
  RUN /bin/bash -l -c "rvm install 2.4.5"
15
15
  RUN /bin/bash -l -c "rvm use 2.4.5 && gem update --system && gem install bundler"
16
16
  ADD Gemfile* $TEST_DIR/
17
- RUN /bin/bash -l -c "cd $TEST_DIR && rvm use 2.4.5 && bundle install"
17
+ RUN /bin/bash -l -c "cd $TEST_DIR && rvm use 2.4.5 && bundle update --bundler && bundle install"
18
18
 
19
19
  # install maxmind legacy data
20
20
  RUN mkdir /var/lib/geoip
data/Gemfile CHANGED
@@ -6,10 +6,10 @@ gem 'net-dns'
6
6
  gem 'bit-struct'
7
7
  gem 'geoip-c'
8
8
  gem 'maxmind-db', '~> 1.0.0'
9
- gem 'recog', '>=2.3.8'
9
+ gem 'recog', '~> 3.0'
10
10
 
11
11
  group :test do
12
12
  gem 'rspec', '~> 3.9.0'
13
- gem 'cucumber', '~> 1.3.16'
14
- gem 'aruba', '~> 0.6.1'
13
+ gem 'cucumber', '~> 4.0.0'
14
+ gem 'aruba', '~> 0.6.2'
15
15
  end
data/Gemfile.lock CHANGED
@@ -1,62 +1,104 @@
1
1
  GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
+ activesupport (7.0.4)
5
+ concurrent-ruby (~> 1.0, >= 1.0.2)
6
+ i18n (>= 1.6, < 2)
7
+ minitest (>= 5.1)
8
+ tzinfo (~> 2.0)
4
9
  aruba (0.6.2)
5
10
  childprocess (>= 0.3.6)
6
11
  cucumber (>= 1.1.1)
7
12
  rspec-expectations (>= 2.7.0)
8
- bit-struct (0.16)
13
+ bit-struct (0.17)
9
14
  builder (3.2.4)
10
- childprocess (3.0.0)
11
- cucumber (1.3.20)
12
- builder (>= 2.1.2)
13
- diff-lcs (>= 1.1.3)
14
- gherkin (~> 2.12)
15
- multi_json (>= 1.7.5, < 2.0)
16
- multi_test (>= 0.1.2)
15
+ childprocess (4.1.0)
16
+ concurrent-ruby (1.1.10)
17
+ cucumber (4.0.1)
18
+ builder (~> 3.2, >= 3.2.3)
19
+ cucumber-core (~> 7.0, >= 7.0.0)
20
+ cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
21
+ cucumber-gherkin (~> 13.0, >= 13.0.0)
22
+ cucumber-html-formatter (~> 6.0, >= 6.0.1)
23
+ cucumber-messages (~> 12.1, >= 12.1.1)
24
+ cucumber-wire (~> 3.0, >= 3.0.0)
25
+ diff-lcs (~> 1.3, >= 1.3, < 1.4)
26
+ multi_test (~> 0.1, >= 0.1.2)
27
+ sys-uname (~> 1.0, >= 1.0.2)
28
+ cucumber-core (7.0.0)
29
+ cucumber-gherkin (~> 13.0, >= 13.0.0)
30
+ cucumber-messages (~> 12.1, >= 12.1.1)
31
+ cucumber-tag-expressions (~> 2.0, >= 2.0.4)
32
+ cucumber-cucumber-expressions (10.3.0)
33
+ cucumber-gherkin (13.0.0)
34
+ cucumber-messages (~> 12.0, >= 12.0.0)
35
+ cucumber-html-formatter (6.0.3)
36
+ cucumber-messages (~> 12.1, >= 12.1.1)
37
+ cucumber-messages (12.4.0)
38
+ protobuf-cucumber (~> 3.10, >= 3.10.8)
39
+ cucumber-tag-expressions (2.0.4)
40
+ cucumber-wire (3.0.0)
41
+ cucumber-core (~> 7.0, >= 7.0.0)
42
+ cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
43
+ cucumber-messages (~> 12.1, >= 12.1.1)
17
44
  diff-lcs (1.3)
45
+ ffi (1.15.5)
18
46
  geoip-c (0.9.1)
19
- gherkin (2.12.2)
20
- multi_json (~> 1.3)
21
47
  htmlentities (4.3.4)
48
+ i18n (1.12.0)
49
+ concurrent-ruby (~> 1.0)
22
50
  maxmind-db (1.0.0)
23
- mini_portile2 (2.4.0)
24
- multi_json (1.14.1)
51
+ middleware (0.1.0)
52
+ mini_portile2 (2.8.0)
53
+ minitest (5.16.3)
25
54
  multi_test (0.1.2)
26
55
  net-dns (0.9.0)
27
- nokogiri (1.10.9)
28
- mini_portile2 (~> 2.4.0)
29
- oj (3.10.6)
30
- recog (2.3.8)
56
+ nokogiri (1.13.8)
57
+ mini_portile2 (~> 2.8.0)
58
+ racc (~> 1.4)
59
+ oj (3.13.21)
60
+ protobuf-cucumber (3.10.8)
61
+ activesupport (>= 3.2)
62
+ middleware
63
+ thor
64
+ thread_safe
65
+ racc (1.6.0)
66
+ recog (3.0.2)
31
67
  nokogiri
32
68
  rspec (3.9.0)
33
69
  rspec-core (~> 3.9.0)
34
70
  rspec-expectations (~> 3.9.0)
35
71
  rspec-mocks (~> 3.9.0)
36
- rspec-core (3.9.2)
72
+ rspec-core (3.9.3)
37
73
  rspec-support (~> 3.9.3)
38
- rspec-expectations (3.9.2)
74
+ rspec-expectations (3.9.4)
39
75
  diff-lcs (>= 1.2.0, < 2.0)
40
76
  rspec-support (~> 3.9.0)
41
77
  rspec-mocks (3.9.1)
42
78
  diff-lcs (>= 1.2.0, < 2.0)
43
79
  rspec-support (~> 3.9.0)
44
- rspec-support (3.9.3)
80
+ rspec-support (3.9.4)
81
+ sys-uname (1.2.2)
82
+ ffi (~> 1.1)
83
+ thor (1.2.1)
84
+ thread_safe (0.3.6)
85
+ tzinfo (2.0.5)
86
+ concurrent-ruby (~> 1.0)
45
87
 
46
88
  PLATFORMS
47
89
  ruby
48
90
 
49
91
  DEPENDENCIES
50
- aruba (~> 0.6.1)
92
+ aruba (~> 0.6.2)
51
93
  bit-struct
52
- cucumber (~> 1.3.16)
94
+ cucumber (~> 4.0.0)
53
95
  geoip-c
54
96
  htmlentities
55
97
  maxmind-db (~> 1.0.0)
56
98
  net-dns
57
99
  oj
58
- recog (>= 2.3.8)
100
+ recog (~> 3.0)
59
101
  rspec (~> 3.9.0)
60
102
 
61
103
  BUNDLED WITH
62
- 2.0.2
104
+ 1.17.3
data/lib/dap/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Dap
2
- VERSION = "1.2.8"
2
+ VERSION = "1.3.0"
3
3
  end
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: 1.2.8
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rapid7 Research
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-18 00:00:00.000000000 Z
11
+ date: 2022-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -282,7 +282,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
282
282
  - !ruby/object:Gem::Version
283
283
  version: '0'
284
284
  requirements: []
285
- rubygems_version: 3.0.6
285
+ rubygems_version: 3.1.6
286
286
  signing_key:
287
287
  specification_version: 4
288
288
  summary: 'DAP: The Data Analysis Pipeline'