guess_os 0.1.9 → 0.1.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 590255ab58326fcf2213bfb34a6eaac4ea6244819825534db4c2dc7d90fa3973
4
- data.tar.gz: b3e66ef5bd05e200aa9a53267fa89f8c9e4abc42fa63d50b86355e524acdeac3
3
+ metadata.gz: ba356d23160fed5e9c5140051e7730c5809d009c652abd46853602860f4ea95b
4
+ data.tar.gz: 40cfd67eab46e8b660674485f376cef975bdc8c8750340250c08082d749d02e2
5
5
  SHA512:
6
- metadata.gz: cd95cbee1da4473d54baee8e4def8ec5bb1fcf86097586f6b8eee1d1d5a570825abb3e80b4d1704732203ec21823f00cc76de22788e388250a3e3648351713b5
7
- data.tar.gz: 61df0a9149835dc030e26daa9a0c85294b14fcb1f576f95fbe125fb52751d6eb4638d753f0fe29a4317f7219605995a7c28c3b0d89d1212765ce3d09e7571b10
6
+ metadata.gz: ae9c0fdebc54324cc87354185cacd60c80e031c0e6a6a39600787b876736dfc17d4901c57711f0814133d571ce04309ddfa1363e9c7b230ee9ebeb870372c92f
7
+ data.tar.gz: 0d781a88af5f58df23274f325fc1a61da06752bb6ec847e3607b5f65883aa58b7bc3092e59f699286c991792d7198964a83084b342262a08644665cf5e851888
@@ -11,7 +11,7 @@ class MacOS
11
11
  # ProductVersion: 10.7.4
12
12
 
13
13
  identified = conn.ok && conn.last_output.include?("Mac OS")
14
- return GuesOS::OS.new(:unkown, :unkown, conn.status) unless identified
14
+ return GuessOS::OS.new(:unkown, :unkown, conn.status) unless identified
15
15
 
16
16
  command = "sw_vers | grep ProductVersion"
17
17
  conn.exec(command)
@@ -21,6 +21,6 @@ class MacOS
21
21
  type = :macos
22
22
  name = "Mac OS #{items[2].split(".").first}"
23
23
  desc = output
24
- GuessSO::OS.new(type, name, desc)
24
+ GuessOS::OS.new(type, name, desc)
25
25
  end
26
26
  end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GuessOS
4
- VERSION = "0.1.9"
4
+ VERSION = "0.1.10"
5
5
  NAME = "guess_os"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guess_os
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Vargas