unf_ext 0.0.7.5 → 0.0.7.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 1ce5837123a23c065c61acadf7a0bbc301b73e18
4
- data.tar.gz: 4b3dd4ca2a740514e3f342cbf14c9604261cc704
2
+ SHA256:
3
+ metadata.gz: 82c5c71190d92ae3329484e1fa3b2e560d1a7753809569a31b91b1c074c06f78
4
+ data.tar.gz: 563c27f78de0050af5764e1e4a0c69b8884ddccb2ab0c004244a3298d13f2fe8
5
5
  SHA512:
6
- metadata.gz: 2eca7b8e41f16c7c48eff737db7a6644ee7e2dfe0ad165b32971af71514931aacbb9485d78c318a38bf1d2d6a3f5d7db87150f448d3f61baad2f364a06815952
7
- data.tar.gz: 3f6f7bad312e97aae5039b5d0ecd91e89ae7dd4fce9762ac0a17880fdf0e8474a6f3aaee1ae02a951cc0831963eda27bd9cb07198af9cd4cc936a7e94fb3a707
6
+ metadata.gz: 7e1860f015d6f3f193bb74f87fb21e272fee6bb50bd1f92d5e91cd63d43bac1749c10c0ed69be0cdc6a7955761034bc714bcc32af5942caddbccc62fc0fd8488
7
+ data.tar.gz: fa2b564298a596753bfe9eecee02a2259795a46a786a1d76e1ad22ba293b97c880cb18df8095bdbcee16a3363a56481305f76b6e02263d209d687d540cc89ca8
@@ -7,8 +7,9 @@ rvm:
7
7
  - 2.0
8
8
  - 2.1
9
9
  - 2.2
10
- - 2.3.4
11
- - 2.4.1
10
+ - 2.3
11
+ - 2.4
12
+ - 2.5
12
13
  - ruby-head
13
14
  - rbx-18mode
14
15
  - rbx-19mode
@@ -1,3 +1,7 @@
1
+ ## 0.0.7.6 (2019-03-19)
2
+
3
+ - Version bump just for adding Windows binaries for Ruby 2.6.
4
+
1
5
  ## 0.0.7.5 (2018-02-06)
2
6
 
3
7
  - Version bump just for adding Windows binaries for Ruby 2.5.
@@ -4,6 +4,26 @@ if with_config('static-libstdc++')
4
4
  $LDFLAGS << ' ' << `#{CONFIG['CC']} -print-file-name=libstdc++.a`.chomp
5
5
  else
6
6
  have_library('stdc++')
7
+
8
+ case RbConfig::CONFIG['host_os']
9
+ when /solaris(!?2.11)/
10
+ # Do a little trickery here to enable C++ standard on Solaris 11 if found.
11
+ # This also forces 64bit compilation mode.
12
+ $CXX = CONFIG['CXX']
13
+ $CXX << ' ' << '-m64'
14
+ $CFLAGS = CONFIG['CFLAGS'].gsub(/-std=c99/, '')
15
+ $CFLAGS << ' ' << '-m64 -std=c++11'
16
+ $CPPFLAGS = CONFIG['CFLAGS'].gsub(/-std=c99/, '')
17
+ $CPPFLAGS << ' ' << '-m64 -std=c++11'
18
+ $CXXFLAGS = CONFIG['CFLAGS'].gsub(/-std=c99/, '')
19
+ $CXXFLAGS << ' ' << '-m64 -std=c++11'
20
+ when /aix/
21
+ # Compiler flags necessary on AIX.
22
+ # rubocop:disable Style/GlobalVars
23
+ $CFLAGS << ' ' << '-D_ALL_SOURCE=1'
24
+ $CPPFLAGS << ' ' << '-D_ALL_SOURCE=1'
25
+ $CXXFLAGS << ' ' << '-D_ALL_SOURCE=1'
26
+ end
7
27
  end
8
28
 
9
29
  create_makefile 'unf_ext'
@@ -1,5 +1,5 @@
1
1
  module UNF
2
2
  class Normalizer
3
- VERSION = "0.0.7.5"
3
+ VERSION = "0.0.7.6"
4
4
  end
5
5
  end
@@ -38,5 +38,5 @@ Gem::Specification.new do |gem|
38
38
  gem.add_development_dependency("rdoc", ["> 2.4.2"])
39
39
  gem.add_development_dependency("bundler", [">= 1.2"])
40
40
  gem.add_development_dependency("rake-compiler", [">= 0.7.9"])
41
- gem.add_development_dependency("rake-compiler-dock", ["~> 0.6.0"])
41
+ gem.add_development_dependency("rake-compiler-dock", ["~> 0.7.0"])
42
42
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unf_ext
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7.5
4
+ version: 0.0.7.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takeru Ohta
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-02-06 00:00:00.000000000 Z
12
+ date: 2019-04-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -87,14 +87,14 @@ dependencies:
87
87
  requirements:
88
88
  - - "~>"
89
89
  - !ruby/object:Gem::Version
90
- version: 0.6.0
90
+ version: 0.7.0
91
91
  type: :development
92
92
  prerelease: false
93
93
  version_requirements: !ruby/object:Gem::Requirement
94
94
  requirements:
95
95
  - - "~>"
96
96
  - !ruby/object:Gem::Version
97
- version: 0.6.0
97
+ version: 0.7.0
98
98
  description: Unicode Normalization Form support library for CRuby
99
99
  email:
100
100
  - knu@idaemons.org
@@ -146,8 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
146
146
  - !ruby/object:Gem::Version
147
147
  version: '0'
148
148
  requirements: []
149
- rubyforge_project:
150
- rubygems_version: 2.6.14
149
+ rubygems_version: 3.0.3
151
150
  signing_key:
152
151
  specification_version: 4
153
152
  summary: Unicode Normalization Form support library for CRuby