curses 1.5.0 → 1.5.1
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/.github/workflows/push_gem.yml +1 -1
- data/curses.gemspec +1 -1
- data/ext/curses/extconf.rb +2 -5
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d9507fce27e2caa3ca1a464c8bced568f75ef5776dfcc9ad08dffaf3ae9f241b
|
4
|
+
data.tar.gz: ef0b8b8ac1dfd2e5f14d2a52904305daf51b741537bbf421123a819ead4357fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d7199de5466f4bbf7eaa90e8659975fba3b37692ba39440f86eb93b1b24bde9f5bd2bb618de69bad9e6d0fae9fdc20356215646842b23e36e6b15a125230ab6e
|
7
|
+
data.tar.gz: 0dda8ca38c96840b179c50c739fec12554ad25a22a1110ef0c9d6a2cc1ab5f04fe323291436a8f3e289d80d877c129314c2afd127207390a89bc66fa3466bb4f
|
data/curses.gemspec
CHANGED
data/ext/curses/extconf.rb
CHANGED
@@ -67,11 +67,8 @@ if $use_bundled_pdcurses
|
|
67
67
|
FileUtils.cp("pdcurses.lib", pdcurses_dir)
|
68
68
|
$pdcurses_dll_default = true
|
69
69
|
else
|
70
|
-
|
71
|
-
|
72
|
-
else
|
73
|
-
exec_command "make -f Makefile.mng clean all WIDE=Y DLL=N"
|
74
|
-
end
|
70
|
+
w64 = $x64 ? "_w64=1" : ""
|
71
|
+
exec_command "make -f Makefile.mng clean all #{w64} WIDE=Y DLL=N CC=\"gcc -std=gnu17\""
|
75
72
|
FileUtils.cp("pdcurses.a", File.expand_path("libpdcurses.a", pdcurses_dir))
|
76
73
|
end
|
77
74
|
ensure
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: curses
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shugo Maeda
|
8
8
|
- Eric Hodel
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -339,7 +339,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
339
339
|
- !ruby/object:Gem::Version
|
340
340
|
version: '0'
|
341
341
|
requirements: []
|
342
|
-
rubygems_version: 3.6.
|
342
|
+
rubygems_version: 3.6.7
|
343
343
|
specification_version: 4
|
344
344
|
summary: A Ruby binding for curses, ncurses, and PDCurses. curses is an extension
|
345
345
|
library for text UI applications. Formerly part of the Ruby standard library, [curses
|