ip2location_ruby 8.5.0 → 8.7.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 +4 -4
- data/LICENSE.txt +1 -1
- data/README.md +16 -0
- data/VERSION +1 -1
- data/example.rb +11 -1
- data/ip2location_ruby.gemspec +6 -2
- data/lib/ip2location_ruby/database_config.rb +24 -21
- data/lib/ip2location_ruby.rb +214 -24
- data/rb/data/IP2LOCATION-COUNTRY-INFORMATION-BASIC.CSV +250 -0
- data/rb/data/IP2LOCATION-ISO3166-2.CSV +3625 -0
- data/rb/data/IP2LOCATION-LITE-DB1.IPV6.BIN +0 -0
- data/spec/ip2location_ruby_country_spec.rb +21 -0
- data/spec/ip2location_ruby_database_spec.rb +18 -0
- data/spec/ip2location_ruby_region_spec.rb +9 -0
- metadata +7 -3
Binary file
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
2
|
+
|
3
|
+
describe "Ip2location" do
|
4
|
+
it "work correctly with country get_country_info field" do
|
5
|
+
country = Ip2locationCountry.new('./data/IP2LOCATION-COUNTRY-INFORMATION-BASIC.CSV')
|
6
|
+
record = country.get_country_info('US')
|
7
|
+
expect(record).to include("country_code")
|
8
|
+
end
|
9
|
+
|
10
|
+
it "work correctly with country get_country_info value" do
|
11
|
+
country = Ip2locationCountry.new('./data/IP2LOCATION-COUNTRY-INFORMATION-BASIC.CSV')
|
12
|
+
record = country.get_country_info('US')
|
13
|
+
expect(record["country_code"]).to eq 'US'
|
14
|
+
end
|
15
|
+
|
16
|
+
it "work correctly with country get_country_info capital" do
|
17
|
+
country = Ip2locationCountry.new('./data/IP2LOCATION-COUNTRY-INFORMATION-BASIC.CSV')
|
18
|
+
record = country.get_country_info('MY')
|
19
|
+
expect(record["capital"]).to eq 'Kuala Lumpur'
|
20
|
+
end
|
21
|
+
end
|
@@ -139,6 +139,24 @@ describe "Ip2location" do
|
|
139
139
|
expect(record).to eq 'NOT SUPPORTED'
|
140
140
|
end
|
141
141
|
|
142
|
+
it "work correctly with get_district" do
|
143
|
+
i2l = Ip2location.new.open(File.dirname(__FILE__) + "/assets/IP2LOCATION-LITE-DB1.IPV6.BIN")
|
144
|
+
record = i2l.get_district('8.8.8.8')
|
145
|
+
expect(record).to eq 'NOT SUPPORTED'
|
146
|
+
end
|
147
|
+
|
148
|
+
it "work correctly with get_asn" do
|
149
|
+
i2l = Ip2location.new.open(File.dirname(__FILE__) + "/assets/IP2LOCATION-LITE-DB1.IPV6.BIN")
|
150
|
+
record = i2l.get_asn('8.8.8.8')
|
151
|
+
expect(record).to eq 'NOT SUPPORTED'
|
152
|
+
end
|
153
|
+
|
154
|
+
it "work correctly with get_as" do
|
155
|
+
i2l = Ip2location.new.open(File.dirname(__FILE__) + "/assets/IP2LOCATION-LITE-DB1.IPV6.BIN")
|
156
|
+
record = i2l.get_as('8.8.8.8')
|
157
|
+
expect(record).to eq 'NOT SUPPORTED'
|
158
|
+
end
|
159
|
+
|
142
160
|
it "work correctly with ipv6" do
|
143
161
|
i2l = Ip2location.new.open(File.dirname(__FILE__) + "/assets/IP2LOCATION-LITE-DB1.IPV6.BIN")
|
144
162
|
record = i2l.get_all('2001:4860:4860::8888')
|
@@ -0,0 +1,9 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
2
|
+
|
3
|
+
describe "Ip2location" do
|
4
|
+
it "work correctly with region get_region_code value" do
|
5
|
+
region = Ip2locationRegion.new('./data/IP2LOCATION-ISO3166-2.CSV')
|
6
|
+
record = region.get_region_code('US', 'California')
|
7
|
+
expect(record).to eq 'US-CA'
|
8
|
+
end
|
9
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ip2location_ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 8.
|
4
|
+
version: 8.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ip2location
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bindata
|
@@ -94,10 +94,14 @@ files:
|
|
94
94
|
- lib/ip2location_ruby/i2l_string_data.rb
|
95
95
|
- lib/ip2location_ruby/ip2location_config.rb
|
96
96
|
- lib/ip2location_ruby/ip2location_record.rb
|
97
|
+
- rb/data/IP2LOCATION-COUNTRY-INFORMATION-BASIC.CSV
|
98
|
+
- rb/data/IP2LOCATION-ISO3166-2.CSV
|
97
99
|
- rb/data/IP2LOCATION-LITE-DB1.IPV6.BIN
|
98
100
|
- spec/assets/IP2LOCATION-LITE-DB1.IPV6.BIN
|
101
|
+
- spec/ip2location_ruby_country_spec.rb
|
99
102
|
- spec/ip2location_ruby_database_spec.rb
|
100
103
|
- spec/ip2location_ruby_iptools_spec.rb
|
104
|
+
- spec/ip2location_ruby_region_spec.rb
|
101
105
|
- spec/ip2location_ruby_webservice_spec.rb
|
102
106
|
- spec/spec_helper.rb
|
103
107
|
homepage: https://github.com/ip2location/ip2location-ruby
|
@@ -123,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
123
127
|
- !ruby/object:Gem::Version
|
124
128
|
version: '0'
|
125
129
|
requirements: []
|
126
|
-
rubygems_version: 3.
|
130
|
+
rubygems_version: 3.3.7
|
127
131
|
signing_key:
|
128
132
|
specification_version: 4
|
129
133
|
summary: the ip2location ruby library
|