idn-ruby 0.1.4 → 0.1.5

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/CHANGES +4 -0
  3. data/README.md +3 -3
  4. data/ext/extconf.rb +2 -0
  5. metadata +2 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4d37d4b698b2005b38d843ba1d8eaee2375d6d14cd1d02b9ccc58d8655229f0c
4
- data.tar.gz: c55099a450b32761493ae36aa0cdaa9f973bb24c4f690713d8a3d06056a6f451
3
+ metadata.gz: 2adb4d83908e191f088eb24930ba0b5abad1b1965196a358cd5ab937c50f347f
4
+ data.tar.gz: 024ce9f73c14ac9041b88d014dc3f1d5021ac2819190341bcd22f8ba10c34b79
5
5
  SHA512:
6
- metadata.gz: 3733b52a4e27acce408ef9c6a1a13a164030dc2a7b0a9b6b805da2161359b9d39b50f0c7f567b6a75a22929d020c5b05c4161590823b43b443af9ce9d5d18445
7
- data.tar.gz: 46a28b9dbedc732b705fce2975c67a61c28636a7bf1bc7865914e8956c613942c7421503c0718ae2167e3b64897a13fa0757bba3c1d86fe779be06e0260f76f4
6
+ metadata.gz: 27ae3f1953fb321d497d8024c4c23f3e3fa398180a3f5692821fc489056d29e5785d7efb4fb8ae7b7813505a059809bd5dda9e84ca475c809d7fd26a08f656c9
7
+ data.tar.gz: 229386ef58c08aebc05998d3871a3d0fbd15845426e99057046342b8b9b9affb2abb42f20143196552a6762e8c8b679177a1e5b7f3e3cf38ebe3396adaee02cc
data/CHANGES CHANGED
@@ -1,3 +1,7 @@
1
+ Changes with IDN 0.1.5 (2022-11-16)
2
+
3
+ * Minor updates to support compilation of M1 silicon.
4
+
1
5
  Changes with IDN 0.1.4 (2021-11-02)
2
6
 
3
7
  * nfkc_normalize raises ArgumentError instead of returning nil for
data/README.md CHANGED
@@ -52,20 +52,20 @@ Simply invoke the standard RubyGems commands (install, update, ...),
52
52
  for example:
53
53
 
54
54
  ```bash
55
- gem install --remote --test idn
55
+ gem install --remote idn-ruby
56
56
  ```
57
57
 
58
58
  or if the GNU LibIDN library can only be found in a non-standard location
59
59
 
60
60
  ```bash
61
- gem install --remote --test idn -- \
61
+ gem install --remote idn-ruby \
62
62
  --with-idn-dir=/path/to/non/standard/location
63
63
  ```
64
64
 
65
65
  or in an even more complex setup
66
66
 
67
67
  ```bash
68
- gem install --remote --test idn -- \
68
+ gem install --remote idn-ruby -- \
69
69
  --with-idn-lib=/path/to/non/standard/location/lib \
70
70
  --with-idn-include=/path/to/non/standard/location/include
71
71
  ```
data/ext/extconf.rb CHANGED
@@ -21,6 +21,8 @@
21
21
 
22
22
  require 'mkmf'
23
23
 
24
+ pkg_config 'libidn'
25
+
24
26
  @libs = ['idn']
25
27
  @headers = ['idna.h', 'punycode.h', 'stringprep.h']
26
28
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: idn-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erik Abele
@@ -58,8 +58,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
58
58
  - !ruby/object:Gem::Version
59
59
  version: '0'
60
60
  requirements: []
61
- rubyforge_project:
62
- rubygems_version: 2.7.6
61
+ rubygems_version: 3.2.19
63
62
  signing_key:
64
63
  specification_version: 3
65
64
  summary: LibIDN Ruby Bindings.