jess 1.4.4 → 1.5.0
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/README.md +1 -2
- data/lib/jess/computer.rb +1 -0
- data/lib/jess/extension_attributes.rb +1 -0
- data/lib/jess/mobile_device.rb +1 -0
- data/lib/jess/resource.rb +2 -2
- data/lib/jess/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e496b762e13f5c89008454b4991aa95d840eee181ccdfd39ab665b1ba23065d2
|
|
4
|
+
data.tar.gz: a9e54b7b38d739703e9ccbad24214acacc56a73f6f3f9e5e0cac4936b9bcb384
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6d5f9010b07e882e6c39b92f179bf4390753c01f053476f5d86735f365d1eb15cbcff09feb822cff20e9a2324cb23b1eda2dd9d256dd1f9700d646b500a42bf
|
|
7
|
+
data.tar.gz: 3a9eaaf8139ef04ad14b82e10c9ec3b33cd2652a9cd7ab3e950e09b51ba740197448b6993bb468ebbb6dfda7c47c391a2239ebef45d9a8d18f3dbc70f237fe73
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
[](https://rubygems.org/gems/jess)
|
|
4
4
|
[](https://www.ruby-toolbox.com/projects/jess)
|
|
5
5
|
[](https://github.com/mattbrictson/jess/actions/workflows/ci.yml)
|
|
6
|
-
[](https://codeclimate.com/github/mattbrictson/jess)
|
|
7
6
|
|
|
8
7
|
**Jess is an extremely lightweight, read-only client for the JAMF Software Server (JSS) API.**
|
|
9
8
|
Currently it only provides access to computer and mobile device records.
|
|
@@ -32,7 +31,7 @@ Or install it yourself as:
|
|
|
32
31
|
|
|
33
32
|
$ gem install jess
|
|
34
33
|
|
|
35
|
-
*Note that Jess requires Ruby 3.
|
|
34
|
+
*Note that Jess requires Ruby 3.2 or newer.*
|
|
36
35
|
|
|
37
36
|
## Usage
|
|
38
37
|
|
data/lib/jess/computer.rb
CHANGED
data/lib/jess/mobile_device.rb
CHANGED
data/lib/jess/resource.rb
CHANGED
|
@@ -17,9 +17,9 @@ module Jess
|
|
|
17
17
|
|
|
18
18
|
private
|
|
19
19
|
|
|
20
|
-
def method_missing(symbol, *
|
|
20
|
+
def method_missing(symbol, *)
|
|
21
21
|
if _json.key?(symbol.to_s)
|
|
22
|
-
_as_resource(_json.public_send(:[], symbol.to_s, *
|
|
22
|
+
_as_resource(_json.public_send(:[], symbol.to_s, *))
|
|
23
23
|
else
|
|
24
24
|
super
|
|
25
25
|
end
|
data/lib/jess/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jess
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Brictson
|
|
@@ -60,14 +60,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
60
60
|
requirements:
|
|
61
61
|
- - ">="
|
|
62
62
|
- !ruby/object:Gem::Version
|
|
63
|
-
version: '3.
|
|
63
|
+
version: '3.2'
|
|
64
64
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
66
|
- - ">="
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
69
|
requirements: []
|
|
70
|
-
rubygems_version:
|
|
70
|
+
rubygems_version: 4.0.3
|
|
71
71
|
specification_version: 4
|
|
72
72
|
summary: Lightweight, unofficial client for the JAMF Software Server (JSS) API
|
|
73
73
|
test_files: []
|