webkit-gtk 3.4.0 → 3.4.5
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/run-test.rb +24 -51
- data/test/webkit-gtk-test-utils.rb +3 -3
- 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: a4b410f45968aed785f723359caa15e1b9311f348438d24a77a42f5a4635d280
|
4
|
+
data.tar.gz: e5719b40a26c3ba02995782269b7e6d63a44abd65cc47d353a1b9ee8520da956
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb39747d7c600a2323957a80ec358b39ecf08fd362bc2da7ab3c27f1bb601f9cbd857bc60eeca63338929654263083c1c532b842f745626dfd85075b26f35968
|
7
|
+
data.tar.gz: e59bb4d9ee4cfe51276e4f0d7e61d74f2279f2df51ce3fa5583d8b1b16f2bfb6d1b8b8f0553390432de47fa8f110b1e4fc9a7cb9f31928dc7615a66d3dc65c20
|
data/test/run-test.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
#
|
3
|
-
# Copyright (C) 2013-
|
3
|
+
# Copyright (C) 2013-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,55 +16,28 @@
|
|
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
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
[cairo_gobject_base, "cairo-gobject"],
|
43
|
-
[webkit_gtk_base, "webkit-gtk"],
|
44
|
-
]
|
45
|
-
modules.each do |target, module_name|
|
46
|
-
if File.exist?("Makefile") and system("which make > /dev/null")
|
47
|
-
`make -C #{target.dump} > /dev/null` or exit(false)
|
19
|
+
require_relative "../../glib2/test/run-test"
|
20
|
+
|
21
|
+
run_test(__dir__,
|
22
|
+
[
|
23
|
+
"glib2",
|
24
|
+
"gobject-introspection",
|
25
|
+
"gio2",
|
26
|
+
"gdk_pixbuf2",
|
27
|
+
"atk",
|
28
|
+
"cairo-gobject",
|
29
|
+
"pango",
|
30
|
+
"gdk3",
|
31
|
+
"gtk3",
|
32
|
+
"webkit-gtk",
|
33
|
+
]) do
|
34
|
+
require_relative "../../gobject-introspection/test/gobject-introspection-test-utils"
|
35
|
+
require_relative "webkit-gtk-test-utils"
|
36
|
+
|
37
|
+
begin
|
38
|
+
WebKitGtk.init
|
39
|
+
rescue GObjectIntrospection::RepositoryError
|
40
|
+
puts("Omit because typelib file doesn't exist: #{$!.message}")
|
41
|
+
exit(true)
|
48
42
|
end
|
49
|
-
$LOAD_PATH.unshift(File.join(target, "ext", module_name))
|
50
|
-
$LOAD_PATH.unshift(File.join(target, "lib"))
|
51
|
-
end
|
52
|
-
|
53
|
-
$LOAD_PATH.unshift(File.join(glib_base, "test"))
|
54
|
-
require "glib-test-init"
|
55
|
-
|
56
|
-
$LOAD_PATH.unshift(File.join(gobject_introspection_base, "test"))
|
57
|
-
require "gobject-introspection-test-utils"
|
58
|
-
|
59
|
-
$LOAD_PATH.unshift(File.join(webkit_gtk_base, "test"))
|
60
|
-
require "webkit-gtk-test-utils"
|
61
|
-
|
62
|
-
require "webkit-gtk"
|
63
|
-
begin
|
64
|
-
WebKitGtk.init
|
65
|
-
rescue GObjectIntrospection::RepositoryError
|
66
|
-
puts("Omit because typelib file doesn't exist: #{$!.message}")
|
67
|
-
exit(true)
|
68
43
|
end
|
69
|
-
|
70
|
-
exit Test::Unit::AutoRunner.run(true, File.join(webkit_gtk_base, "test"))
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2013 Ruby-
|
1
|
+
# Copyright (C) 2013-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,9 +14,9 @@
|
|
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 "webkit-gtk"
|
18
18
|
|
19
|
-
|
19
|
+
require_relative "webkit-gtk-test-utils/omissions"
|
20
20
|
|
21
21
|
module WebKitGtkTestUtils
|
22
22
|
def later_version?(major, minor, micro=nil)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: webkit-gtk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.4.
|
4
|
+
version: 3.4.5
|
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-07-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gtk3
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.4.
|
19
|
+
version: 3.4.5
|
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.5
|
27
27
|
description: Ruby/WebKitGTK is a Ruby binding of WebKitGTK+.
|
28
28
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
29
29
|
executables: []
|
@@ -64,7 +64,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
64
64
|
- !ruby/object:Gem::Version
|
65
65
|
version: '0'
|
66
66
|
requirements: []
|
67
|
-
rubygems_version: 3.
|
67
|
+
rubygems_version: 3.3.0.dev
|
68
68
|
signing_key:
|
69
69
|
specification_version: 4
|
70
70
|
summary: Ruby/WebKitGTK is a Ruby binding of WebKitGTK+.
|