geoip2_c 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d5a69b651e2c52e819229efab1ba68797bc69246
4
- data.tar.gz: 7765d1030ebe1154284f3f12ce150aae860635ca
3
+ metadata.gz: 7d4407340c5c98633cae71cbc6b2c69cfb85a315
4
+ data.tar.gz: 35e0cc0e59278f9d6ce2f5c8079dff2a5a443ed0
5
5
  SHA512:
6
- metadata.gz: c8e5f25c78d00756ecbab14d1c1e2c8456c6fd4c2cfa892c70faec80908fef9ed64eaa5d8ec8d502ab90ec71d682adf8d19005a2d302368a452fa69879bda13f
7
- data.tar.gz: f7cf16c49191c3a19c8c5f0850e55f5dfee66fc7dab13802a7526536ac3d26ba5f1bc49d242ed9c979de7da784ef59a99129b1f0135c530236a891c865fc73cd
6
+ metadata.gz: 03a92ddb4b9d5097ea58a4a734a2bd4a7dc578e2afb01ad735211a6f71eeb139d2ce7cfab3022c90bdd0fded7e79799a89ece649c9886d32cc58d43ebed9bec5
7
+ data.tar.gz: 92a70552ec7f8f3583e49574f88116a19f9575f6b2948889d2e0168097a71cfa9e9ee4bb6809abeb17bc5767b6108691fd3876040c778063f11c7d52b88847d2
data/README.md CHANGED
@@ -8,7 +8,6 @@ So you can get the element you want fast such as city name, country name or etc.
8
8
  ## Requirements
9
9
 
10
10
  * Ruby 2.3 or later
11
- * libmaxminddb
12
11
 
13
12
  NOTE:
14
13
 
@@ -16,12 +15,6 @@ This library uses `Hash#dig` and `Array#dig`.
16
15
  If you want to use this library with Ruby2.1 or Ruby2.2, you can install a gem which adds support `#dig` method.
17
16
  But I don't want to add extra dependency to this library, so I decided not to add extra dependency to support old Ruby versions.
18
17
 
19
- ### libmaxminddb
20
-
21
- * Debian: [libmaxminddb](https://packages.debian.org/search?keywords=libmaxminddb&searchon=names&suite=all&section=all)
22
- * Ubuntu: [Ubuntu official package](http://packages.ubuntu.com/search?keywords=libmaxminddb&searchon=names&suite=all&section=all) or [PPA of MaxMind team](https://launchpad.net/~maxmind/+archive/ubuntu/ppa)
23
- * CentOS/Fedora: [rpms/libmaxminddb](https://admin.fedoraproject.org/pkgdb/package/rpms/libmaxminddb/)
24
-
25
18
  ## Installation
26
19
 
27
20
  Add this line to your application's Gemfile:
@@ -20,7 +20,7 @@ dir_config("maxminddb", header_dirs, lib_dirs)
20
20
  have_func("rb_sym2str", "ruby.h")
21
21
 
22
22
  $LDFLAGS << " -L#{maxminddb_dir}/src/.libs -lmaxminddb"
23
- $CFLAGS << " -std=c99 -fPIC -I#{maxminddb_dir}/src/.libs"
23
+ $CFLAGS << " -std=c99 -fPIC -fms-extensions -I#{maxminddb_dir}/src/.libs"
24
24
  # $CFLAGS << " -g -O0"
25
25
 
26
26
  create_makefile("geoip2/geoip2")
@@ -1,3 +1,3 @@
1
1
  module GeoIP2
2
- VERSION = "0.3.1"
2
+ VERSION = "0.3.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geoip2_c
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - okkez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-26 00:00:00.000000000 Z
11
+ date: 2017-12-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: appraisal
@@ -213,7 +213,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
213
213
  version: '0'
214
214
  requirements: []
215
215
  rubyforge_project:
216
- rubygems_version: 2.6.13
216
+ rubygems_version: 2.6.14
217
217
  signing_key:
218
218
  specification_version: 4
219
219
  summary: Write a short summary, because Rubygems requires one.