extpp 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/doc/text/news.md +19 -1
- data/lib/extpp/compiler.rb +1 -1
- data/lib/extpp/platform.rb +2 -8
- data/lib/extpp/version.rb +1 -1
- metadata +22 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e649f9a68f45b42e1c0232ac0e3fdf03fce59c6cd33037ae3b45c106dac9079f
|
4
|
+
data.tar.gz: 2ddc7ba05c591b3d0ed5be71d2c35baaa43575eba1d5f553515038e4c6406dac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d015c70ec16938f40f232b3cd7d944df366d64794dc071eb8580be4b015ed3d1b4c656b76078783add9eab25dd66a6eb4f49fd571a925367dc14af4274af603
|
7
|
+
data.tar.gz: 563ec4a1d2ea5be0445051ca4250f7701fc879a49e651632deb7c85ec2e6be21e700dddc15991d04f2e946c7b10447276c983d40d9d91c0608fba0a6269b5489
|
data/doc/text/news.md
CHANGED
@@ -1,6 +1,24 @@
|
|
1
1
|
# News
|
2
2
|
|
3
|
-
## 0.0.
|
3
|
+
## 0.0.8 - 2019-09-25
|
4
|
+
|
5
|
+
### Improvements
|
6
|
+
|
7
|
+
* Changed to use `RbConfig::CONFIG["SOEXT"]`.
|
8
|
+
[Suggested by Nobuyoshi Nakada]
|
9
|
+
|
10
|
+
* Added `ExtpPP::Platform#shared_library_extension`.
|
11
|
+
|
12
|
+
* Added support for macOS Majave.
|
13
|
+
[GitHub#8][Patch by Josh Huckabee]
|
14
|
+
|
15
|
+
### Thanks
|
16
|
+
|
17
|
+
* Nobuyoshi Nakada
|
18
|
+
|
19
|
+
* Josh Huckabee
|
20
|
+
|
21
|
+
## 0.0.7 - 2019-03-21
|
4
22
|
|
5
23
|
### Improvements
|
6
24
|
|
data/lib/extpp/compiler.rb
CHANGED
data/lib/extpp/platform.rb
CHANGED
@@ -1,14 +1,8 @@
|
|
1
1
|
module ExtPP
|
2
2
|
class Platform
|
3
3
|
def dynamic_library_extension
|
4
|
-
|
5
|
-
when /windows/, /mingw/
|
6
|
-
"dll"
|
7
|
-
when /darwin/
|
8
|
-
"dylib"
|
9
|
-
else
|
10
|
-
RbConfig::CONFIG["DLEXT"]
|
11
|
-
end
|
4
|
+
RbConfig::CONFIG["SOEXT"]
|
12
5
|
end
|
6
|
+
alias_method :shared_library_extension, :dynamic_library_extension
|
13
7
|
end
|
14
8
|
end
|
data/lib/extpp/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: extpp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kouhei Sutou
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-09-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -136,38 +136,38 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
136
136
|
version: '0'
|
137
137
|
requirements: []
|
138
138
|
rubyforge_project:
|
139
|
-
rubygems_version: 2.7.6
|
139
|
+
rubygems_version: 2.7.6.2
|
140
140
|
signing_key:
|
141
141
|
specification_version: 4
|
142
142
|
summary: Ext++ is a Ruby extension that provides C++ API for writing Ruby extension.
|
143
143
|
test_files:
|
144
|
-
- test/test-object.rb
|
145
|
-
- test/test-protect.rb
|
146
144
|
- test/test-class.rb
|
147
|
-
- test/
|
148
|
-
- test/
|
145
|
+
- test/helper.rb
|
146
|
+
- test/run-test.rb
|
147
|
+
- test/test-protect.rb
|
149
148
|
- test/fixtures/class/class.cpp
|
149
|
+
- test/fixtures/class/mkmf.log
|
150
150
|
- test/fixtures/class/class.o
|
151
|
-
- test/fixtures/class/Makefile
|
152
151
|
- test/fixtures/class/extconf.rb
|
152
|
+
- test/fixtures/class/class.so
|
153
|
+
- test/fixtures/class/Makefile
|
154
|
+
- test/fixtures/object/object.cpp
|
155
|
+
- test/fixtures/object/mkmf.log
|
156
|
+
- test/fixtures/object/object.o
|
157
|
+
- test/fixtures/object/object.so
|
158
|
+
- test/fixtures/object/extconf.rb
|
159
|
+
- test/fixtures/object/Makefile
|
153
160
|
- test/fixtures/protect/mkmf.log
|
161
|
+
- test/fixtures/protect/protect.o
|
162
|
+
- test/fixtures/protect/extconf.rb
|
154
163
|
- test/fixtures/protect/protect.so
|
155
164
|
- test/fixtures/protect/protect.cpp
|
156
165
|
- test/fixtures/protect/Makefile
|
157
|
-
- test/fixtures/protect/protect.o
|
158
|
-
- test/fixtures/protect/extconf.rb
|
159
|
-
- test/fixtures/cast/mkmf.log
|
160
|
-
- test/fixtures/cast/cast.cpp
|
161
166
|
- test/fixtures/cast/cast.so
|
162
|
-
- test/fixtures/cast/
|
163
|
-
- test/fixtures/cast/cast.o
|
167
|
+
- test/fixtures/cast/mkmf.log
|
164
168
|
- test/fixtures/cast/extconf.rb
|
165
|
-
- test/fixtures/
|
166
|
-
- test/fixtures/
|
167
|
-
- test/fixtures/
|
168
|
-
- test/
|
169
|
-
- test/fixtures/object/object.o
|
170
|
-
- test/fixtures/object/extconf.rb
|
171
|
-
- test/helper.rb
|
172
|
-
- test/run-test.rb
|
169
|
+
- test/fixtures/cast/cast.o
|
170
|
+
- test/fixtures/cast/Makefile
|
171
|
+
- test/fixtures/cast/cast.cpp
|
172
|
+
- test/test-object.rb
|
173
173
|
- test/test-cast.rb
|