├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── shard.yml ├── spec ├── ip2country_spec.cr └── spec_helper.cr └── src ├── ip2country.cr └── ip2country ├── cc2country.cr ├── ip2cc.cr └── ipaddr.cr /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcage/ip2country/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: crystal 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcage/ip2country/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcage/ip2country/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcage/ip2country/HEAD/README.md -------------------------------------------------------------------------------- /shard.yml: -------------------------------------------------------------------------------- 1 | name: ip2country 2 | version: 0.1.5 3 | 4 | authors: 5 | - ʕ·ᴥ·ʔAKJ 6 | 7 | license: MIT 8 | 9 | crystal: 0.34.0 10 | -------------------------------------------------------------------------------- /spec/ip2country_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcage/ip2country/HEAD/spec/ip2country_spec.cr -------------------------------------------------------------------------------- /spec/spec_helper.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcage/ip2country/HEAD/spec/spec_helper.cr -------------------------------------------------------------------------------- /src/ip2country.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcage/ip2country/HEAD/src/ip2country.cr -------------------------------------------------------------------------------- /src/ip2country/cc2country.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcage/ip2country/HEAD/src/ip2country/cc2country.cr -------------------------------------------------------------------------------- /src/ip2country/ip2cc.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcage/ip2country/HEAD/src/ip2country/ip2cc.cr -------------------------------------------------------------------------------- /src/ip2country/ipaddr.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcage/ip2country/HEAD/src/ip2country/ipaddr.cr --------------------------------------------------------------------------------