gloo 2.4.0 → 2.4.1
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/gloo.gemspec +1 -0
- data/lib/VERSION +1 -1
- data/lib/VERSION_NOTES +4 -0
- data/lib/gloo/core/gloo_system.rb +3 -4
- metadata +21 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '080d31ca5a21a838f0dc7abb0525a905ef5d0eb416dfe3d4e6d0c024bfb31527'
|
4
|
+
data.tar.gz: ce0e8956b56e897c2ac0309ea47e1cf8232810505224e0582ec1eb2fea58a3ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86ec4908473f0f051f03dc60d395e3df9fee3845bb4a59b8e9163620711cee8a90824fffa10a78ff331886e315aceaf78835cd5f3bb354039177b7ec03e8fa57
|
7
|
+
data.tar.gz: eaf74eeb9b5073b148d7fbf71049c146f6fb872e05748540594ceccca1688cc97d09ff0c383ec2a90330f5b885b3ef6565e76415d8e772ffe30b379637b057d8
|
data/gloo.gemspec
CHANGED
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.4.
|
1
|
+
2.4.1
|
data/lib/VERSION_NOTES
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
# actually an object in the normal sense of the word.
|
8
8
|
#
|
9
9
|
require 'tty-platform'
|
10
|
+
require 'os'
|
10
11
|
|
11
12
|
module Gloo
|
12
13
|
module Core
|
@@ -229,8 +230,7 @@ module Gloo
|
|
229
230
|
|
230
231
|
# Is the platform Windows?
|
231
232
|
def msg_platform_windows?
|
232
|
-
|
233
|
-
return platform.windows?
|
233
|
+
return OS.windows?
|
234
234
|
end
|
235
235
|
|
236
236
|
# Is the platform Unix?
|
@@ -247,8 +247,7 @@ module Gloo
|
|
247
247
|
|
248
248
|
# Is the platform Mac?
|
249
249
|
def msg_platform_mac?
|
250
|
-
|
251
|
-
return platform.mac?
|
250
|
+
return OS.mac?
|
252
251
|
end
|
253
252
|
|
254
253
|
#
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gloo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Crane
|
@@ -244,6 +244,26 @@ dependencies:
|
|
244
244
|
- - ">="
|
245
245
|
- !ruby/object:Gem::Version
|
246
246
|
version: 1.4.2
|
247
|
+
- !ruby/object:Gem::Dependency
|
248
|
+
name: os
|
249
|
+
requirement: !ruby/object:Gem::Requirement
|
250
|
+
requirements:
|
251
|
+
- - "~>"
|
252
|
+
- !ruby/object:Gem::Version
|
253
|
+
version: '1.1'
|
254
|
+
- - ">="
|
255
|
+
- !ruby/object:Gem::Version
|
256
|
+
version: 1.1.4
|
257
|
+
type: :runtime
|
258
|
+
prerelease: false
|
259
|
+
version_requirements: !ruby/object:Gem::Requirement
|
260
|
+
requirements:
|
261
|
+
- - "~>"
|
262
|
+
- !ruby/object:Gem::Version
|
263
|
+
version: '1.1'
|
264
|
+
- - ">="
|
265
|
+
- !ruby/object:Gem::Version
|
266
|
+
version: 1.1.4
|
247
267
|
description: A scripting languge to keep it all together.
|
248
268
|
email:
|
249
269
|
- eric.crane@mac.com
|