clutter-gstreamer 2.1.0-x86-mingw32 → 2.2.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +1 -1
- data/lib/clutter-gst.rb +5 -5
- data/vendor/local/bin/libclutter-gst-2.0-0.dll +0 -0
- data/vendor/local/include/clutter-gst-2.0/clutter-gst/clutter-gst-version.h +3 -3
- data/vendor/local/lib/girepository-1.0/ClutterGst-2.0.typelib +0 -0
- data/vendor/local/lib/gstreamer-1.0/libgstclutter.dll +0 -0
- data/vendor/local/lib/gstreamer-1.0/libgstclutter.dll.a +0 -0
- data/vendor/local/lib/gstreamer-1.0/libgstclutter.la +1 -1
- data/vendor/local/lib/libclutter-gst-2.0.dll.a +0 -0
- data/vendor/local/lib/libclutter-gst-2.0.la +3 -3
- data/vendor/local/lib/pkgconfig/clutter-gst-2.0.pc +1 -1
- data/vendor/local/share/gir-1.0/ClutterGst-2.0.gir +2 -2
- data/vendor/local/share/gtk-doc/html/clutter-gst/ClutterGstPlayer.html +2 -2
- data/vendor/local/share/gtk-doc/html/clutter-gst/ClutterGstVideoSink.html +2 -2
- data/vendor/local/share/gtk-doc/html/clutter-gst/ClutterGstVideoTexture.html +2 -2
- data/vendor/local/share/gtk-doc/html/clutter-gst/ch01.html +4 -4
- data/vendor/local/share/gtk-doc/html/clutter-gst/ch02.html +3 -3
- data/vendor/local/share/gtk-doc/html/clutter-gst/clutter-gst-Utilities.html +2 -2
- data/vendor/local/share/gtk-doc/html/clutter-gst/clutter-gst-Versioning-Macros.html +5 -5
- data/vendor/local/share/gtk-doc/html/clutter-gst/clutter-gst.devhelp2 +1 -1
- data/vendor/local/share/gtk-doc/html/clutter-gst/index.html +5 -5
- data/vendor/local/share/gtk-doc/html/clutter-gst/license.html +3 -3
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b1da2e43024b374805cd15fa4ca17b7a934e742d
|
4
|
+
data.tar.gz: 5ad6875517ce79e118f7bbb320a2743f1ba2041e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d12e0c61a33576bbb3495aa51ff02f221a6183ec0e67334f201e40c26ab82095ffa6f64d6f69292d00852ce48ffda62beaecb7029b7960e12009f2a460d8fb22
|
7
|
+
data.tar.gz: c1e9974292524b05c7a2b674fe0aedef9404a77899659d7b4df2f37024f4823cf54008d19d6f62ed6f4b15d2444f1b79780e6c3c088708f63bdc72587586692a
|
data/Rakefile
CHANGED
@@ -46,7 +46,7 @@ package_task = GNOME2::Rake::PackageTask.new do |package|
|
|
46
46
|
:name => "clutter-gst",
|
47
47
|
:download_site => :gnome,
|
48
48
|
:label => "Clutter-GStreamer",
|
49
|
-
:version => "2.0.
|
49
|
+
:version => "2.0.10",
|
50
50
|
:compression_method => "xz",
|
51
51
|
:windows => {
|
52
52
|
:configure_args => [
|
data/lib/clutter-gst.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2013 Ruby-GNOME2 Project Team
|
1
|
+
# Copyright (C) 2013-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
|
@@ -39,12 +39,12 @@ module ClutterGst
|
|
39
39
|
end
|
40
40
|
|
41
41
|
def init(argv=[])
|
42
|
-
loader = Loader.new(self, argv)
|
43
|
-
loader.load("ClutterGst")
|
44
42
|
class << self
|
45
43
|
remove_method(:init)
|
46
44
|
remove_method(:const_missing)
|
47
45
|
end
|
46
|
+
loader = Loader.new(self, argv)
|
47
|
+
loader.load("ClutterGst")
|
48
48
|
end
|
49
49
|
end
|
50
50
|
|
@@ -64,8 +64,8 @@ module ClutterGst
|
|
64
64
|
1 + @init_arguments.size,
|
65
65
|
[$0] + @init_arguments,
|
66
66
|
]
|
67
|
-
error,
|
68
|
-
@init_arguments.replace(
|
67
|
+
error, returned_arguments = init.invoke(:arguments => arguments)
|
68
|
+
@init_arguments.replace(returned_arguments)
|
69
69
|
if error.to_i <= 0
|
70
70
|
raise InitError, "failed to initialize Clutter-GStreamer: #{error.name}"
|
71
71
|
end
|
Binary file
|
@@ -56,21 +56,21 @@
|
|
56
56
|
*
|
57
57
|
* ClutterGst micro version (e.g. "3", if %CLUTTER_GST_VERSION is "1.2.3")
|
58
58
|
*/
|
59
|
-
#define CLUTTER_GST_MICRO_VERSION (
|
59
|
+
#define CLUTTER_GST_MICRO_VERSION (10)
|
60
60
|
|
61
61
|
/**
|
62
62
|
* CLUTTER_GST_VERSION:
|
63
63
|
*
|
64
64
|
* ClutterGst full version (e.g. "1.2.3")
|
65
65
|
*/
|
66
|
-
#define CLUTTER_GST_VERSION (2.0.
|
66
|
+
#define CLUTTER_GST_VERSION (2.0.10)
|
67
67
|
|
68
68
|
/**
|
69
69
|
* CLUTTER_GST_VERSION_S:
|
70
70
|
*
|
71
71
|
* ClutterGst full version, encoded as a string.
|
72
72
|
*/
|
73
|
-
#define CLUTTER_GST_VERSION_S "2.0.
|
73
|
+
#define CLUTTER_GST_VERSION_S "2.0.10"
|
74
74
|
|
75
75
|
/**
|
76
76
|
* CLUTTER_GST_VERSION_HEX:
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# libclutter-gst-2.0.la - a libtool library file
|
2
|
-
# Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1.
|
2
|
+
# Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1.3
|
3
3
|
#
|
4
4
|
# Please DO NOT delete this file!
|
5
5
|
# It is necessary for linking the library.
|
@@ -23,8 +23,8 @@ dependency_libs=' -R/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib
|
|
23
23
|
weak_library_names=''
|
24
24
|
|
25
25
|
# Version information for libclutter-gst-2.0.
|
26
|
-
current=
|
27
|
-
age=
|
26
|
+
current=10
|
27
|
+
age=10
|
28
28
|
revision=0
|
29
29
|
|
30
30
|
# Is this an already installed library?
|
@@ -5,7 +5,7 @@ includedir=${prefix}/include
|
|
5
5
|
|
6
6
|
Name: clutter-gst
|
7
7
|
Description: Clutter GStreamer integration
|
8
|
-
Version: 2.0.
|
8
|
+
Version: 2.0.10
|
9
9
|
Libs: -L${libdir} -lclutter-gst-2.0
|
10
10
|
Cflags: -I${includedir}/clutter-gst-2.0
|
11
11
|
Requires: clutter-1.0 >= 1.3.12 gstreamer-1.0 gstreamer-base-1.0 gstreamer-plugins-base-1.0
|
@@ -45,7 +45,7 @@ and/or use gtk-doc annotations. -->
|
|
45
45
|
<type name="gint" c:type="gint"/>
|
46
46
|
</constant>
|
47
47
|
<constant name="MICRO_VERSION"
|
48
|
-
value="
|
48
|
+
value="10"
|
49
49
|
c:type="CLUTTER_GST_MICRO_VERSION">
|
50
50
|
<doc xml:space="preserve">ClutterGst micro version (e.g. "3", if %CLUTTER_GST_VERSION is "1.2.3")</doc>
|
51
51
|
<type name="gint" c:type="gint"/>
|
@@ -1148,7 +1148,7 @@ update about the buffering of the current media.</doc>
|
|
1148
1148
|
<doc xml:space="preserve">ClutterGst full version, encoded as an hexadecimal value.</doc>
|
1149
1149
|
<type name="gint" c:type="gint"/>
|
1150
1150
|
</constant>
|
1151
|
-
<constant name="VERSION_S" value="2.0.
|
1151
|
+
<constant name="VERSION_S" value="2.0.10" c:type="CLUTTER_GST_VERSION_S">
|
1152
1152
|
<doc xml:space="preserve">ClutterGst full version, encoded as a string.</doc>
|
1153
1153
|
<type name="utf8" c:type="gchar*"/>
|
1154
1154
|
</constant>
|
@@ -2,10 +2,10 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Clutter Gst 2.0.
|
5
|
+
<title>Clutter Gst 2.0.10
|
6
6
|
Reference Manual: ClutterGstPlayer</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter Gst 2.0.
|
8
|
+
<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
|
9
9
|
<link rel="up" href="ch02.html" title="Clutter Actors And Objects">
|
10
10
|
<link rel="prev" href="ch02.html" title="Clutter Actors And Objects">
|
11
11
|
<link rel="next" href="ClutterGstVideoTexture.html" title="ClutterGstVideoTexture">
|
@@ -2,10 +2,10 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Clutter Gst 2.0.
|
5
|
+
<title>Clutter Gst 2.0.10
|
6
6
|
Reference Manual: ClutterGstVideoSink</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter Gst 2.0.
|
8
|
+
<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
|
9
9
|
<link rel="up" href="ch02.html" title="Clutter Actors And Objects">
|
10
10
|
<link rel="prev" href="ClutterGstVideoTexture.html" title="ClutterGstVideoTexture">
|
11
11
|
<link rel="next" href="clutter-gst-Utilities.html" title="Utilities">
|
@@ -2,10 +2,10 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Clutter Gst 2.0.
|
5
|
+
<title>Clutter Gst 2.0.10
|
6
6
|
Reference Manual: ClutterGstVideoTexture</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter Gst 2.0.
|
8
|
+
<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
|
9
9
|
<link rel="up" href="ch02.html" title="Clutter Actors And Objects">
|
10
10
|
<link rel="prev" href="ClutterGstPlayer.html" title="ClutterGstPlayer">
|
11
11
|
<link rel="next" href="ClutterGstVideoSink.html" title="ClutterGstVideoSink">
|
@@ -2,12 +2,12 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Clutter Gst 2.0.
|
5
|
+
<title>Clutter Gst 2.0.10
|
6
6
|
Reference Manual: Clutter Gst Overview</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter Gst 2.0.
|
9
|
-
<link rel="up" href="index.html" title="Clutter Gst 2.0.
|
10
|
-
<link rel="prev" href="index.html" title="Clutter Gst 2.0.
|
8
|
+
<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
|
9
|
+
<link rel="up" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
|
10
|
+
<link rel="prev" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
|
11
11
|
<link rel="next" href="ch02.html" title="Clutter Actors And Objects">
|
12
12
|
<meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
|
13
13
|
<link rel="stylesheet" href="style.css" type="text/css">
|
@@ -2,11 +2,11 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Clutter Gst 2.0.
|
5
|
+
<title>Clutter Gst 2.0.10
|
6
6
|
Reference Manual: Clutter Actors And Objects</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter Gst 2.0.
|
9
|
-
<link rel="up" href="index.html" title="Clutter Gst 2.0.
|
8
|
+
<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
|
9
|
+
<link rel="up" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
|
10
10
|
<link rel="prev" href="ch01.html" title="Clutter Gst Overview">
|
11
11
|
<link rel="next" href="ClutterGstPlayer.html" title="ClutterGstPlayer">
|
12
12
|
<meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
|
@@ -2,10 +2,10 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Clutter Gst 2.0.
|
5
|
+
<title>Clutter Gst 2.0.10
|
6
6
|
Reference Manual: Utilities</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter Gst 2.0.
|
8
|
+
<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
|
9
9
|
<link rel="up" href="ch02.html" title="Clutter Actors And Objects">
|
10
10
|
<link rel="prev" href="ClutterGstVideoSink.html" title="ClutterGstVideoSink">
|
11
11
|
<link rel="next" href="clutter-gst-Versioning-Macros.html" title="Versioning Macros">
|
@@ -2,10 +2,10 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Clutter Gst 2.0.
|
5
|
+
<title>Clutter Gst 2.0.10
|
6
6
|
Reference Manual: Versioning Macros</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter Gst 2.0.
|
8
|
+
<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
|
9
9
|
<link rel="up" href="ch02.html" title="Clutter Actors And Objects">
|
10
10
|
<link rel="prev" href="clutter-gst-Utilities.html" title="Utilities">
|
11
11
|
<link rel="next" href="license.html" title="Appendix A. License">
|
@@ -74,7 +74,7 @@ ClutterGst minor version (e.g. "2", if <a class="link" href="clutter-gst-Version
|
|
74
74
|
<hr>
|
75
75
|
<div class="refsect2">
|
76
76
|
<a name="CLUTTER-GST-MICRO-VERSION:CAPS"></a><h3>CLUTTER_GST_MICRO_VERSION</h3>
|
77
|
-
<pre class="programlisting">#define CLUTTER_GST_MICRO_VERSION (
|
77
|
+
<pre class="programlisting">#define CLUTTER_GST_MICRO_VERSION (10)
|
78
78
|
</pre>
|
79
79
|
<p>
|
80
80
|
ClutterGst micro version (e.g. "3", if <a class="link" href="clutter-gst-Versioning-Macros.html#CLUTTER-GST-VERSION:CAPS" title="CLUTTER_GST_VERSION"><code class="literal">CLUTTER_GST_VERSION</code></a> is "1.2.3")
|
@@ -83,7 +83,7 @@ ClutterGst micro version (e.g. "3", if <a class="link" href="clutter-gst-Version
|
|
83
83
|
<hr>
|
84
84
|
<div class="refsect2">
|
85
85
|
<a name="CLUTTER-GST-VERSION:CAPS"></a><h3>CLUTTER_GST_VERSION</h3>
|
86
|
-
<pre class="programlisting">#define CLUTTER_GST_VERSION (2.0.
|
86
|
+
<pre class="programlisting">#define CLUTTER_GST_VERSION (2.0.10)
|
87
87
|
</pre>
|
88
88
|
<p>
|
89
89
|
ClutterGst full version (e.g. "1.2.3")
|
@@ -92,7 +92,7 @@ ClutterGst full version (e.g. "1.2.3")
|
|
92
92
|
<hr>
|
93
93
|
<div class="refsect2">
|
94
94
|
<a name="CLUTTER-GST-VERSION-S:CAPS"></a><h3>CLUTTER_GST_VERSION_S</h3>
|
95
|
-
<pre class="programlisting">#define CLUTTER_GST_VERSION_S "2.0.
|
95
|
+
<pre class="programlisting">#define CLUTTER_GST_VERSION_S "2.0.10"
|
96
96
|
</pre>
|
97
97
|
<p>
|
98
98
|
ClutterGst full version, encoded as a string.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
2
2
|
<!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
|
3
|
-
<book xmlns="http://www.devhelp.net/book" title="Clutter Gst 2.0.
|
3
|
+
<book xmlns="http://www.devhelp.net/book" title="Clutter Gst 2.0.10 Reference Manual" link="index.html" author="" name="clutter-gst" version="2" language="c">
|
4
4
|
<chapters>
|
5
5
|
<sub name="Clutter Gst Overview" link="ch01.html"/>
|
6
6
|
<sub name="Clutter Actors And Objects" link="ch02.html">
|
@@ -2,10 +2,10 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Clutter Gst 2.0.
|
6
|
-
Reference Manual: Clutter Gst 2.0.
|
5
|
+
<title>Clutter Gst 2.0.10
|
6
|
+
Reference Manual: Clutter Gst 2.0.10 Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter Gst 2.0.
|
8
|
+
<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
|
9
9
|
<link rel="next" href="ch01.html" title="Clutter Gst Overview">
|
10
10
|
<meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
|
11
11
|
<link rel="stylesheet" href="style.css" type="text/css">
|
@@ -14,9 +14,9 @@
|
|
14
14
|
<div class="book">
|
15
15
|
<div class="titlepage">
|
16
16
|
<div>
|
17
|
-
<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Clutter Gst 2.0.
|
17
|
+
<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Clutter Gst 2.0.10
|
18
18
|
Reference Manual</p></th></tr></table></div>
|
19
|
-
<div><p class="releaseinfo">Version 2.0.
|
19
|
+
<div><p class="releaseinfo">Version 2.0.10
|
20
20
|
</p></div>
|
21
21
|
<div><p class="copyright">Copyright © 2006, 2007, 2008 OpenedHand LTD</p></div>
|
22
22
|
<div><p class="copyright">Copyright © 2009, 2010 Intel Corporation</p></div>
|
@@ -2,11 +2,11 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Clutter Gst 2.0.
|
5
|
+
<title>Clutter Gst 2.0.10
|
6
6
|
Reference Manual: Appendix A. License</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter Gst 2.0.
|
9
|
-
<link rel="up" href="index.html" title="Clutter Gst 2.0.
|
8
|
+
<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
|
9
|
+
<link rel="up" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
|
10
10
|
<link rel="prev" href="clutter-gst-Versioning-Macros.html" title="Versioning Macros">
|
11
11
|
<meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clutter-gstreamer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.2.0
|
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:
|
11
|
+
date: 2014-03-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: clutter
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 2.
|
19
|
+
version: 2.2.0
|
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.
|
26
|
+
version: 2.2.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: gstreamer
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 2.
|
33
|
+
version: 2.2.0
|
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.
|
40
|
+
version: 2.2.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: test-unit-notify
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|