ncursesw 0.9.1 → 0.9.2

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.
data/extconf.rb CHANGED
@@ -128,4 +128,4 @@ if have_header("form.h")
128
128
  have_library("formw", "new_form")
129
129
  end
130
130
 
131
- create_makefile('ncurses_bin')
131
+ create_makefile('ncursesw_bin')
@@ -19,7 +19,7 @@
19
19
 
20
20
  # $Id: ncurses.rb,v 1.7 2005/02/26 22:51:29 t-peters Exp $
21
21
 
22
- require "ncurses_bin.so"
22
+ require "ncursesw_bin.so"
23
23
 
24
24
 
25
25
  # Ncurses constants with leading underscore
data/ncurses_wrap.c CHANGED
@@ -2692,7 +2692,7 @@ static void init_safe_functions(void)
2692
2692
  NCFUNC(use_env, 1);
2693
2693
  #endif
2694
2694
  }
2695
- void Init_ncurses_bin(void)
2695
+ void Init_ncursesw_bin(void)
2696
2696
  {
2697
2697
  setlocale(LC_ALL, "");
2698
2698
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ncursesw
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors: []
7
7
 
@@ -43,7 +43,7 @@ files:
43
43
  - make_dist.rb
44
44
  - ncurses_wrap.c
45
45
  - ncurses_wrap.h
46
- - lib/ncurses.rb
46
+ - lib/ncursesw.rb
47
47
  - panel_wrap.c
48
48
  - panel_wrap.h
49
49
  has_rdoc: true
@@ -70,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
70
70
  requirements: []
71
71
 
72
72
  rubyforge_project:
73
- rubygems_version: 1.3.5
73
+ rubygems_version: 1.3.3
74
74
  signing_key:
75
75
  specification_version: -1
76
76
  summary: "This wrapper provides access to the functions, macros, global variables and constants of the ncurses library. These are mapped to a Ruby Module named \"Ncurses\": Functions and external variables are implemented as singleton functions of the Module Ncurses."