clutter 2.2.2-x86-mingw32 → 2.2.3-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 +4 -4
- data/lib/clutter.rb +3 -1
- data/lib/clutter/brightness-contrast-effect.rb +44 -0
- data/lib/clutter/clutter.rb +25 -0
- data/test/clutter-test-utils.rb +8 -0
- data/test/test-clutter-blur-effect.rb +27 -0
- data/test/test-clutter-brightness-contrast-effect.rb +56 -0
- data/test/test-clutter-canvas.rb +43 -0
- data/test/test-clutter-colorize-effect.rb +31 -0
- data/test/test-clutter-desaturate-effect.rb +30 -0
- data/test/test-clutter-page-turn-effect.rb +46 -0
- data/test/test-clutter-shader-effect.rb +65 -0
- metadata +21 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5412f50dfec132db2021cbe8522a6dcf7659863c
|
4
|
+
data.tar.gz: d92e140ec77c27fc8a30a0c211d2d7fbd1795310
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c37e9c5337a2f5fe0edd054240d89d08471fc10ddd47b991adb26218793604452fe5c1571ea9d4746f0e84589c21a05090823d9b97d6223b844859d2bb78ff98
|
7
|
+
data.tar.gz: dbec213bb32b2209ea41cb578c69464c2c4efd2608686f4c00eeb3ab38f6b57b0b60052f06c35245380127f0e09dd3716d5fc4060ac616e0f71545cb03bdff5b
|
data/lib/clutter.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2012-
|
1
|
+
# Copyright (C) 2012-2014 Ruby-GNOME2 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
|
@@ -54,7 +54,9 @@ module Clutter
|
|
54
54
|
require "clutter/actor"
|
55
55
|
require "clutter/actor-iter"
|
56
56
|
require "clutter/animatable"
|
57
|
+
require "clutter/brightness-contrast-effect"
|
57
58
|
require "clutter/cairo"
|
59
|
+
require "clutter/clutter"
|
58
60
|
require "clutter/color"
|
59
61
|
require "clutter/event"
|
60
62
|
require "clutter/point"
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# Copyright (C) 2014 Ruby-GNOME2 Project Team
|
2
|
+
#
|
3
|
+
# This library is free software; you can redistribute it and/or
|
4
|
+
# modify it under the terms of the GNU Lesser General Public
|
5
|
+
# License as published by the Free Software Foundation; either
|
6
|
+
# version 2.1 of the License, or (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This library is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
11
|
+
# Lesser General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU Lesser General Public
|
14
|
+
# License along with this library; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
|
+
|
17
|
+
module Clutter
|
18
|
+
class BrightnessContrastEffect
|
19
|
+
alias_method :set_contrast_raw, :set_contrast
|
20
|
+
def set_contrast(contrast_all_or_red, contrast_green=nil, contrast_blue=nil)
|
21
|
+
if contrast_green.nil? && contrast_blue.nil?
|
22
|
+
contrast_all = contrast_all_or_red
|
23
|
+
set_contrast_raw(contrast_all)
|
24
|
+
else
|
25
|
+
contrast_red = contrast_all_or_red
|
26
|
+
set_contrast_full(contrast_red, contrast_green,
|
27
|
+
contrast_blue)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
alias_method :set_brightness_raw, :set_brightness
|
32
|
+
def set_brightness(brightness_all_or_red, brightness_green=nil,
|
33
|
+
brightness_blue=nil)
|
34
|
+
if brightness_green.nil? && brightness_blue.nil?
|
35
|
+
brightness_all = brightness_all_or_red
|
36
|
+
set_brightness_raw(brightness_all)
|
37
|
+
else
|
38
|
+
brightness_red = brightness_all_or_red
|
39
|
+
set_brightness_full(brightness_red, brightness_green,
|
40
|
+
brightness_blue)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# Copyright (C) 2014 Ruby-GNOME2 Project Team
|
2
|
+
#
|
3
|
+
# This library is free software; you can redistribute it and/or
|
4
|
+
# modify it under the terms of the GNU Lesser General Public
|
5
|
+
# License as published by the Free Software Foundation; either
|
6
|
+
# version 2.1 of the License, or (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This library is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
11
|
+
# Lesser General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU Lesser General Public
|
14
|
+
# License along with this library; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
|
+
|
17
|
+
module Clutter
|
18
|
+
class << self
|
19
|
+
alias_method :check_version_raw, :check_version
|
20
|
+
remove_method :check_version
|
21
|
+
def check_version?(major, minor, micro=nil)
|
22
|
+
check_version_raw(major, minor, micro)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
data/test/clutter-test-utils.rb
CHANGED
@@ -18,6 +18,14 @@ require "test-unit"
|
|
18
18
|
require "test/unit/notify"
|
19
19
|
|
20
20
|
module ClutterTestUtils
|
21
|
+
private
|
22
|
+
def only_clutter_version(major, minor, micro=nil)
|
23
|
+
micro ||= 0
|
24
|
+
unless Clutter.check_version?(major, minor, micro)
|
25
|
+
omit("Require Clutter >= #{major}.#{minor}.#{micro}")
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
21
29
|
def omit_if_clutter_color_hash_expect_arguments
|
22
30
|
unless Clutter::Color.method(:hash).parameters.empty?
|
23
31
|
omit("This test can't be run on this environment.")
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# Copyright (C) 2014 Ruby-GNOME2 Project Team
|
2
|
+
#
|
3
|
+
# This library is free software; you can redistribute it and/or
|
4
|
+
# modify it under the terms of the GNU Lesser General Public
|
5
|
+
# License as published by the Free Software Foundation; either
|
6
|
+
# version 2.1 of the License, or (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This library is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
11
|
+
# Lesser General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU Lesser General Public
|
14
|
+
# License along with this library; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
|
+
|
17
|
+
class ClutterBlurEffectTest < Test::Unit::TestCase
|
18
|
+
include ClutterTestUtils
|
19
|
+
|
20
|
+
def setup
|
21
|
+
@blur_effect = Clutter::BlurEffect.new
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_blur_effect_new
|
25
|
+
assert_kind_of(Clutter::Effect, @blur_effect)
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
# Copyright (C) 2014 Ruby-GNOME2 Project Team
|
2
|
+
#
|
3
|
+
# This library is free software; you can redistribute it and/or
|
4
|
+
# modify it under the terms of the GNU Lesser General Public
|
5
|
+
# License as published by the Free Software Foundation; either
|
6
|
+
# version 2.1 of the License, or (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This library is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
11
|
+
# Lesser General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU Lesser General Public
|
14
|
+
# License along with this library; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
|
+
|
17
|
+
class ClutterBrightnessContrastEffectTest < Test::Unit::TestCase
|
18
|
+
include ClutterTestUtils
|
19
|
+
|
20
|
+
def setup
|
21
|
+
@effect = Clutter::BrightnessContrastEffect.new
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_brightness
|
25
|
+
brightness = 127
|
26
|
+
@effect.brightness = brightness
|
27
|
+
assert_equal([brightness, brightness, brightness],
|
28
|
+
@effect.brightness)
|
29
|
+
end
|
30
|
+
|
31
|
+
def test_brightness_rgb_params
|
32
|
+
brightness_red = 120
|
33
|
+
brightness_green = 200
|
34
|
+
brightness_blue = 250
|
35
|
+
@effect.set_brightness(brightness_red, brightness_green,
|
36
|
+
brightness_blue)
|
37
|
+
assert_equal([brightness_red, brightness_green, brightness_blue],
|
38
|
+
@effect.brightness)
|
39
|
+
end
|
40
|
+
|
41
|
+
def test_contrast
|
42
|
+
contrast = 127
|
43
|
+
@effect.contrast = contrast
|
44
|
+
assert_equal([contrast, contrast, contrast],
|
45
|
+
@effect.contrast)
|
46
|
+
end
|
47
|
+
|
48
|
+
def test_contrast_rgb_params
|
49
|
+
contrast_red = 250
|
50
|
+
contrast_green = 120
|
51
|
+
contrast_blue = 100
|
52
|
+
@effect.set_contrast(contrast_red, contrast_green, contrast_blue)
|
53
|
+
assert_equal([contrast_red, contrast_green, contrast_blue],
|
54
|
+
@effect.contrast)
|
55
|
+
end
|
56
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# Copyright (C) 2014 Ruby-GNOME2 Project Team
|
2
|
+
#
|
3
|
+
# This library is free software; you can redistribute it and/or
|
4
|
+
# modify it under the terms of the GNU Lesser General Public
|
5
|
+
# License as published by the Free Software Foundation; either
|
6
|
+
# version 2.1 of the License, or (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This library is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
11
|
+
# Lesser General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU Lesser General Public
|
14
|
+
# License along with this library; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
|
+
|
17
|
+
class ClutterCanvasTest < Test::Unit::TestCase
|
18
|
+
include ClutterTestUtils
|
19
|
+
|
20
|
+
def setup
|
21
|
+
@canvas = Clutter::Canvas.new
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_scale_factor
|
25
|
+
only_clutter_version(1, 18, 0)
|
26
|
+
scale = 2
|
27
|
+
@canvas.scale_factor = scale
|
28
|
+
assert_equal(scale, @canvas.scale_factor)
|
29
|
+
assert_true(@canvas.scale_factor_set?)
|
30
|
+
end
|
31
|
+
|
32
|
+
def test_height_accessors
|
33
|
+
height = 320
|
34
|
+
@canvas.height = height
|
35
|
+
assert_equal(height, @canvas.height)
|
36
|
+
end
|
37
|
+
|
38
|
+
def test_width_accessors
|
39
|
+
width = 640
|
40
|
+
@canvas.width = width
|
41
|
+
assert_equal(width, @canvas.width)
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# Copyright (C) 2014 Ruby-GNOME2 Project Team
|
2
|
+
#
|
3
|
+
# This library is free software; you can redistribute it and/or
|
4
|
+
# modify it under the terms of the GNU Lesser General Public
|
5
|
+
# License as published by the Free Software Foundation; either
|
6
|
+
# version 2.1 of the License, or (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This library is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
11
|
+
# Lesser General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU Lesser General Public
|
14
|
+
# License along with this library; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
|
+
|
17
|
+
class ClutterColorizeEffectTest < Test::Unit::TestCase
|
18
|
+
include ClutterTestUtils
|
19
|
+
|
20
|
+
def setup
|
21
|
+
omit_if_clutter_color_hash_expect_arguments
|
22
|
+
default_color = Clutter::Color.rgb(255, 0, 0)
|
23
|
+
@colorize_effect = Clutter::ColorizeEffect.new(default_color)
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_tint_accessors
|
27
|
+
color = Clutter::Color.rgb(127, 127, 0)
|
28
|
+
@colorize_effect.tint = color
|
29
|
+
assert_equal(color.to_s, @colorize_effect.tint.to_s)
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# Copyright (C) 2014 Ruby-GNOME2 Project Team
|
2
|
+
#
|
3
|
+
# This library is free software; you can redistribute it and/or
|
4
|
+
# modify it under the terms of the GNU Lesser General Public
|
5
|
+
# License as published by the Free Software Foundation; either
|
6
|
+
# version 2.1 of the License, or (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This library is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
11
|
+
# Lesser General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU Lesser General Public
|
14
|
+
# License along with this library; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
|
+
|
17
|
+
class ClutterDesaturateEffectTest < Test::Unit::TestCase
|
18
|
+
include ClutterTestUtils
|
19
|
+
|
20
|
+
def setup
|
21
|
+
default_factor = 1.0
|
22
|
+
@desaturate_effect = Clutter::DesaturateEffect.new(default_factor)
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_factor_accesssors
|
26
|
+
factor = 0.8
|
27
|
+
@desaturate_effect.factor = factor
|
28
|
+
assert_equal(factor, @desaturate_effect.factor)
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
# Copyright (C) 2014 Ruby-GNOME2 Project Team
|
2
|
+
#
|
3
|
+
# This library is free software; you can redistribute it and/or
|
4
|
+
# modify it under the terms of the GNU Lesser General Public
|
5
|
+
# License as published by the Free Software Foundation; either
|
6
|
+
# version 2.1 of the License, or (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This library is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
11
|
+
# Lesser General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU Lesser General Public
|
14
|
+
# License along with this library; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
|
+
|
17
|
+
class ClutterPageTurnEffect < Test::Unit::TestCase
|
18
|
+
include ClutterTestUtils
|
19
|
+
|
20
|
+
def setup
|
21
|
+
default_period = 1.0
|
22
|
+
default_angle = 180.0
|
23
|
+
default_radious = 20.0
|
24
|
+
@page_turn_effect = Clutter::PageTurnEffect.new(default_period,
|
25
|
+
default_angle,
|
26
|
+
default_radious)
|
27
|
+
end
|
28
|
+
|
29
|
+
def test_angle_accessors
|
30
|
+
page_angle = 150
|
31
|
+
@page_turn_effect.angle = page_angle
|
32
|
+
assert_equal(page_angle, @page_turn_effect.angle)
|
33
|
+
end
|
34
|
+
|
35
|
+
def test_period_accessors
|
36
|
+
page_period = 0.5
|
37
|
+
@page_turn_effect.period = page_period
|
38
|
+
assert_equal(page_period, @page_turn_effect.period)
|
39
|
+
end
|
40
|
+
|
41
|
+
def test_radius_accessors
|
42
|
+
page_radius = 50.0
|
43
|
+
@page_turn_effect.radius = page_radius
|
44
|
+
assert_equal(page_radius, @page_turn_effect.radius)
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
# Copyright (C) 2014 Ruby-GNOME2 Project Team
|
2
|
+
#
|
3
|
+
# This library is free software; you can redistribute it and/or
|
4
|
+
# modify it under the terms of the GNU Lesser General Public
|
5
|
+
# License as published by the Free Software Foundation; either
|
6
|
+
# version 2.1 of the License, or (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This library is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
11
|
+
# Lesser General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU Lesser General Public
|
14
|
+
# License along with this library; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
|
+
|
17
|
+
class ClutterShaderEffect < Test::Unit::TestCase
|
18
|
+
include ClutterTestUtils
|
19
|
+
|
20
|
+
def setup
|
21
|
+
@shader_effect = Clutter::ShaderEffect.new(Clutter::ShaderType::FRAGMENT_SHADER)
|
22
|
+
@fragment_shader_source = <<-EOS
|
23
|
+
#ifdef GL_ES
|
24
|
+
precision mediump float;
|
25
|
+
#endif
|
26
|
+
|
27
|
+
void main( void ) {
|
28
|
+
gl_FragColor = vec4( 1.0, 0.0, 1.0, 1.0 );
|
29
|
+
}
|
30
|
+
EOS
|
31
|
+
# TODO: use original Cogl::INVALID_HANDLE
|
32
|
+
# original value: NULL
|
33
|
+
# ref: https://developer.gnome.org/cogl/1.18/cogl-General-API.html#COGL-INVALID-HANDLE:CAPS
|
34
|
+
# It should create gi based cogl binding?
|
35
|
+
@cogl_invalid_handle = 0
|
36
|
+
end
|
37
|
+
|
38
|
+
def test_set_uniform_value
|
39
|
+
gvalue = 1.0
|
40
|
+
assert_nothing_raised do
|
41
|
+
@shader_effect.set_uniform_value("components", gvalue)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
def test_set_shader_source
|
46
|
+
result = @shader_effect.set_shader_source(@fragment_shader_source)
|
47
|
+
assert_true(result)
|
48
|
+
end
|
49
|
+
|
50
|
+
def test_get_program
|
51
|
+
@shader_effect.shader_source = @fragment_shader_source
|
52
|
+
assert_not_equal(@cogl_invalid_handle, @shader_effect.program)
|
53
|
+
end
|
54
|
+
|
55
|
+
def test_get_shader
|
56
|
+
@shader_effect.shader_source = @fragment_shader_source
|
57
|
+
assert_not_equal(@cogl_invalid_handle, @shader_effect.shader)
|
58
|
+
end
|
59
|
+
|
60
|
+
class TestEnum < self
|
61
|
+
def test_shader_type
|
62
|
+
assert_const_defined(Clutter::ShaderType, :VERTEX_SHADER)
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clutter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.3
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- The Ruby-GNOME2 Project Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-10-
|
11
|
+
date: 2014-10-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cairo-gobject
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 2.2.
|
19
|
+
version: 2.2.3
|
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: 2.2.
|
26
|
+
version: 2.2.3
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: gobject-introspection
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 2.2.
|
33
|
+
version: 2.2.3
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 2.2.
|
40
|
+
version: 2.2.3
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: test-unit-notify
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -58,42 +58,42 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - '='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 2.2.
|
61
|
+
version: 2.2.3
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - '='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 2.2.
|
68
|
+
version: 2.2.3
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: pango
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - '='
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: 2.2.
|
75
|
+
version: 2.2.3
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - '='
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: 2.2.
|
82
|
+
version: 2.2.3
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: gdk_pixbuf2
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - '='
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: 2.2.
|
89
|
+
version: 2.2.3
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - '='
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 2.2.
|
96
|
+
version: 2.2.3
|
97
97
|
description: Ruby/Clutter is a Ruby binding of Clutter.
|
98
98
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
99
99
|
executables: []
|
@@ -105,7 +105,9 @@ files:
|
|
105
105
|
- lib/clutter/actor-iter.rb
|
106
106
|
- lib/clutter/actor.rb
|
107
107
|
- lib/clutter/animatable.rb
|
108
|
+
- lib/clutter/brightness-contrast-effect.rb
|
108
109
|
- lib/clutter/cairo.rb
|
110
|
+
- lib/clutter/clutter.rb
|
109
111
|
- lib/clutter/color.rb
|
110
112
|
- lib/clutter/event.rb
|
111
113
|
- lib/clutter/point.rb
|
@@ -128,7 +130,14 @@ files:
|
|
128
130
|
- sample/scroll-actor.rb
|
129
131
|
- test/clutter-test-utils.rb
|
130
132
|
- test/run-test.rb
|
133
|
+
- test/test-clutter-blur-effect.rb
|
134
|
+
- test/test-clutter-brightness-contrast-effect.rb
|
135
|
+
- test/test-clutter-canvas.rb
|
131
136
|
- test/test-clutter-color.rb
|
137
|
+
- test/test-clutter-colorize-effect.rb
|
138
|
+
- test/test-clutter-desaturate-effect.rb
|
139
|
+
- test/test-clutter-page-turn-effect.rb
|
140
|
+
- test/test-clutter-shader-effect.rb
|
132
141
|
- vendor/local/bin/json-glib-format.exe
|
133
142
|
- vendor/local/bin/json-glib-validate.exe
|
134
143
|
- vendor/local/bin/libclutter-1.0-0.dll
|