win32-api 1.8.0-universal-mingw32 → 1.9.0-universal-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGES +5 -0
- data/Dockerfile +99 -0
- data/Dockerfile.trunk +17 -0
- data/README +1 -1
- data/RELEASE.md +32 -0
- data/Rakefile +13 -3
- data/appveyor.yml +2 -2
- data/build-gem.bat +3 -0
- data/ext/win32/api.c +1 -1
- data/lib/win32/api.rb +8 -0
- data/lib/win32/ruby21_32/win32/api.so +0 -0
- data/lib/win32/ruby21_64/win32/api.so +0 -0
- data/lib/win32/ruby22_32/win32/api.so +0 -0
- data/lib/win32/ruby22_64/win32/api.so +0 -0
- data/lib/win32/ruby23_32/win32/api.so +0 -0
- data/lib/win32/ruby23_64/win32/api.so +0 -0
- data/lib/win32/ruby24_32/win32/api.so +0 -0
- data/lib/win32/ruby24_64/win32/api.so +0 -0
- data/lib/win32/ruby25_32/win32/api.so +0 -0
- data/lib/win32/ruby25_64/win32/api.so +0 -0
- data/lib/win32/ruby26_32/win32/api.so +0 -0
- data/lib/win32/ruby26_64/win32/api.so +0 -0
- data/lib/win32/ruby27_32/win32/api.so +0 -0
- data/lib/win32/ruby27_64/win32/api.so +0 -0
- data/lib/win32/ruby28_64/win32/api.so +0 -0
- data/lib/win32/ruby2_32/win32/api.so +0 -0
- data/lib/win32/ruby2_64/win32/api.so +0 -0
- data/test/test_win32_api.rb +1 -1
- data/win32-api.gemspec +1 -1
- metadata +8 -5
- data/Gemfile.lock +0 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: c84861dda02ef376babbdbd653e323627cda2c197293401e9dd8805be5b53b04
|
4
|
+
data.tar.gz: 1250d17a9afd0f9bcf7aa4909873016bb32d0e96d51b10b63d7c815e6a29c702
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71edfa49cdeadd82541470d5a025a50cf7ea9926f8ff7f0192cf6b9ddcde34babbce20127cefe92e7309f80a75624d64e6d58251802db88c739e0d59c552651a
|
7
|
+
data.tar.gz: bf933ebeb1d9e46856e6a32aab8f02b231ed43a3fde5a01cf516aa893bfa702a5c63ed31a5097f3fb3165618c9fc3f29f979d845d562fb8f5c8291b5f27f8c4c
|
data/CHANGES
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
== 1.9.0 - 6-Jan-2020
|
2
|
+
* Add Ruby 2.8 snapshot support.
|
3
|
+
* Now includes binaries for Ruby 2.8 both 32 and 64 bit versions.
|
4
|
+
* Use RubyInstaller 2.7.0-1 for Ruby 2.7 binaries.
|
5
|
+
|
1
6
|
== 1.8.0 - 6-Jan-2019
|
2
7
|
* Add Ruby 2.7 snapshot support.
|
3
8
|
* Now includes binaries for Ruby 2.7 both 32 and 64 bit versions.
|
data/Dockerfile
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
FROM mcr.microsoft.com/windows/servercore:1903
|
2
|
+
LABEL maintainer "Hiroshi Hatake <cosmo0920.wp@gmail.com>"
|
3
|
+
LABEL Description="win32-api building docker image"
|
4
|
+
|
5
|
+
# Do not split this into multiple RUN!
|
6
|
+
# Docker creates a layer for every RUN-Statement
|
7
|
+
RUN powershell -Command "Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))"
|
8
|
+
|
9
|
+
# Ruby 2.0.0
|
10
|
+
RUN powershell \
|
11
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
12
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-2.0.0-p648.exe https://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p648.exe
|
13
|
+
RUN cmd /c "C:\rubyinstaller-2.0.0-p648.exe" /silent /dir=c:\ruby200
|
14
|
+
RUN powershell \
|
15
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
16
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-2.0.0-p648-x64.exe https://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p648-x64.exe
|
17
|
+
RUN cmd /c "C:\rubyinstaller-2.0.0-p648-x64.exe" /silent /dir=c:\ruby200-x64
|
18
|
+
# Ruby 2.1
|
19
|
+
RUN powershell \
|
20
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
21
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-2.1.9.exe https://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.9.exe
|
22
|
+
RUN cmd /c "C:\rubyinstaller-2.1.9.exe" /silent /dir=c:\ruby21
|
23
|
+
RUN powershell \
|
24
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
25
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-2.1.9-x64.exe https://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.9-x64.exe
|
26
|
+
RUN cmd /c "C:\rubyinstaller-2.1.9-x64.exe" /silent /dir=c:\ruby21-x64
|
27
|
+
# Ruby 2.2
|
28
|
+
RUN powershell \
|
29
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
30
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-2.2.6.exe https://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.6.exe
|
31
|
+
RUN cmd /c "C:\rubyinstaller-2.2.6.exe" /silent /dir=c:\ruby22
|
32
|
+
RUN powershell \
|
33
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
34
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-2.2.6-x64.exe https://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.6-x64.exe
|
35
|
+
RUN cmd /c "C:\rubyinstaller-2.2.6-x64.exe" /silent /dir=c:\ruby22-x64
|
36
|
+
# Ruby 2.3
|
37
|
+
RUN powershell \
|
38
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
39
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-2.3.3.exe https://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.3.3.exe
|
40
|
+
RUN cmd /c "C:\rubyinstaller-2.3.3.exe" /silent /dir=c:\ruby23
|
41
|
+
RUN powershell \
|
42
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
43
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-2.3.3-x64.exe https://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.3.3-x64.exe
|
44
|
+
RUN cmd /c "C:\rubyinstaller-2.3.3-x64.exe" /silent /dir=c:\ruby23-x64
|
45
|
+
# Ruby 2.4
|
46
|
+
RUN powershell \
|
47
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
48
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-2.4.9-1-x86.exe https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.4.9-1/rubyinstaller-2.4.9-1-x86.exe
|
49
|
+
RUN cmd /c "C:\rubyinstaller-2.4.9-1-x86.exe" /silent /dir=c:\ruby24
|
50
|
+
RUN powershell \
|
51
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
52
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-2.4.9-1-x64.exe https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.4.9-1/rubyinstaller-2.4.9-1-x64.exe
|
53
|
+
RUN cmd /c "C:\rubyinstaller-2.4.9-1-x64.exe" /silent /dir=c:\ruby24-x64
|
54
|
+
# Ruby 2.5
|
55
|
+
RUN powershell \
|
56
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
57
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-2.5.7-1-x86.exe https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.5.7-1/rubyinstaller-2.5.7-1-x86.exe
|
58
|
+
RUN cmd /c "C:\rubyinstaller-2.5.7-1-x86.exe" /silent /dir=c:\ruby25
|
59
|
+
RUN powershell \
|
60
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
61
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-2.5.7-1-x64.exe https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.5.7-1/rubyinstaller-2.5.7-1-x64.exe
|
62
|
+
RUN cmd /c "C:\rubyinstaller-2.5.7-1-x64.exe" /silent /dir=c:\ruby25-x64
|
63
|
+
# Ruby 2.6
|
64
|
+
RUN powershell \
|
65
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
66
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-2.6.5-1-x86.exe https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.5-1/rubyinstaller-2.6.5-1-x86.exe
|
67
|
+
RUN cmd /c "C:\rubyinstaller-2.6.5-1-x86.exe" /silent /dir=c:\ruby26
|
68
|
+
RUN powershell \
|
69
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
70
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-2.6.5-1-x64.exe https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.5-1/rubyinstaller-2.6.5-1-x64.exe
|
71
|
+
RUN cmd /c "C:\rubyinstaller-2.6.5-1-x64.exe" /silent /dir=c:\ruby26-x64
|
72
|
+
|
73
|
+
# Ruby 2.7
|
74
|
+
RUN powershell \
|
75
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
76
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-2.7.0-1-x86.exe https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.7.0-1/rubyinstaller-2.7.0-1-x86.exe
|
77
|
+
RUN cmd /c "C:\rubyinstaller-2.7.0-1-x86.exe" /silent /dir=c:\ruby27
|
78
|
+
RUN powershell \
|
79
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
80
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-2.7.0-1-x64.exe https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.7.0-1/rubyinstaller-2.7.0-1-x64.exe
|
81
|
+
RUN cmd /c "C:\rubyinstaller-2.7.0-1-x64.exe" /silent /dir=c:\ruby27-x64
|
82
|
+
|
83
|
+
# DevKit
|
84
|
+
RUN powershell \
|
85
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
86
|
+
Invoke-WebRequest -OutFile C:\DevKit-mingw64-32-4.7.2-20130224-1151-sfx.exe https://dl.bintray.com/oneclick/rubyinstaller/DevKit-mingw64-32-4.7.2-20130224-1151-sfx.exe
|
87
|
+
RUN cmd /c C:\DevKit-mingw64-32-4.7.2-20130224-1151-sfx.exe -o"c:\DevKit" -y
|
88
|
+
RUN powershell \
|
89
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
90
|
+
Invoke-WebRequest -OutFile C:\DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe https://dl.bintray.com/oneclick/rubyinstaller/DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe
|
91
|
+
RUN cmd /c C:\DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe -o"c:\DevKit64" -y
|
92
|
+
|
93
|
+
RUN choco install -y git \
|
94
|
+
&& choco install -y msys2 --params "'/NoPath /NoUpdate /InstallDir:C:\msys64'"
|
95
|
+
RUN refreshenv \
|
96
|
+
&& C:\ruby27\bin\ridk install 2 3 \
|
97
|
+
&& C:\ruby27-x64\bin\ridk install 2 3
|
98
|
+
|
99
|
+
ENTRYPOINT ["cmd"]
|
data/Dockerfile.trunk
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
FROM cosmo0920/win32-api:latest
|
2
|
+
LABEL maintainer "Hiroshi Hatake <cosmo0920.wp@gmail.com>"
|
3
|
+
LABEL Description="win32-api building docker image"
|
4
|
+
|
5
|
+
# Ruby 2.8
|
6
|
+
RUN powershell \
|
7
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
8
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-head-x86-20200106.exe https://ci.appveyor.com/api/buildjobs/n7m98ejuhuu2rn4g/artifacts/packages%2Fri%2Frecipes%2Finstaller-inno%2Frubyinstaller-head-x64.exe
|
9
|
+
RUN cmd /c "C:\rubyinstaller-head-x86-20200106.exe" /silent /dir=c:\ruby28
|
10
|
+
RUN powershell \
|
11
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
12
|
+
Invoke-WebRequest -OutFile C:\rubyinstaller-head-x64-20200106.exe https://ci.appveyor.com/api/buildjobs/n7m98ejuhuu2rn4g/artifacts/packages%2Fri%2Frecipes%2Finstaller-inno%2Frubyinstaller-head-x64.exe
|
13
|
+
RUN cmd /c "C:\rubyinstaller-head-x64-20200106.exe" /silent /dir=c:\ruby28-x64
|
14
|
+
|
15
|
+
RUN mkdir C:\pkg
|
16
|
+
COPY build-gem.bat C:\\build-gem.bat
|
17
|
+
ENTRYPOINT ["cmd"]
|
data/README
CHANGED
data/RELEASE.md
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
## Prerequisites
|
2
|
+
|
3
|
+
* Docker for Windows
|
4
|
+
|
5
|
+
### Release step
|
6
|
+
|
7
|
+
Check the latest ruby-head-YYYYmmDD image:
|
8
|
+
https://hub.docker.com/r/cosmo0920/win32-api/tags?page=1&name=ruby-head
|
9
|
+
|
10
|
+
```powershell
|
11
|
+
PS> mkdir pkg
|
12
|
+
PS> docker run -it -v $PWD\pkg:C:\pkg cosmo0920/win32-api:ruby-head-AWESOMEDATE
|
13
|
+
```
|
14
|
+
|
15
|
+
Build universal gem:
|
16
|
+
|
17
|
+
```cmd
|
18
|
+
> .\build-gem.bat
|
19
|
+
```
|
20
|
+
|
21
|
+
Copy built universal gem into mounted directory:
|
22
|
+
|
23
|
+
```cmd
|
24
|
+
> copy C:\win32-api\win32-api-*.gem C:\pkg
|
25
|
+
```
|
26
|
+
|
27
|
+
Then, exit and push built gem:
|
28
|
+
|
29
|
+
```cmd
|
30
|
+
> exit
|
31
|
+
> gem push win32-api-*.gem
|
32
|
+
```
|
data/Rakefile
CHANGED
@@ -59,7 +59,7 @@ namespace 'gem' do
|
|
59
59
|
end
|
60
60
|
|
61
61
|
desc 'Build a binary gem'
|
62
|
-
task :binary, :ruby2_32, :ruby2_64, :ruby21, :ruby21_64, :ruby22, :ruby22_64, :ruby23_32, :ruby23_64, :ruby24_32, :ruby24_64, :ruby25_32, :ruby25_64, :ruby_26_32, :ruby26_64, :ruby27_32, :ruby27_64 do |task, args|
|
62
|
+
task :binary, :ruby2_32, :ruby2_64, :ruby21, :ruby21_64, :ruby22, :ruby22_64, :ruby23_32, :ruby23_64, :ruby24_32, :ruby24_64, :ruby25_32, :ruby25_64, :ruby_26_32, :ruby26_64, :ruby27_32, :ruby27_64, :ruby28_32, :ruby28_64 do |task, args|
|
63
63
|
# These are just what's on my system at the moment. Adjust as needed.
|
64
64
|
# ri refers to RubyInstaller, ruby 2.3 and prev were built with RubyInstaller (:ri),
|
65
65
|
# 2.4 and later with RubyInstaller2 (:ri2)
|
@@ -94,10 +94,12 @@ namespace 'gem' do
|
|
94
94
|
:ruby24_64 => {:path => "#{pre}/ruby24-x64/bin", :ri => :ri2_64, :omit => false},
|
95
95
|
:ruby25_32 => {:path => "#{pre}/ruby25/bin", :ri => :ri2, :omit => false},
|
96
96
|
:ruby25_64 => {:path => "#{pre}/ruby25-x64/bin", :ri => :ri2_64, :omit => false},
|
97
|
-
:ruby26_32 => {:path => "#{pre}/ruby26/bin", :ri => :ri2, :omit =>
|
98
|
-
:ruby26_64 => {:path => "#{pre}/ruby26-x64/bin", :ri => :ri2_64, :omit =>
|
97
|
+
:ruby26_32 => {:path => "#{pre}/ruby26/bin", :ri => :ri2, :omit => false},
|
98
|
+
:ruby26_64 => {:path => "#{pre}/ruby26-x64/bin", :ri => :ri2_64, :omit => false},
|
99
99
|
:ruby27_32 => {:path => "#{pre}/ruby27/bin", :ri => :ri2, :omit => true},
|
100
100
|
:ruby27_64 => {:path => "#{pre}/ruby27-x64/bin", :ri => :ri2_64, :omit => true},
|
101
|
+
:ruby28_32 => {:path => "#{pre}/ruby28/bin", :ri => :ri2, :omit => true},
|
102
|
+
:ruby28_64 => {:path => "#{pre}/ruby28-x64/bin", :ri => :ri2_64, :omit => true},
|
101
103
|
}
|
102
104
|
)
|
103
105
|
|
@@ -195,6 +197,14 @@ begin
|
|
195
197
|
end
|
196
198
|
end
|
197
199
|
|
200
|
+
if RbConfig::CONFIG['MINOR'] == '8'
|
201
|
+
if RbConfig::CONFIG['arch'] =~ /x64/i
|
202
|
+
require File.join(File.dirname(__FILE__), 'ruby28_64/win32/api')
|
203
|
+
else
|
204
|
+
require File.join(File.dirname(__FILE__), 'ruby28_32/win32/api')
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
198
208
|
end
|
199
209
|
rescue LoadError
|
200
210
|
require File.join(File.dirname(__FILE__), '../../ext/api')
|
data/appveyor.yml
CHANGED
@@ -26,6 +26,8 @@ test_script:
|
|
26
26
|
environment:
|
27
27
|
matrix:
|
28
28
|
- ruby_version: _trunk
|
29
|
+
- ruby_version: 26-x64
|
30
|
+
- ruby_version: 26
|
29
31
|
- ruby_version: 25-x64
|
30
32
|
- ruby_version: 25
|
31
33
|
- ruby_version: 24-x64
|
@@ -42,5 +44,3 @@ environment:
|
|
42
44
|
matrix:
|
43
45
|
allow_failures:
|
44
46
|
- ruby_version: _trunk
|
45
|
-
- ruby_version: 25-x64
|
46
|
-
- ruby_version: 25
|
data/build-gem.bat
ADDED
data/ext/win32/api.c
CHANGED
data/lib/win32/api.rb
CHANGED
@@ -66,6 +66,14 @@ begin
|
|
66
66
|
end
|
67
67
|
end
|
68
68
|
|
69
|
+
if RbConfig::CONFIG['MINOR'] == '8'
|
70
|
+
if RbConfig::CONFIG['arch'] =~ /x64/i
|
71
|
+
require File.join(File.dirname(__FILE__), 'ruby28_64/win32/api')
|
72
|
+
else
|
73
|
+
require File.join(File.dirname(__FILE__), 'ruby28_32/win32/api')
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
69
77
|
end
|
70
78
|
rescue LoadError
|
71
79
|
require File.join(File.dirname(__FILE__), '../../ext/api')
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/test/test_win32_api.rb
CHANGED
data/win32-api.gemspec
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = 'win32-api'
|
5
|
-
spec.version = '1.
|
5
|
+
spec.version = '1.9.0'
|
6
6
|
spec.authors = ['Daniel J. Berger', 'Park Heesob', 'Hiroshi Hatake']
|
7
7
|
spec.license = 'Artistic-2.0'
|
8
8
|
spec.email = 'djberg96@gmail.com'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: win32-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.9.0
|
5
5
|
platform: universal-mingw32
|
6
6
|
authors:
|
7
7
|
- Daniel J. Berger
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2020-07-15 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: test-unit
|
@@ -55,12 +55,15 @@ extra_rdoc_files:
|
|
55
55
|
- ext/win32/api.c
|
56
56
|
files:
|
57
57
|
- CHANGES
|
58
|
+
- Dockerfile
|
59
|
+
- Dockerfile.trunk
|
58
60
|
- Gemfile
|
59
|
-
- Gemfile.lock
|
60
61
|
- MANIFEST
|
61
62
|
- README
|
63
|
+
- RELEASE.md
|
62
64
|
- Rakefile
|
63
65
|
- appveyor.yml
|
66
|
+
- build-gem.bat
|
64
67
|
- ext/win32/api.c
|
65
68
|
- lib/win32/api.rb
|
66
69
|
- lib/win32/ruby21_32/win32/api.so
|
@@ -77,6 +80,7 @@ files:
|
|
77
80
|
- lib/win32/ruby26_64/win32/api.so
|
78
81
|
- lib/win32/ruby27_32/win32/api.so
|
79
82
|
- lib/win32/ruby27_64/win32/api.so
|
83
|
+
- lib/win32/ruby28_64/win32/api.so
|
80
84
|
- lib/win32/ruby2_32/win32/api.so
|
81
85
|
- lib/win32/ruby2_64/win32/api.so
|
82
86
|
- test/test_win32_api.rb
|
@@ -102,8 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
102
106
|
- !ruby/object:Gem::Version
|
103
107
|
version: '0'
|
104
108
|
requirements: []
|
105
|
-
|
106
|
-
rubygems_version: 2.6.13
|
109
|
+
rubygems_version: 3.1.2
|
107
110
|
signing_key:
|
108
111
|
specification_version: 4
|
109
112
|
summary: A superior replacement for Win32API
|
data/Gemfile.lock
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
win32-api (1.8.0)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: https://rubygems.org/
|
8
|
-
specs:
|
9
|
-
power_assert (1.0.2)
|
10
|
-
rake (12.0.0)
|
11
|
-
test-unit (3.2.5)
|
12
|
-
power_assert
|
13
|
-
|
14
|
-
PLATFORMS
|
15
|
-
x64-mingw32
|
16
|
-
x86-mingw32
|
17
|
-
|
18
|
-
DEPENDENCIES
|
19
|
-
rake
|
20
|
-
test-unit (>= 2.5.0)
|
21
|
-
win32-api!
|
22
|
-
|
23
|
-
BUNDLED WITH
|
24
|
-
1.17.2
|