fxruby 1.6.27-x86-mingw32 → 1.6.28-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 +7 -0
 - checksums.yaml.gz.sig +0 -0
 - data.tar.gz.sig +0 -0
 - data/History.txt +4 -0
 - data/Rakefile.cross +1 -1
 - data/ext/fox16_c/extconf.rb +2 -2
 - data/lib/1.8/fox16_c.so +0 -0
 - data/lib/1.9/fox16_c.so +0 -0
 - data/lib/2.0/fox16_c.so +0 -0
 - data/lib/fox16/scintilla.rb +2 -2
 - data/lib/fox16/version.rb +1 -1
 - metadata +23 -46
 - metadata.gz.sig +0 -0
 
    
        checksums.yaml
    ADDED
    
    | 
         @@ -0,0 +1,7 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- 
         
     | 
| 
      
 2 
     | 
    
         
            +
            SHA1: 
         
     | 
| 
      
 3 
     | 
    
         
            +
              data.tar.gz: d2d5a7e838ffbb025dc6f829d77df527c98bbafc
         
     | 
| 
      
 4 
     | 
    
         
            +
              metadata.gz: d5801b4b7146ce705975270e067013563c65e741
         
     | 
| 
      
 5 
     | 
    
         
            +
            SHA512: 
         
     | 
| 
      
 6 
     | 
    
         
            +
              data.tar.gz: 8d481648d5e950f2cbc418ea78a9a8d7e64c74b330d8156af55e313e7b267bb2938ff0d3313dd3376fd69f1426da71aec17a7904ec6a1f928b0baf2b7d1a7672
         
     | 
| 
      
 7 
     | 
    
         
            +
              metadata.gz: 1f26f6fb4551ed5b22834d2a870c7a5dab1fa32cea61888e41e9c8285b1d3f0abc2b5acd4002a5f4f7995843d647a7be080e5b844d9452bbfcdf2ce31e41f34c
         
     | 
    
        checksums.yaml.gz.sig
    ADDED
    
    | 
         Binary file 
     | 
    
        data.tar.gz.sig
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/History.txt
    CHANGED
    
    
    
        data/Rakefile.cross
    CHANGED
    
    | 
         @@ -80,7 +80,7 @@ class CrossLibrary < OpenStruct 
     | 
|
| 
       80 
80 
     | 
    
         | 
| 
       81 
81 
     | 
    
         | 
| 
       82 
82 
     | 
    
         
             
                # Fetch libfox tarball
         
     | 
| 
       83 
     | 
    
         
            -
                self.libfox_version            = ENV['libfox_version'] || '1.6. 
     | 
| 
      
 83 
     | 
    
         
            +
                self.libfox_version            = ENV['libfox_version'] || '1.6.49'
         
     | 
| 
       84 
84 
     | 
    
         
             
                self.libfox_source_uri         = URI( "http://ftp.fox-toolkit.org/pub/fox-#{libfox_version}.tar.gz" )
         
     | 
| 
       85 
85 
     | 
    
         
             
                self.libfox_tarball            = static_sourcesdir + File.basename( libfox_source_uri.path )
         
     | 
| 
       86 
86 
     | 
    
         
             
                self.static_libfox_builddir    = static_builddir + libfox_tarball.basename(".tar.gz")
         
     | 
    
        data/ext/fox16_c/extconf.rb
    CHANGED
    
    | 
         @@ -110,10 +110,10 @@ def do_rake_compiler_setup 
     | 
|
| 
       110 
110 
     | 
    
         
             
              $libs = append_library($libs, "Xrandr") unless RUBY_PLATFORM =~ /mingw/ || enable_config("win32-static-build")
         
     | 
| 
       111 
111 
     | 
    
         
             
              $libs = append_library($libs, "Xcursor") unless RUBY_PLATFORM =~ /mingw/ || enable_config("win32-static-build")
         
     | 
| 
       112 
112 
     | 
    
         
             
              $libs = append_library($libs, "png")
         
     | 
| 
       113 
     | 
    
         
            -
               
     | 
| 
      
 113 
     | 
    
         
            +
              find_header('FXRbCommon.h', File.join(File.dirname(__FILE__), 'include'))
         
     | 
| 
       114 
114 
     | 
    
         
             
              if is_fxscintilla_build?
         
     | 
| 
       115 
115 
     | 
    
         
             
                FileUtils.move('scintilla_wrap.cpp.bak', 'scintilla_wrap.cpp') if FileTest.exist?('scintilla_wrap.cpp.bak')
         
     | 
| 
       116 
     | 
    
         
            -
                $ 
     | 
| 
      
 116 
     | 
    
         
            +
                $CPPFLAGS = $CPPFLAGS + " -DWITH_FXSCINTILLA -DHAVE_FOX_1_6"
         
     | 
| 
       117 
117 
     | 
    
         
             
                $libs = append_library($libs, "fxscintilla")
         
     | 
| 
       118 
118 
     | 
    
         
             
              else
         
     | 
| 
       119 
119 
     | 
    
         
             
                FileUtils.move('scintilla_wrap.cpp', 'scintilla_wrap.cpp.bak') if FileTest.exist?('scintilla_wrap.cpp')
         
     | 
    
        data/lib/1.8/fox16_c.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/lib/1.9/fox16_c.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/lib/2.0/fox16_c.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/lib/fox16/scintilla.rb
    CHANGED
    
    | 
         @@ -3,7 +3,7 @@ 
     | 
|
| 
       3 
3 
     | 
    
         | 
| 
       4 
4 
     | 
    
         
             
            module Fox
         
     | 
| 
       5 
5 
     | 
    
         
             
              class FXScintilla
         
     | 
| 
       6 
     | 
    
         
            -
                #
         
     | 
| 
      
 6 
     | 
    
         
            +
                # 
         
     | 
| 
       7 
7 
     | 
    
         | 
| 
       8 
8 
     | 
    
         | 
| 
       9 
9 
     | 
    
         | 
| 
         @@ -3238,7 +3238,7 @@ module Fox 
     | 
|
| 
       3238 
3238 
     | 
    
         
             
                  sendMessage(2626, markerNumber, pixels)
         
     | 
| 
       3239 
3239 
     | 
    
         
             
                end
         
     | 
| 
       3240 
3240 
     | 
    
         | 
| 
       3241 
     | 
    
         
            -
                # Register an RGBA image for use in autocompletion lists.
         
     | 
| 
      
 3241 
     | 
    
         
            +
                # Register an RGBA image for use in autocompletion lists. 
         
     | 
| 
       3242 
3242 
     | 
    
         
             
                # It has the width and height from RGBAImageSetWidth/Height
         
     | 
| 
       3243 
3243 
     | 
    
         
             
                def registerRGBAImage(type, pixels)
         
     | 
| 
       3244 
3244 
     | 
    
         
             
                  sendMessage(2627, type, pixels)
         
     | 
    
        data/lib/fox16/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,13 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: fxruby
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       4 
     | 
    
         
            -
               
     | 
| 
       5 
     | 
    
         
            -
              prerelease: 
         
     | 
| 
       6 
     | 
    
         
            -
              segments: 
         
     | 
| 
       7 
     | 
    
         
            -
              - 1
         
     | 
| 
       8 
     | 
    
         
            -
              - 6
         
     | 
| 
       9 
     | 
    
         
            -
              - 27
         
     | 
| 
       10 
     | 
    
         
            -
              version: 1.6.27
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.6.28
         
     | 
| 
       11 
5 
     | 
    
         
             
            platform: x86-mingw32
         
     | 
| 
       12 
6 
     | 
    
         
             
            authors: 
         
     | 
| 
       13 
7 
     | 
    
         
             
            - Lyle Johnson
         
     | 
| 
         @@ -37,36 +31,26 @@ cert_chain: 
     | 
|
| 
       37 
31 
     | 
    
         
             
              mMFp4kPUHbWOqCp2mz9gCA==
         
     | 
| 
       38 
32 
     | 
    
         
             
              -----END CERTIFICATE-----
         
     | 
| 
       39 
33 
     | 
    
         | 
| 
       40 
     | 
    
         
            -
            date: 2013- 
     | 
| 
      
 34 
     | 
    
         
            +
            date: 2013-07-05 00:00:00 Z
         
     | 
| 
       41 
35 
     | 
    
         
             
            dependencies: 
         
     | 
| 
       42 
36 
     | 
    
         
             
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       43 
37 
     | 
    
         
             
              name: rdoc
         
     | 
| 
       44 
38 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       45 
39 
     | 
    
         
             
              requirement: &id001 !ruby/object:Gem::Requirement 
         
     | 
| 
       46 
     | 
    
         
            -
                none: false
         
     | 
| 
       47 
40 
     | 
    
         
             
                requirements: 
         
     | 
| 
       48 
41 
     | 
    
         
             
                - - ~>
         
     | 
| 
       49 
42 
     | 
    
         
             
                  - !ruby/object:Gem::Version 
         
     | 
| 
       50 
     | 
    
         
            -
                     
     | 
| 
       51 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       52 
     | 
    
         
            -
                    - 3
         
     | 
| 
       53 
     | 
    
         
            -
                    - 10
         
     | 
| 
       54 
     | 
    
         
            -
                    version: "3.10"
         
     | 
| 
      
 43 
     | 
    
         
            +
                    version: "4.0"
         
     | 
| 
       55 
44 
     | 
    
         
             
              type: :development
         
     | 
| 
       56 
45 
     | 
    
         
             
              version_requirements: *id001
         
     | 
| 
       57 
46 
     | 
    
         
             
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       58 
47 
     | 
    
         
             
              name: hoe
         
     | 
| 
       59 
48 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       60 
49 
     | 
    
         
             
              requirement: &id002 !ruby/object:Gem::Requirement 
         
     | 
| 
       61 
     | 
    
         
            -
                none: false
         
     | 
| 
       62 
50 
     | 
    
         
             
                requirements: 
         
     | 
| 
       63 
51 
     | 
    
         
             
                - - ~>
         
     | 
| 
       64 
52 
     | 
    
         
             
                  - !ruby/object:Gem::Version 
         
     | 
| 
       65 
     | 
    
         
            -
                     
     | 
| 
       66 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       67 
     | 
    
         
            -
                    - 3
         
     | 
| 
       68 
     | 
    
         
            -
                    - 0
         
     | 
| 
       69 
     | 
    
         
            -
                    version: "3.0"
         
     | 
| 
      
 53 
     | 
    
         
            +
                    version: "3.6"
         
     | 
| 
       70 
54 
     | 
    
         
             
              type: :development
         
     | 
| 
       71 
55 
     | 
    
         
             
              version_requirements: *id002
         
     | 
| 
       72 
56 
     | 
    
         
             
            description: FXRuby is the Ruby binding to the FOX GUI toolkit.
         
     | 
| 
         @@ -994,24 +978,24 @@ files: 
     | 
|
| 
       994 
978 
     | 
    
         
             
            - test/stress2.rb
         
     | 
| 
       995 
979 
     | 
    
         
             
            - test/stress3.rb
         
     | 
| 
       996 
980 
     | 
    
         
             
            - test/testcase.rb
         
     | 
| 
       997 
     | 
    
         
            -
            - ext/fox16_c/ui_wrap.cpp
         
     | 
| 
       998 
     | 
    
         
            -
            - ext/fox16_c/mdi_wrap.cpp
         
     | 
| 
       999 
     | 
    
         
            -
            - ext/fox16_c/iconlist_wrap.cpp
         
     | 
| 
       1000 
     | 
    
         
            -
            - ext/fox16_c/frames_wrap.cpp
         
     | 
| 
       1001 
     | 
    
         
            -
            - ext/fox16_c/dialogs_wrap.cpp
         
     | 
| 
       1002 
981 
     | 
    
         
             
            - ext/fox16_c/label_wrap.cpp
         
     | 
| 
       1003 
     | 
    
         
            -
            - ext/fox16_c/icons_wrap.cpp
         
     | 
| 
       1004 
     | 
    
         
            -
            - ext/fox16_c/treelist_wrap.cpp
         
     | 
| 
       1005 
982 
     | 
    
         
             
            - ext/fox16_c/core_wrap.cpp
         
     | 
| 
       1006 
     | 
    
         
            -
            - ext/fox16_c/text_wrap.cpp
         
     | 
| 
       1007 
     | 
    
         
            -
            - ext/fox16_c/menu_wrap.cpp
         
     | 
| 
       1008 
     | 
    
         
            -
            - ext/fox16_c/list_wrap.cpp
         
     | 
| 
       1009 
983 
     | 
    
         
             
            - ext/fox16_c/image_wrap.cpp
         
     | 
| 
       1010 
     | 
    
         
            -
            - ext/fox16_c/scintilla_wrap.cpp
         
     | 
| 
       1011 
984 
     | 
    
         
             
            - ext/fox16_c/fx3d_wrap.cpp
         
     | 
| 
      
 985 
     | 
    
         
            +
            - ext/fox16_c/dialogs_wrap.cpp
         
     | 
| 
      
 986 
     | 
    
         
            +
            - ext/fox16_c/scintilla_wrap.cpp
         
     | 
| 
      
 987 
     | 
    
         
            +
            - ext/fox16_c/list_wrap.cpp
         
     | 
| 
      
 988 
     | 
    
         
            +
            - ext/fox16_c/dc_wrap.cpp
         
     | 
| 
      
 989 
     | 
    
         
            +
            - ext/fox16_c/mdi_wrap.cpp
         
     | 
| 
      
 990 
     | 
    
         
            +
            - ext/fox16_c/menu_wrap.cpp
         
     | 
| 
      
 991 
     | 
    
         
            +
            - ext/fox16_c/treelist_wrap.cpp
         
     | 
| 
      
 992 
     | 
    
         
            +
            - ext/fox16_c/text_wrap.cpp
         
     | 
| 
       1012 
993 
     | 
    
         
             
            - ext/fox16_c/table_wrap.cpp
         
     | 
| 
       1013 
994 
     | 
    
         
             
            - ext/fox16_c/layout_wrap.cpp
         
     | 
| 
       1014 
     | 
    
         
            -
            - ext/fox16_c/ 
     | 
| 
      
 995 
     | 
    
         
            +
            - ext/fox16_c/frames_wrap.cpp
         
     | 
| 
      
 996 
     | 
    
         
            +
            - ext/fox16_c/ui_wrap.cpp
         
     | 
| 
      
 997 
     | 
    
         
            +
            - ext/fox16_c/icons_wrap.cpp
         
     | 
| 
      
 998 
     | 
    
         
            +
            - ext/fox16_c/iconlist_wrap.cpp
         
     | 
| 
       1015 
999 
     | 
    
         
             
            - ext/fox16_c/include/inlinestubs.h
         
     | 
| 
       1016 
1000 
     | 
    
         
             
            - ext/fox16_c/librb.c
         
     | 
| 
       1017 
1001 
     | 
    
         
             
            - doap.rdf
         
     | 
| 
         @@ -1022,6 +1006,8 @@ files: 
     | 
|
| 
       1022 
1006 
     | 
    
         
             
            homepage: http://github.com/larskanis/fxruby
         
     | 
| 
       1023 
1007 
     | 
    
         
             
            licenses: []
         
     | 
| 
       1024 
1008 
     | 
    
         | 
| 
      
 1009 
     | 
    
         
            +
            metadata: {}
         
     | 
| 
      
 1010 
     | 
    
         
            +
             
     | 
| 
       1025 
1011 
     | 
    
         
             
            post_install_message: 
         
     | 
| 
       1026 
1012 
     | 
    
         
             
            rdoc_options: 
         
     | 
| 
       1027 
1013 
     | 
    
         
             
            - --main
         
     | 
| 
         @@ -1033,29 +1019,20 @@ rdoc_options: 
     | 
|
| 
       1033 
1019 
     | 
    
         
             
            require_paths: 
         
     | 
| 
       1034 
1020 
     | 
    
         
             
            - lib
         
     | 
| 
       1035 
1021 
     | 
    
         
             
            required_ruby_version: !ruby/object:Gem::Requirement 
         
     | 
| 
       1036 
     | 
    
         
            -
              none: false
         
     | 
| 
       1037 
1022 
     | 
    
         
             
              requirements: 
         
     | 
| 
       1038 
     | 
    
         
            -
              -  
     | 
| 
      
 1023 
     | 
    
         
            +
              - &id003 
         
     | 
| 
      
 1024 
     | 
    
         
            +
                - ">="
         
     | 
| 
       1039 
1025 
     | 
    
         
             
                - !ruby/object:Gem::Version 
         
     | 
| 
       1040 
     | 
    
         
            -
                  hash: 3
         
     | 
| 
       1041 
     | 
    
         
            -
                  segments: 
         
     | 
| 
       1042 
     | 
    
         
            -
                  - 0
         
     | 
| 
       1043 
1026 
     | 
    
         
             
                  version: "0"
         
     | 
| 
       1044 
1027 
     | 
    
         
             
            required_rubygems_version: !ruby/object:Gem::Requirement 
         
     | 
| 
       1045 
     | 
    
         
            -
              none: false
         
     | 
| 
       1046 
1028 
     | 
    
         
             
              requirements: 
         
     | 
| 
       1047 
     | 
    
         
            -
              -  
     | 
| 
       1048 
     | 
    
         
            -
                - !ruby/object:Gem::Version 
         
     | 
| 
       1049 
     | 
    
         
            -
                  hash: 3
         
     | 
| 
       1050 
     | 
    
         
            -
                  segments: 
         
     | 
| 
       1051 
     | 
    
         
            -
                  - 0
         
     | 
| 
       1052 
     | 
    
         
            -
                  version: "0"
         
     | 
| 
      
 1029 
     | 
    
         
            +
              - *id003
         
     | 
| 
       1053 
1030 
     | 
    
         
             
            requirements: []
         
     | 
| 
       1054 
1031 
     | 
    
         | 
| 
       1055 
1032 
     | 
    
         
             
            rubyforge_project: fxruby
         
     | 
| 
       1056 
     | 
    
         
            -
            rubygems_version:  
     | 
| 
      
 1033 
     | 
    
         
            +
            rubygems_version: 2.0.3
         
     | 
| 
       1057 
1034 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       1058 
     | 
    
         
            -
            specification_version:  
     | 
| 
      
 1035 
     | 
    
         
            +
            specification_version: 4
         
     | 
| 
       1059 
1036 
     | 
    
         
             
            summary: FXRuby is the Ruby binding to the FOX GUI toolkit.
         
     | 
| 
       1060 
1037 
     | 
    
         
             
            test_files: 
         
     | 
| 
       1061 
1038 
     | 
    
         
             
            - test/TC_FXMenuRadio.rb
         
     | 
    
        metadata.gz.sig
    CHANGED
    
    | 
         Binary file 
     |