vte3 3.3.5 → 3.3.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ac2e321aa4ebe446b3953eb7e3238133db1c010abd507db683f9caba3b0f9c33
4
- data.tar.gz: 9a6ebc705cc0c8285838354e567a511d2646f21146f0a11d2950a0f94d2889f5
3
+ metadata.gz: 8e934fd6c21aa0360cfbf2867e3b5e2d91ae17380313085088dc252e55ca4b78
4
+ data.tar.gz: 7200b6cd2379bb1a6c17126dd75069c96c9cd72585409d99a891458a49fe8fbd
5
5
  SHA512:
6
- metadata.gz: b961fd981270549bcd397c35d2bcbde0bf64272f1d6c50cd2dbc77916c345b15f4877abae45b0fd1fd215daa84d04b97d067c61c05ae831892dd3007a805f91a
7
- data.tar.gz: fb6bdab6a410983d9450e1a7da68edf16ba341dfed3c1c0289547d0dfa6702b54ba61e0dd398b7635ed7d4b7f1915246f9d4456a9c3e200a6d59ca08d0961075
6
+ metadata.gz: 8a2863d10df17799ea1f5239a4ecfc6e18d8d3d0f6cfc401d40c6a56d56f083e8985fd3d10313ad9429dc74aa35841fe3f50822e1589e3166990701833b88dc3
7
+ data.tar.gz: 0b4f1fc60b49d6e49e679ace832dde25ba2e4ef7e70608638f6351ed083160f35e91eb9e7daa1056d3ed7a3f13d999d51d46c3bc315ea02c333518b0869a9187
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2017 Ruby-GNOME2 Project Team
1
+ # Copyright (C) 2017-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
@@ -30,10 +30,11 @@ end
30
30
  namespace :dependency do
31
31
  desc "Check dependency"
32
32
  task :check do
33
- unless PKGConfig.check_version?("vte-2.91")
33
+ package_id = "vte-2.91"
34
+ unless PKGConfig.check_version?(package_id)
34
35
  unless NativePackageInstaller.install(:altlinux => "libvte3-devel",
35
36
  :debian => "libvte-2.91-dev",
36
- :redhat => "pkgconfig(vte-2.91)",
37
+ :redhat => "pkgconfig(#{package_id})",
37
38
  :homebrew => "vte3")
38
39
  exit(false)
39
40
  end
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.5
4
+ version: 3.3.9
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-10-10 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.5
19
+ version: 3.3.9
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.5
26
+ version: 3.3.9
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,7 +70,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
70
70
  - !ruby/object:Gem::Version
71
71
  version: '0'
72
72
  requirements: []
73
- rubygems_version: 3.1.0.pre1
73
+ rubyforge_project:
74
+ rubygems_version: 2.7.6.2
74
75
  signing_key:
75
76
  specification_version: 4
76
77
  summary: Ruby/VTE is a Ruby binding of VTE.