platphorm-maxmind-db 1.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 +7 -0
- data/CHANGELOG.md +25 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +15 -0
- data/LICENSE-APACHE +202 -0
- data/LICENSE-MIT +17 -0
- data/README.dev.md +34 -0
- data/README.md +63 -0
- data/Rakefile +9 -0
- data/bin/mmdb-benchmark.rb +64 -0
- data/lib/maxmind/db.rb +306 -0
- data/lib/maxmind/db/decoder.rb +235 -0
- data/lib/maxmind/db/errors.rb +10 -0
- data/lib/maxmind/db/file_reader.rb +40 -0
- data/lib/maxmind/db/memory_reader.rb +32 -0
- data/lib/maxmind/db/metadata.rb +89 -0
- data/platphorm-maxmind-db.gemspec +22 -0
- data/test/mmdb_util.rb +26 -0
- data/test/test_decoder.rb +243 -0
- data/test/test_reader.rb +539 -0
- metadata +68 -0
metadata
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: platphorm-maxmind-db
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- William Storey
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-02-24 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: A gem for reading MaxMind DB files. MaxMind DB is a binary file format
|
14
|
+
that stores data indexed by IP address subnets (IPv4 or IPv6).
|
15
|
+
email: support@maxmind.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- CHANGELOG.md
|
21
|
+
- Gemfile
|
22
|
+
- Gemfile.lock
|
23
|
+
- LICENSE-APACHE
|
24
|
+
- LICENSE-MIT
|
25
|
+
- README.dev.md
|
26
|
+
- README.md
|
27
|
+
- Rakefile
|
28
|
+
- bin/mmdb-benchmark.rb
|
29
|
+
- lib/maxmind/db.rb
|
30
|
+
- lib/maxmind/db/decoder.rb
|
31
|
+
- lib/maxmind/db/errors.rb
|
32
|
+
- lib/maxmind/db/file_reader.rb
|
33
|
+
- lib/maxmind/db/memory_reader.rb
|
34
|
+
- lib/maxmind/db/metadata.rb
|
35
|
+
- platphorm-maxmind-db.gemspec
|
36
|
+
- test/mmdb_util.rb
|
37
|
+
- test/test_decoder.rb
|
38
|
+
- test/test_reader.rb
|
39
|
+
homepage: https://github.com/maxmind/MaxMind-DB-Reader-ruby
|
40
|
+
licenses:
|
41
|
+
- Apache-2.0
|
42
|
+
- MIT
|
43
|
+
metadata:
|
44
|
+
bug_tracker_uri: https://github.com/maxmind/MaxMind-DB-Reader-ruby/issues
|
45
|
+
changelog_uri: https://github.com/maxmind/MaxMind-DB-Reader-ruby/blob/master/CHANGELOG.md
|
46
|
+
documentation_uri: https://github.com/maxmind/MaxMind-DB-Reader-ruby
|
47
|
+
homepage_uri: https://github.com/maxmind/MaxMind-DB-Reader-ruby
|
48
|
+
source_code_uri: https://github.com/maxmind/MaxMind-DB-Reader-ruby
|
49
|
+
post_install_message:
|
50
|
+
rdoc_options: []
|
51
|
+
require_paths:
|
52
|
+
- lib
|
53
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: 2.2.0
|
58
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
requirements: []
|
64
|
+
rubygems_version: 3.1.2
|
65
|
+
signing_key:
|
66
|
+
specification_version: 4
|
67
|
+
summary: A gem for reading MaxMind DB files.
|
68
|
+
test_files: []
|