fxruby 1.6.24 → 1.6.25.pre1

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/ext/fox16/FXRuby.cpp CHANGED
@@ -2019,12 +2019,6 @@ extern "C" void Init_text(void);
2019
2019
  extern "C" void Init_treelist(void);
2020
2020
  extern "C" void Init_ui(void);
2021
2021
 
2022
- #ifdef USE_RB_REQUIRE
2023
- #define REQUIRE(fname) rb_require((fname))
2024
- #else
2025
- #define REQUIRE(fname) rb_funcall(rb_mKernel,rb_intern("require"),1,rb_str_new2((fname)))
2026
- #endif
2027
-
2028
2022
  extern "C" void
2029
2023
  #if defined _WIN32
2030
2024
  __declspec(dllexport)
@@ -2050,18 +2044,6 @@ Init_fox16(void) {
2050
2044
  Init_table();
2051
2045
  Init_text();
2052
2046
  Init_treelist();
2053
- REQUIRE("fox16/core");
2054
- REQUIRE("fox16/dict");
2055
- REQUIRE("fox16/settings");
2056
- REQUIRE("fox16/iterators");
2057
- REQUIRE("fox16/keys");
2058
- REQUIRE("fox16/aliases");
2059
- REQUIRE("fox16/responder2");
2060
- REQUIRE("fox16/glgroup");
2061
- REQUIRE("fox16/execute_nonmodal");
2062
- REQUIRE("fox16/version");
2063
- REQUIRE("fox16/kwargs");
2064
- REQUIRE("fox16/exceptions_for_fxerror");
2065
2047
 
2066
2048
  id_assocs=rb_intern("@assocs");
2067
2049
  id_backtrace=rb_intern("backtrace");
data/ext/fox16/extconf.rb CHANGED
@@ -81,7 +81,7 @@ def do_rake_compiler_setup
81
81
 
82
82
  CONFIG['CC'] += "\nCXX=#{ENV['CROSS_PREFIX']}-g++" # Hack CXX into Makefile for cross compilation
83
83
  CONFIG['LDSHARED'].gsub!('gcc', 'g++') # ensure C++ linker is used, so that libstdc++ is linked static
84
- $LDFLAGS += " -static-libgcc -static-libstdc++" # mingw-w64 v4.7 defaults to dynamic linking
84
+ $LDFLAGS += " -s -static-libgcc -static-libstdc++" # mingw-w64 v4.7 defaults to dynamic linking
85
85
  elsif RUBY_PLATFORM =~ /mingw/
86
86
  $CFLAGS = $CFLAGS + " -I/usr/local/include"
87
87
  $LDFLAGS = $LDFLAGS + " -I/usr/local/lib"
data/lib/fox16.rb CHANGED
@@ -6,3 +6,15 @@ else
6
6
  require "fox16.so"
7
7
  end
8
8
 
9
+ require "fox16/core"
10
+ require "fox16/dict"
11
+ require "fox16/settings"
12
+ require "fox16/iterators"
13
+ require "fox16/keys"
14
+ require "fox16/aliases"
15
+ require "fox16/responder2"
16
+ require "fox16/glgroup"
17
+ require "fox16/execute_nonmodal"
18
+ require "fox16/version"
19
+ require "fox16/kwargs"
20
+ require "fox16/exceptions_for_fxerror"
data/lib/fox16/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Fox
2
2
  def Fox.fxrubyversion
3
- "1.6.24"
3
+ "1.6.25.pre1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,13 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fxruby
3
3
  version: !ruby/object:Gem::Version
4
- hash: 63
5
- prerelease:
4
+ hash: 1923831843
5
+ prerelease: 7
6
6
  segments:
7
7
  - 1
8
8
  - 6
9
- - 24
10
- version: 1.6.24
9
+ - 25
10
+ - pre
11
+ - 1
12
+ version: 1.6.25.pre1
11
13
  platform: ruby
12
14
  authors:
13
15
  - Lyle Johnson
@@ -16,7 +18,7 @@ autorequire:
16
18
  bindir: bin
17
19
  cert_chain: []
18
20
 
19
- date: 2012-06-06 00:00:00 Z
21
+ date: 2012-06-15 00:00:00 Z
20
22
  dependencies:
21
23
  - !ruby/object:Gem::Dependency
22
24
  name: rdoc
@@ -41,11 +43,11 @@ dependencies:
41
43
  requirements:
42
44
  - - ~>
43
45
  - !ruby/object:Gem::Version
44
- hash: 31
46
+ hash: 7
45
47
  segments:
46
- - 2
47
- - 14
48
- version: "2.14"
48
+ - 3
49
+ - 0
50
+ version: "3.0"
49
51
  type: :development
50
52
  version_requirements: *id002
51
53
  description: FXRuby is the Ruby binding to the FOX GUI toolkit.
@@ -1021,93 +1023,95 @@ required_ruby_version: !ruby/object:Gem::Requirement
1021
1023
  required_rubygems_version: !ruby/object:Gem::Requirement
1022
1024
  none: false
1023
1025
  requirements:
1024
- - - ">="
1026
+ - - ">"
1025
1027
  - !ruby/object:Gem::Version
1026
- hash: 3
1028
+ hash: 25
1027
1029
  segments:
1028
- - 0
1029
- version: "0"
1030
+ - 1
1031
+ - 3
1032
+ - 1
1033
+ version: 1.3.1
1030
1034
  requirements: []
1031
1035
 
1032
1036
  rubyforge_project: fxruby
1033
- rubygems_version: 1.7.2
1037
+ rubygems_version: 1.8.11
1034
1038
  signing_key:
1035
1039
  specification_version: 3
1036
1040
  summary: FXRuby is the Ruby binding to the FOX GUI toolkit.
1037
1041
  test_files:
1038
- - test/TC_FXBMPImage.rb
1039
- - test/TC_FXRanged.rb
1042
+ - test/TC_FXVec2d.rb
1043
+ - test/TC_FXListBox.rb
1044
+ - test/TC_FXCheckButton.rb
1045
+ - test/TC_FXVec4f.rb
1046
+ - test/TC_FXIconList.rb
1040
1047
  - test/TC_FXXPMIcon.rb
1041
- - test/TC_FXTopWindow.rb
1042
- - test/TC_FXRadioButton.rb
1043
- - test/TC_FXPoint.rb
1044
- - test/TC_FXGLGroup.rb
1045
- - test/TC_FXBMPIcon.rb
1048
+ - test/TC_FXSegment.rb
1046
1049
  - test/TC_FXMemoryStream.rb
1047
- - test/TC_FXFoldingList.rb
1048
- - test/TC_FXDataTarget.rb
1049
- - test/TC_FXExtentd.rb
1050
- - test/TC_FXFontDesc.rb
1051
- - test/TC_FXXBMImage.rb
1052
- - test/TC_FXIconList.rb
1050
+ - test/TC_FXComboBox.rb
1051
+ - test/TC_FXShell.rb
1052
+ - test/TC_FXRangef.rb
1053
+ - test/TC_FXTreeListBox.rb
1054
+ - test/TC_Misc.rb
1055
+ - test/TC_FXMaterial.rb
1053
1056
  - test/TC_FXMenuCommand.rb
1057
+ - test/TC_FXRectangle.rb
1058
+ - test/TC_FXGLShape.rb
1059
+ - test/TC_FXTreeList.rb
1054
1060
  - test/TC_FXGradientBar.rb
1055
- - test/TC_FXSettings.rb
1056
- - test/TC_FXDCPrint.rb
1061
+ - test/TC_FXUndoList.rb
1062
+ - test/TC_FXImage.rb
1063
+ - test/TC_FXTableItem.rb
1064
+ - test/TC_FXVec3f.rb
1065
+ - test/TC_FXIconDict.rb
1066
+ - test/TC_FXStream.rb
1067
+ - test/TC_FXBMPImage.rb
1068
+ - test/TC_FXGLGroup.rb
1069
+ - test/TC_FXRanged.rb
1070
+ - test/TC_FXTopWindow.rb
1057
1071
  - test/TC_FXHiliteStyle.rb
1058
1072
  - test/TC_FXHeader.rb
1059
- - test/TC_FXArc.rb
1060
- - test/TC_FXVec2f.rb
1061
- - test/TC_FXId.rb
1062
- - test/TC_FXSize.rb
1063
- - test/TC_FXGLViewer.rb
1064
- - test/TC_FXCheckButton.rb
1065
- - test/TC_FXSegment.rb
1073
+ - test/TC_FXPoint.rb
1066
1074
  - test/TC_FXRegistry.rb
1067
- - test/TC_downcast.rb
1068
- - test/TC_FXVec4f.rb
1069
- - test/TC_FXTreeList.rb
1070
- - test/TC_FXFont.rb
1071
- - test/TC_FXLight.rb
1072
- - test/TC_FXExtentf.rb
1073
- - test/TC_FXScrollArea.rb
1074
- - test/TC_FXList.rb
1075
- - test/TC_FXDirList.rb
1076
- - test/TC_FXApp.rb
1077
- - test/TC_FXComboBox.rb
1078
- - test/TC_FXMaterial.rb
1079
- - test/TC_FXGLShape.rb
1080
- - test/TC_FXStream.rb
1081
- - test/TC_FXRangef.rb
1082
- - test/TC_FXQuatf.rb
1083
- - test/TC_FXMessageBox.rb
1084
- - test/TC_FXImage.rb
1085
- - test/TC_FXRectangle.rb
1086
1075
  - test/TC_FXFileStream.rb
1087
- - test/TC_FXFileAssoc.rb
1088
- - test/TC_FXVec2d.rb
1089
1076
  - test/TC_FXXBMIcon.rb
1090
- - test/TC_FXAccelTable.rb
1091
- - test/TC_FXIconDict.rb
1092
- - test/TC_FXViewport.rb
1093
- - test/TC_FXRegion.rb
1094
- - test/TC_FXUndoList.rb
1095
- - test/TC_FXListBox.rb
1096
- - test/TC_FXTable.rb
1097
- - test/TC_Misc.rb
1098
- - test/TC_FXMat4f.rb
1099
- - test/TC_FXDialogBox.rb
1100
- - test/TC_FXXPMImage.rb
1077
+ - test/TC_FXScrollArea.rb
1078
+ - test/TC_FXSettings.rb
1079
+ - test/TC_FXSize.rb
1080
+ - test/TC_FXApp.rb
1081
+ - test/TC_FXVec3d.rb
1082
+ - test/TC_FXExtentd.rb
1083
+ - test/TC_FXDC.rb
1084
+ - test/TC_FXMenuCheck.rb
1101
1085
  - test/TC_FXDCWindow.rb
1102
- - test/TC_FXTableItem.rb
1103
- - test/TC_FXShell.rb
1086
+ - test/TC_FXFont.rb
1087
+ - test/TC_FXTable.rb
1104
1088
  - test/TC_FXMenuRadio.rb
1105
- - test/TC_FXMenuCheck.rb
1106
- - test/TC_FXVec3d.rb
1089
+ - test/TC_FXExtentf.rb
1090
+ - test/TC_FXFontDesc.rb
1091
+ - test/TC_FXGLViewer.rb
1092
+ - test/TC_FXViewport.rb
1093
+ - test/TC_FXArc.rb
1107
1094
  - test/TC_FXText.rb
1108
- - test/TC_FXDC.rb
1095
+ - test/TC_FXId.rb
1096
+ - test/TC_FXXPMImage.rb
1097
+ - test/TC_FXMessageBox.rb
1098
+ - test/TC_FXLight.rb
1099
+ - test/TC_FXVec2f.rb
1100
+ - test/TC_downcast.rb
1101
+ - test/TC_FXQuatf.rb
1102
+ - test/TC_FXRadioButton.rb
1103
+ - test/TC_FXDCPrint.rb
1104
+ - test/TC_FXRegion.rb
1105
+ - test/TC_FXFoldingList.rb
1106
+ - test/TC_FXMat4f.rb
1107
+ - test/TC_FXAccelTable.rb
1109
1108
  - test/TC_FXButton.rb
1110
- - test/TC_FXScrollWindow.rb
1111
- - test/TC_FXTreeListBox.rb
1109
+ - test/TC_FXList.rb
1110
+ - test/TC_FXDialogBox.rb
1111
+ - test/TC_FXBMPIcon.rb
1112
1112
  - test/TC_FXMainWindow.rb
1113
- - test/TC_FXVec3f.rb
1113
+ - test/TC_FXXBMImage.rb
1114
+ - test/TC_FXFileAssoc.rb
1115
+ - test/TC_FXScrollWindow.rb
1116
+ - test/TC_FXDirList.rb
1117
+ - test/TC_FXDataTarget.rb