atk 3.4.3 → 3.4.4
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/test/atk-test-utils.rb +2 -2
- data/test/run-test.rb +9 -29
- metadata +5 -5
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 9f9a82224bac8358a765bd229c93daefcb8b090643f4ca749d6fff2a76451378
         | 
| 4 | 
            +
              data.tar.gz: e578614150a0e1f25e06379f42f6b5113db4621677e28e6ac2db3d51714cae0e
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: da9d4601c1c12d8e89b1598d475c704370986677b154201bf3af3f81034e1023e2b3a496760b7a4dc7016a2a83b180a457380f553665f0f7990411ec5c9b2477
         | 
| 7 | 
            +
              data.tar.gz: 830e056c14cf8cb6e53a0bfb73056e5224458b678d8a511c00acacbe94a2dd13743b74f51d18935138a2c63f6150901f0b9797b2d19995ca811655bf5c636180
         | 
    
        data/test/atk-test-utils.rb
    CHANGED
    
    | @@ -1,4 +1,4 @@ | |
| 1 | 
            -
            # Copyright (C) 2017  Ruby- | 
| 1 | 
            +
            # Copyright (C) 2017-2021  Ruby-GNOME Project Team
         | 
| 2 2 | 
             
            #
         | 
| 3 3 | 
             
            # This library is free software; you can redistribute it and/or
         | 
| 4 4 | 
             
            # modify it under the terms of the GNU Lesser General Public
         | 
| @@ -14,7 +14,7 @@ | |
| 14 14 | 
             
            # License along with this library; if not, write to the Free Software
         | 
| 15 15 | 
             
            # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
         | 
| 16 16 |  | 
| 17 | 
            -
            require " | 
| 17 | 
            +
            require "atk"
         | 
| 18 18 |  | 
| 19 19 | 
             
            module AtkTestUtils
         | 
| 20 20 | 
             
            end
         | 
    
        data/test/run-test.rb
    CHANGED
    
    | @@ -1,6 +1,6 @@ | |
| 1 1 | 
             
            #!/usr/bin/env ruby
         | 
| 2 2 | 
             
            #
         | 
| 3 | 
            -
            # Copyright (C) 2017  Ruby- | 
| 3 | 
            +
            # Copyright (C) 2017-2021  Ruby-GNOME Project Team
         | 
| 4 4 | 
             
            #
         | 
| 5 5 | 
             
            # This library is free software; you can redistribute it and/or
         | 
| 6 6 | 
             
            # modify it under the terms of the GNU Lesser General Public
         | 
| @@ -16,33 +16,13 @@ | |
| 16 16 | 
             
            # License along with this library; if not, write to the Free Software
         | 
| 17 17 | 
             
            # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
         | 
| 18 18 |  | 
| 19 | 
            -
             | 
| 20 | 
            -
            ruby_gnome_base = File.expand_path(ruby_gnome_base)
         | 
| 19 | 
            +
            require_relative "../../glib2/test/run-test"
         | 
| 21 20 |  | 
| 22 | 
            -
             | 
| 23 | 
            -
             | 
| 24 | 
            -
             | 
| 25 | 
            -
             | 
| 26 | 
            -
             | 
| 27 | 
            -
             | 
| 28 | 
            -
               | 
| 29 | 
            -
              [atk_base, "atk"]
         | 
| 30 | 
            -
            ]
         | 
| 31 | 
            -
            modules.each do |target, module_name|
         | 
| 32 | 
            -
              makefile = File.join(target, "Makefile")
         | 
| 33 | 
            -
              if File.exist?(makefile) and system("which make > /dev/null")
         | 
| 34 | 
            -
                `make -C #{target.dump} > /dev/null` or exit(false)
         | 
| 35 | 
            -
              end
         | 
| 36 | 
            -
              $LOAD_PATH.unshift(File.join(target, "ext", module_name))
         | 
| 37 | 
            -
              $LOAD_PATH.unshift(File.join(target, "lib"))
         | 
| 21 | 
            +
            run_test(__dir__,
         | 
| 22 | 
            +
                     [
         | 
| 23 | 
            +
                       "glib2",
         | 
| 24 | 
            +
                       "gobject-introspection",
         | 
| 25 | 
            +
                       "atk",
         | 
| 26 | 
            +
                     ]) do
         | 
| 27 | 
            +
              require_relative "atk-test-utils"
         | 
| 38 28 | 
             
            end
         | 
| 39 | 
            -
             | 
| 40 | 
            -
            $LOAD_PATH.unshift(File.join(glib_base, "test"))
         | 
| 41 | 
            -
            require "glib-test-init"
         | 
| 42 | 
            -
             | 
| 43 | 
            -
            $LOAD_PATH.unshift(File.join(atk_base, "test"))
         | 
| 44 | 
            -
            require "atk-test-utils"
         | 
| 45 | 
            -
             | 
| 46 | 
            -
            require "atk"
         | 
| 47 | 
            -
             | 
| 48 | 
            -
            exit Test::Unit::AutoRunner.run(true, File.join(atk_base, "test"))
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: atk
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 3.4. | 
| 4 | 
            +
              version: 3.4.4
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - The Ruby-GNOME Project Team
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date:  | 
| 11 | 
            +
            date: 2021-04-22 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: glib2
         | 
| @@ -16,14 +16,14 @@ dependencies: | |
| 16 16 | 
             
                requirements:
         | 
| 17 17 | 
             
                - - '='
         | 
| 18 18 | 
             
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            -
                    version: 3.4. | 
| 19 | 
            +
                    version: 3.4.4
         | 
| 20 20 | 
             
              type: :runtime
         | 
| 21 21 | 
             
              prerelease: false
         | 
| 22 22 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 23 23 | 
             
                requirements:
         | 
| 24 24 | 
             
                - - '='
         | 
| 25 25 | 
             
                  - !ruby/object:Gem::Version
         | 
| 26 | 
            -
                    version: 3.4. | 
| 26 | 
            +
                    version: 3.4.4
         | 
| 27 27 | 
             
            description: Ruby/ATK is a Ruby binding of ATK-1.0.x.
         | 
| 28 28 | 
             
            email: ruby-gnome2-devel-en@lists.sourceforge.net
         | 
| 29 29 | 
             
            executables: []
         | 
| @@ -61,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 61 61 | 
             
                - !ruby/object:Gem::Version
         | 
| 62 62 | 
             
                  version: '0'
         | 
| 63 63 | 
             
            requirements: []
         | 
| 64 | 
            -
            rubygems_version: 3. | 
| 64 | 
            +
            rubygems_version: 3.3.0.dev
         | 
| 65 65 | 
             
            signing_key: 
         | 
| 66 66 | 
             
            specification_version: 4
         | 
| 67 67 | 
             
            summary: Ruby/ATK is a Ruby binding of ATK-1.0.x.
         |