vte3 3.3.3 → 3.3.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/vte3/pty.rb +11 -1
  3. data/vte3.gemspec +2 -2
  4. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cc655da90a1569c60016cce21e1229edd0075d6a1f7b9e8fd2b97af8e4e55765
4
- data.tar.gz: 91ca655c653e5a57bf1b33a54df36fdafb0e95c0862ff9eb7d880558d2de923e
3
+ metadata.gz: 3c99996f110e5e94ab63f55387768022ac55cbbc442638c5148c6aa29757a8a9
4
+ data.tar.gz: 3353aebfb263ac8e98368e53fd39ff6305e167d7aa6d7ace23f2695ab09985f5
5
5
  SHA512:
6
- metadata.gz: 9135048e94057c0c6aeb2a2be5b12520f40f56927a8cd3a45636c4dafed843da484d424208689123cb75b79b802c2bcadc1575cf2c4e87329849d27c056c60e0
7
- data.tar.gz: 9fa8e9d2bfb2ac21c68bf31582cf16e3e04ef8cf593a8fe48041be77240fa9f5be932392a738cf157ac991eff36e49bcb012946694cfb87a895275424d5fd73c
6
+ metadata.gz: 9d4aac51acd284f22fadc6f1dee260d6cba7db8875988c43bfc5bd502a40a6a291b2a0d468483a17ef1865c4e7df434028024030dc85e692490293ad71a4dada
7
+ data.tar.gz: 613d48a6a32de3b0612e736a2c0dcf0cba6c7afab25d7ea813b41e2a7c3186f449416868726ae41d018e419e093787c91e5d8108a435640b97647157700b7991
data/lib/vte3/pty.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2015 Ruby-GNOME2 Project Team
1
+ # Copyright (C) 2015-2019 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
@@ -16,6 +16,16 @@
16
16
 
17
17
  module Vte
18
18
  class Pty
19
+ alias_method :initialize_raw, :initialize
20
+ def initialize(*args)
21
+ case args[0]
22
+ when PtyFlags
23
+ initialize_new_sync(*args)
24
+ else
25
+ initialize_raw(*args)
26
+ end
27
+ end
28
+
19
29
  alias_method :size_raw, :size
20
30
  def size
21
31
  succeeded, rows, columns = size_raw
data/vte3.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  # -*- ruby -*-
2
2
  #
3
- # Copyright (C) 2018 Ruby-GNOME2 Project Team
3
+ # Copyright (C) 2018 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
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
22
22
  s.name = "vte3"
23
23
  s.summary = "Ruby/VTE is a Ruby binding of VTE."
24
24
  s.description = "Ruby/VTE is a Ruby binding of VTE."
25
- s.author = "The Ruby-GNOME2 Project Team"
25
+ s.author = "The Ruby-GNOME Project Team"
26
26
  s.email = "ruby-gnome2-devel-en@lists.sourceforge.net"
27
27
  s.homepage = "https://ruby-gnome2.osdn.jp/"
28
28
  s.licenses = ["LGPL-2.1+"]
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.3.3
4
+ version: 3.3.8
5
5
  platform: ruby
6
6
  authors:
7
- - The Ruby-GNOME2 Project Team
7
+ - The Ruby-GNOME Project Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-09 00:00:00.000000000 Z
11
+ date: 2019-09-09 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.3.3
19
+ version: 3.3.8
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.3.3
26
+ version: 3.3.8
27
27
  description: Ruby/VTE is a Ruby binding of VTE.
28
28
  email: ruby-gnome2-devel-en@lists.sourceforge.net
29
29
  executables: []