jess 1.2.1 → 1.2.2
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/LICENSE.txt +1 -1
- data/lib/jess/version.rb +1 -1
- data/lib/jess.rb +8 -8
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9783b6a915764b6c78ebb586a6317168ce0cb3de2476d2559d007a55fbd0871c
|
|
4
|
+
data.tar.gz: 35eba87bab453c324abf5b625ccd84be66e76c3fb9a6e56672e66a384871ec26
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0f2db035005abf377ba48d1272f714a7aed3478ae31808e0b153d914508de6c225aa1044d9399888aa2f10502af28cbf873ef1d115006f6c5c6e4ca8d1780be1
|
|
7
|
+
data.tar.gz: 2978eb8a803b5bf33b78f6d153096c99dc7c7fc84c8a3a886a766ec504a64c3b3059b8842e7178f4108a25ce0c1f7bd46dd46217da8958c2e917e71d1f5a4fd6
|
data/LICENSE.txt
CHANGED
data/lib/jess/version.rb
CHANGED
data/lib/jess.rb
CHANGED
|
@@ -11,14 +11,14 @@ require "jess/version"
|
|
|
11
11
|
# computer.hardware.model # => "iMac Intel (Retina 5k, 27-Inch, Late 2015)"
|
|
12
12
|
#
|
|
13
13
|
module Jess
|
|
14
|
-
autoload
|
|
15
|
-
autoload
|
|
16
|
-
autoload
|
|
17
|
-
autoload
|
|
18
|
-
autoload
|
|
19
|
-
autoload
|
|
20
|
-
autoload
|
|
21
|
-
autoload
|
|
14
|
+
autoload :Computer, "jess/computer"
|
|
15
|
+
autoload :Computers, "jess/computers"
|
|
16
|
+
autoload :Connection, "jess/connection"
|
|
17
|
+
autoload :ExtensionAttributes, "jess/extension_attributes"
|
|
18
|
+
autoload :HttpClient, "jess/http_client"
|
|
19
|
+
autoload :MobileDevice, "jess/mobile_device"
|
|
20
|
+
autoload :MobileDevices, "jess/mobile_devices"
|
|
21
|
+
autoload :Resource, "jess/resource"
|
|
22
22
|
|
|
23
23
|
# Establish a connection with JSS and return a Jess::Connection object that
|
|
24
24
|
# can be used to interact with the JSS API. This is a convenience method. For
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jess
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Brictson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-02-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description:
|
|
14
14
|
email:
|
|
@@ -40,6 +40,7 @@ metadata:
|
|
|
40
40
|
changelog_uri: https://github.com/mattbrictson/jess/releases
|
|
41
41
|
source_code_uri: https://github.com/mattbrictson/jess/
|
|
42
42
|
bug_tracker_uri: https://github.com/mattbrictson/jess/issues
|
|
43
|
+
rubygems_mfa_required: 'true'
|
|
43
44
|
post_install_message:
|
|
44
45
|
rdoc_options: []
|
|
45
46
|
require_paths:
|
|
@@ -55,7 +56,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
55
56
|
- !ruby/object:Gem::Version
|
|
56
57
|
version: '0'
|
|
57
58
|
requirements: []
|
|
58
|
-
rubygems_version: 3.
|
|
59
|
+
rubygems_version: 3.3.7
|
|
59
60
|
signing_key:
|
|
60
61
|
specification_version: 4
|
|
61
62
|
summary: Lightweight, unofficial client for the JAMF Software Server (JSS) API
|