curses 1.2.3-x64-mingw32 → 1.2.4-x64-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e033760a81b7ef2c153482ce59d465fb475da147
4
- data.tar.gz: b46e65d014a37f49757a2916eb43c639a34dbadb
3
+ metadata.gz: 3942e9bb5b162a3b2f30e8a7382f50a55a707c48
4
+ data.tar.gz: cac972460c75447444cf1350667540b59b5de241
5
5
  SHA512:
6
- metadata.gz: 91d3e6bcf4d960e44ccb2fb25354a714b9d1c6432ed55f4eb3f3af01bd4e8d0cd4726769069d8cea0d162ddb95a1388cca17f8220e1b5588de66cfe0c9431ef0
7
- data.tar.gz: 7d98e116ebbd41b6e49f485c76b31c4460c10793a80df4814961606148a0de4bc9e96ae903b6bdea9b575d695fa32d6bb5561362332d6c49a6376e4ffa725e11
6
+ metadata.gz: '059c62ea6cad59b2b97fae03a13045bb39671eea3ffa60235c368ced1b944e8c8d741278769b6ad9d55e9b69cd20f88becfdae46ea6245fa4bb27672bc93a941'
7
+ data.tar.gz: 9d2fdf8a47aef0570cdc17998e99736936e0f314085145920992efefbbffd1dd4178a5bc9f46d41639aaba174c41d2d6c94458f480c5f058bc79cd6063eaa3d2
data/History.md CHANGED
@@ -1,3 +1,13 @@
1
+ ### 1.2.4 / 2017-09-13
2
+
3
+ Bug fixes:
4
+
5
+ * Fix the path of pdcurses.dll for i386-mingw. (Issue #36)
6
+
7
+ Documentation:
8
+
9
+ * Include reference to ncurses dependency. Pull request #34 by qume.
10
+
1
11
  ### 1.2.3 / 2017-07-03
2
12
 
3
13
  Bug fixes:
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 _linux_w32=1 WIDE=Y DLL=Y"
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 _linux_w64=1 WIDE=Y DLL=Y"
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
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new { |s|
2
2
  s.name = "curses"
3
- s.version = "1.2.3"
3
+ s.version = "1.2.4"
4
4
  s.author = ["Shugo Maeda", 'Eric Hodel']
5
5
  s.email = ["shugo@ruby-lang.org", 'drbrain@segment7.net']
6
6
  s.homepage = "https://github.com/ruby/curses"
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
- pdcurses_path = File.expand_path("../vendor/#{RUBY_PLATFORM}/PDCurses", __dir__)
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.3
4
+ version: 1.2.4
5
5
  platform: x64-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-07-02 00:00:00.000000000 Z
12
+ date: 2017-09-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler