vte3 3.4.1 → 3.4.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9d77940404efd992c8550a409cc70f5b8ae2f9c18dd43aa406b65b985096cfdf
4
- data.tar.gz: 52fcfc53a005736a1c688fc551e8ef673554baf0da2bd0444d1f57b1e2b4aa35
3
+ metadata.gz: bdad364922fb397e9695d121b5935b6eb6c09ee4206ea680d13c91b5194e6d55
4
+ data.tar.gz: 9a2d6de245d7689d354ca2ac76d75dfc05e5626aeb72629d0942cdd1aa1e1377
5
5
  SHA512:
6
- metadata.gz: 5d999be7e5f17dc99c3ea850aa6cacc065a8ef6d9443c7ffbf8e45f3cfb873da708203c71473534e811360efd30dcfdbcb6b619abedb7ea860d111df5cab81df
7
- data.tar.gz: 600c67d31f26209a1bd8379d8fe65c28649209800e3e63ed16542d9084d0988803919c1b6230252a1334a7037b894b212be8202291b605d834150f39cc4524c1
6
+ metadata.gz: a5a892187f3e5b2c65799cec8b75e4580183db1b357c5397d4327c142e2dfbbe163df5fa4a486e090706d043fa51fef60e927be1efb0b0769de2de034de19016
7
+ data.tar.gz: 759937177dcc17f7990d319c8957a7c4e2dfffde4abeced960d847b3fe02026f31d40f910e55893cd3728b89fe6d196880d8ae095f5b7a747330e93b971fc7b5
data/README.md CHANGED
@@ -5,7 +5,7 @@ Ruby/VTE3 is a Ruby binding of VTE for use with GTK3.
5
5
  ## Requirements
6
6
 
7
7
  * Ruby/GTK3 in
8
- [Ruby-GNOME2](https://ruby-gnome2.osdn.jp/)
8
+ [Ruby-GNOME](https://ruby-gnome2.osdn.jp/)
9
9
  * [VTE](https://live.gnome.org/Terminal/VTE)
10
10
 
11
11
  ## Install
@@ -14,7 +14,7 @@ Ruby/VTE3 is a Ruby binding of VTE for use with GTK3.
14
14
 
15
15
  ## License
16
16
 
17
- Copyright (c) 2014 Ruby-GNOME2 Project Team
17
+ Copyright (c) 2014-2020 Ruby-GNOME Project Team
18
18
 
19
19
  This program is free software. You can distribute/modify this program
20
20
  under the terms of the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1.
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2015 Ruby-GNOME2 Project Team
1
+ # Copyright (C) 2015-2020 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
@@ -44,7 +44,7 @@ module Vte
44
44
  pty_object
45
45
  end
46
46
  else
47
- def spawn(options)
47
+ def spawn(options={})
48
48
  pty_flags = options[:pty_flags] || PtyFlags::DEFAULT
49
49
  working_directory = options[:working_directory]
50
50
  argv = options[:argv] || [ENV["SHELL"] || "/bin/sh"]
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  #
3
- # Copyright (C) 2014-2015 Ruby-GNOME2 Project Team
3
+ # Copyright (C) 2014-2020 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,19 +16,19 @@
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
- ruby_gnome2_base = File.join(File.dirname(__FILE__), "..", "..")
20
- ruby_gnome2_base = File.expand_path(ruby_gnome2_base)
21
-
22
- glib_base = File.join(ruby_gnome2_base, "glib2")
23
- atk_base = File.join(ruby_gnome2_base, "atk")
24
- pango_base = File.join(ruby_gnome2_base, "pango")
25
- gdk_pixbuf_base = File.join(ruby_gnome2_base, "gdk_pixbuf2")
26
- cairo_gobject_base = File.join(ruby_gnome2_base, "cairo-gobject")
27
- gobject_introspection_base = File.join(ruby_gnome2_base, "gobject-introspection")
28
- gio2_base = File.join(ruby_gnome2_base, "gio2")
29
- gdk3_base = File.join(ruby_gnome2_base, "gdk3")
30
- gtk3_base = File.join(ruby_gnome2_base, "gtk3")
31
- vte3_base = File.join(ruby_gnome2_base, "vte3")
19
+ ruby_gnome_base = File.join(File.dirname(__FILE__), "..", "..")
20
+ ruby_gnome_base = File.expand_path(ruby_gnome_base)
21
+
22
+ glib_base = File.join(ruby_gnome_base, "glib2")
23
+ atk_base = File.join(ruby_gnome_base, "atk")
24
+ pango_base = File.join(ruby_gnome_base, "pango")
25
+ gdk_pixbuf_base = File.join(ruby_gnome_base, "gdk_pixbuf2")
26
+ cairo_gobject_base = File.join(ruby_gnome_base, "cairo-gobject")
27
+ gobject_introspection_base = File.join(ruby_gnome_base, "gobject-introspection")
28
+ gio2_base = File.join(ruby_gnome_base, "gio2")
29
+ gdk3_base = File.join(ruby_gnome_base, "gdk3")
30
+ gtk3_base = File.join(ruby_gnome_base, "gtk3")
31
+ vte3_base = File.join(ruby_gnome_base, "vte3")
32
32
 
33
33
  modules = [
34
34
  [glib_base, "glib2"],
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vte3
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.1
4
+ version: 3.4.2
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: 2019-10-16 00:00:00.000000000 Z
11
+ date: 2020-05-02 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.1
19
+ version: 3.4.2
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.1
26
+ version: 3.4.2
27
27
  description: Ruby/VTE is a Ruby binding of VTE.
28
28
  email: ruby-gnome2-devel-en@lists.sourceforge.net
29
29
  executables: []
@@ -70,8 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
70
70
  - !ruby/object:Gem::Version
71
71
  version: '0'
72
72
  requirements: []
73
- rubyforge_project:
74
- rubygems_version: 2.7.6.2
73
+ rubygems_version: 3.2.0.pre1
75
74
  signing_key:
76
75
  specification_version: 4
77
76
  summary: Ruby/VTE is a Ruby binding of VTE.