glib2 3.1.4 → 3.1.6
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/ext/glib2/rbglib.h +1 -1
- data/lib/glib2.rb +21 -12
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 63162f607225357f5000148a30b78d4e856108fc
|
4
|
+
data.tar.gz: af52e69e8ebb8b838c515ce7c6120d744b2b2089
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65c30286f254b6ca93c5fbcbb05d024f6f0c80045c0787dcdf7009829089d8d7b16a9034ea20ad1c3aff4c27237616f775ad88c736f0013cae742d2b41ab02c0
|
7
|
+
data.tar.gz: 8acb18d55e8b8aefb14a5a7b8f89fd01fa93e90b8767d82c79a1d930c4741a4ca359bf5a02fa94d76a1931e7a8f7f4167837dd896e5372d8a91a385187d91022
|
data/ext/glib2/rbglib.h
CHANGED
data/lib/glib2.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2005-
|
1
|
+
# Copyright (C) 2005-2017 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
|
@@ -87,21 +87,30 @@ module GLib
|
|
87
87
|
|
88
88
|
def prepend_path_to_environment_variable(path, environment_name)
|
89
89
|
path = Pathname(path) unless path.is_a?(Pathname)
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
90
|
+
return unless path.exist?
|
91
|
+
|
92
|
+
dir = path.to_s
|
93
|
+
dir = dir.gsub(/\//, ::File::ALT_SEPARATOR) if ::File::ALT_SEPARATOR
|
94
|
+
|
95
|
+
separator = ::File::PATH_SEPARATOR
|
96
|
+
paths = (ENV[environment_name] || '').split(separator)
|
97
|
+
unless paths.include?(dir)
|
98
|
+
paths = [dir] + paths
|
99
|
+
ENV[environment_name] = paths.join(separator)
|
100
100
|
end
|
101
101
|
end
|
102
102
|
|
103
103
|
def prepend_dll_path(path)
|
104
|
-
|
104
|
+
path = Pathname(path) unless path.is_a?(Pathname)
|
105
|
+
return unless path.exist?
|
106
|
+
|
107
|
+
begin
|
108
|
+
require "ruby_installer/runtime"
|
109
|
+
rescue LoadError
|
110
|
+
prepend_path_to_environment_variable(path, "PATH")
|
111
|
+
else
|
112
|
+
RubyInstaller::Runtime.add_dll_directory(path.to_s)
|
113
|
+
end
|
105
114
|
end
|
106
115
|
end
|
107
116
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: glib2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The Ruby-GNOME2 Project Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-06-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pkg-config
|