curses 1.2.3-x86-mingw32 → 1.2.4-x86-mingw32
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 +4 -4
- data/History.md +10 -0
- data/README.md +9 -0
- data/Rakefile +2 -2
- data/curses.gemspec +1 -1
- data/lib/2.2/curses.so +0 -0
- data/lib/2.3/curses.so +0 -0
- data/lib/2.4/curses.so +0 -0
- data/lib/curses.rb +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d4d65fe6f42a0b4fd66ec443e77d93037a6e6697
|
4
|
+
data.tar.gz: 66943ccf5dc0139bf3ad5bde95a75b5c0dc24259
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1f40fa29797f6088f588aff9ab58a72e322c8c555e543f99045f9bf3444ef9dfdad6e0c201eacf25206f6405c4ec7e5dfeeca8ef7d8c8ab075dabe8b35fab4b2
|
7
|
+
data.tar.gz: c725a0458bef0e7b9c3c2d7da79f0941ab47f5c7714e6738687a83ed8578f25270a583c1a863bc68daf33a3bcf222dc5e67b4007c1d554a88b1c07b365931cf0
|
data/History.md
CHANGED
data/README.md
CHANGED
@@ -18,6 +18,15 @@ with the release of Ruby 2.1.0. (see [ruby/ruby@9c5b2fd][2])
|
|
18
18
|
## Install
|
19
19
|
|
20
20
|
$ gem install curses
|
21
|
+
|
22
|
+
Requires ncurses or ncursesw (with wide character support).
|
23
|
+
On Debian based distributions, you can install it with apt:
|
24
|
+
|
25
|
+
$ apt install libncurses5-dev
|
26
|
+
|
27
|
+
Or
|
28
|
+
|
29
|
+
$ apt install libncursesw5-dev
|
21
30
|
|
22
31
|
## Developers
|
23
32
|
|
data/Rakefile
CHANGED
@@ -28,10 +28,10 @@ namespace :build do
|
|
28
28
|
sh "nmake -f vcwin32.mak clean all WIDE=Y DLL=Y"
|
29
29
|
cp %w[pdcurses.dll pdcurses.lib], "../../#{RUBY_PLATFORM}/PDCurses"
|
30
30
|
else
|
31
|
-
sh "make -f mingwin32.mak clean all
|
31
|
+
sh "make -f mingwin32.mak clean all WIDE=Y DLL=Y"
|
32
32
|
cp "pdcurses.dll", "../../x86-mingw32/PDCurses"
|
33
33
|
|
34
|
-
sh "make -f mingwin32.mak clean all
|
34
|
+
sh "make -f mingwin32.mak clean all _w64=1 WIDE=Y DLL=Y"
|
35
35
|
cp "pdcurses.dll", "../../x64-mingw32/PDCurses"
|
36
36
|
end
|
37
37
|
end
|
data/curses.gemspec
CHANGED
data/lib/2.2/curses.so
CHANGED
Binary file
|
data/lib/2.3/curses.so
CHANGED
Binary file
|
data/lib/2.4/curses.so
CHANGED
Binary file
|
data/lib/curses.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
|
1
|
+
platform = RUBY_PLATFORM.sub(/i[3-7]86/, "x86")
|
2
|
+
pdcurses_path = File.expand_path("../vendor/#{platform}/PDCurses", __dir__)
|
2
3
|
pdcurses_bundled = File.directory?(pdcurses_path)
|
3
4
|
if pdcurses_bundled
|
4
5
|
path = ENV["PATH"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: curses
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.4
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- Shugo Maeda
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-
|
12
|
+
date: 2017-09-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|