gloo 2.4.0 → 2.4.1

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: e677ad11e6ffef597d0e2a42b34abb8402cdc43acd542bfbf798b7ad83b25079
4
- data.tar.gz: ef5c30735d1da7cb085aab63f85d63e43de3399bb07902eb2192aca0976ca19a
3
+ metadata.gz: '080d31ca5a21a838f0dc7abb0525a905ef5d0eb416dfe3d4e6d0c024bfb31527'
4
+ data.tar.gz: ce0e8956b56e897c2ac0309ea47e1cf8232810505224e0582ec1eb2fea58a3ea
5
5
  SHA512:
6
- metadata.gz: 6c1b7ca772f6ac41a93cd4f4b16957b54f0b4db7ab393050b7ebee7ee810f31cc57f75c6c9f8075dd065d1267c42b609217b8a6933ff29ee537f4c1cd27a9072
7
- data.tar.gz: f5886a43cc46fd4665e8613e0d59162446234572d71b928dd32ede48f34ae3e2bbb692f61509750ccda197d2334ea607989bb5c59ab29894b02aa0621c5e3de2
6
+ metadata.gz: 86ec4908473f0f051f03dc60d395e3df9fee3845bb4a59b8e9163620711cee8a90824fffa10a78ff331886e315aceaf78835cd5f3bb354039177b7ec03e8fa57
7
+ data.tar.gz: eaf74eeb9b5073b148d7fbf71049c146f6fb872e05748540594ceccca1688cc97d09ff0c383ec2a90330f5b885b3ef6565e76415d8e772ffe30b379637b057d8
data/gloo.gemspec CHANGED
@@ -40,4 +40,5 @@ Gem::Specification.new do |spec|
40
40
  spec.add_dependency 'net-ssh', '~> 6.1', '>= 6.1.0'
41
41
  spec.add_dependency 'mysql2', '~> 0.5', '>= 0.5.3'
42
42
  spec.add_dependency 'sqlite3', '~> 1.4', '>= 1.4.2'
43
+ spec.add_dependency 'os', '~> 1.1', '>= 1.1.4'
43
44
  end
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 2.4.0
1
+ 2.4.1
data/lib/VERSION_NOTES CHANGED
@@ -1,3 +1,7 @@
1
+ 2.4.1 - 2023.06.27
2
+ - trying alternate for OS detection
3
+
4
+
1
5
  2.4.0 - 2023.06.27
2
6
  - Updates URI open to work on Windows.
3
7
  - Updates exec to work on Windows.
@@ -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
- platform = TTY::Platform.new
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
- platform = TTY::Platform.new
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.0
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