blocklistshow 1.0 → 1.1

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +3 -0
  3. data/bin/blocklist.rb +0 -1
  4. metadata +4 -5
  5. data/Makefile +0 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 46d7101d4cdf766ddc1d332f752a4c2982acd54643404cc00483d56a1d05712b
4
- data.tar.gz: 36600a16f4683373926827f8cb8654629dff00ba51281a6a3bdc151cebf2d006
3
+ metadata.gz: e81f6d181936fd047ceca1e81ba0f8ae9089ab94083afdd81691f3174510b65b
4
+ data.tar.gz: 8bb3478a87de213a5db44a19fd00b689662c9f36791642846acdb20b0bad8831
5
5
  SHA512:
6
- metadata.gz: 8823bb78fb271dac8bd7703507221e0f30e3ebdfd2ac4cec1a97dd3cccbece4957509d6c8e9ccf8b2b5ccf1cd3d61578ef3ea71984425541151e2c24c925ca02
7
- data.tar.gz: 9b7152a0d4167660e3d1ae67d6e8e26dce9bc91a6dc0e183175a628b17070b84555493e16ace16036c927956c7e4f23691a21eff38e06eb238663ea9af4b6ff3
6
+ metadata.gz: d897b281d6a46addf76372889640e8ea2bc73aee86b8673fdaae1bc66512868d7b4db06f589bc6c4cdcc698b9cc2b72b6f0763a5cc3ecc1b5ef5deaa611adfb0
7
+ data.tar.gz: a1cfc381e812c65101ee0244b9db1bb1ff94e86e99cf17ffe3dbb61518b2daabb0939f74d8a3ae58b2b056b82d48e19b6416d75fdd83a51711db184d40af7518
data/.rubocop.yml CHANGED
@@ -2,6 +2,9 @@ inherit_from: .rubocop_todo.yml
2
2
 
3
3
  # rubocop configuration
4
4
 
5
+ AllCops:
6
+ NewCops: enable
7
+
5
8
  Layout/SpaceInsideArrayLiteralBrackets:
6
9
  EnforcedStyle: space
7
10
  Exclude:
data/bin/blocklist.rb CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  require 'ipaddr'
4
4
  require 'json'
5
- require 'pp'
6
5
 
7
6
  DNS_CACHE_FILE = '/var/db/blacklistd.dns.json'.freeze
8
7
  CC_CACHE_FILE = '/var/db/blacklistd.cc.json'.freeze
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blocklistshow
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.0'
4
+ version: '1.1'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dirk Meyer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-06 00:00:00.000000000 Z
11
+ date: 2023-09-27 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Display of data from blocklistd on FreeBSD with country codes and reverse
14
14
  DNS.
@@ -25,7 +25,6 @@ files:
25
25
  - CHANGELOG.md
26
26
  - Gemfile
27
27
  - LICENSE.txt
28
- - Makefile
29
28
  - README.md
30
29
  - bin/blocklist.rb
31
30
  - bin/geodb-lookup.rb
@@ -41,14 +40,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
41
40
  requirements:
42
41
  - - ">="
43
42
  - !ruby/object:Gem::Version
44
- version: '2.4'
43
+ version: '2.7'
45
44
  required_rubygems_version: !ruby/object:Gem::Requirement
46
45
  requirements:
47
46
  - - ">="
48
47
  - !ruby/object:Gem::Version
49
48
  version: '0'
50
49
  requirements: []
51
- rubygems_version: 3.0.8
50
+ rubygems_version: 3.4.12
52
51
  signing_key:
53
52
  specification_version: 4
54
53
  summary: show blocklistd data
data/Makefile DELETED
@@ -1,7 +0,0 @@
1
-
2
- cop:
3
- rubocop
4
-
5
- auto::
6
- rubocop --auto-gen-config
7
-