jess 1.4.4 → 1.4.5

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: 794bbea608253809cc3148c767b58bed37fe36d520a768cf009aba9d2e7c8448
4
- data.tar.gz: 0a0e9c4b80333b31205fd7b12813b16c5a5d9c31dbe0f872a81b06b47fb5181a
3
+ metadata.gz: 410c41796cdc1fbfeba8405cf3784f46fad878d83e22ee21d6131b6222cdaaeb
4
+ data.tar.gz: 68cfa2243d019ced7c4d01daed8adcd96dfcf533bf87414108fa7249fa1e2e92
5
5
  SHA512:
6
- metadata.gz: 46339f77bb818d023d77a009bfb940f7f2c9ff4bedcadc1df5a95de0336e91af10d02b158431fe38e1aaf526a7c8d0e911e06454b4c63fb63ee88f9dfd8452ed
7
- data.tar.gz: 8a5abe7276b87348bc3467cadcda2d42593e6963d661d402d1ef75037c1ad19777edea7591ad3420328df34cb69aac07ec08ce4a89fd05f9ed2548277794cdc1
6
+ metadata.gz: b643a830be93d06f298e0c5a19738c2a862d060f6aaa1f1148ee43228d6e5d0dea07d2391db56b00e269940d40805aec2e8dab37cb510095a5cd54eabeaadd83
7
+ data.tar.gz: '068ec19b31855f986c3a4c2b52cd2b04aa96efe7ba9593d728ce070ccb350af92a69492bedf759c5e81175908ef70e493b2ad4b1b4f0a8b20e42f5de7b5cabde'
data/README.md CHANGED
@@ -3,7 +3,6 @@
3
3
  [![Gem Version](https://img.shields.io/gem/v/jess)](https://rubygems.org/gems/jess)
4
4
  [![Gem Downloads](https://img.shields.io/gem/dt/jess)](https://www.ruby-toolbox.com/projects/jess)
5
5
  [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/mattbrictson/jess/ci.yml)](https://github.com/mattbrictson/jess/actions/workflows/ci.yml)
6
- [![Code Climate maintainability](https://img.shields.io/codeclimate/maintainability/mattbrictson/jess)](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.
data/lib/jess/computer.rb CHANGED
@@ -6,6 +6,7 @@ module Jess
6
6
  # extension attributes, etc.
7
7
  class Computer < Resource
8
8
  extend Forwardable
9
+
9
10
  def_delegators :general, :id, :name
10
11
 
11
12
  def extension_attributes
@@ -5,6 +5,7 @@ module Jess
5
5
  # key/value access.
6
6
  class ExtensionAttributes < Resource
7
7
  extend Forwardable
8
+
8
9
  def_delegators :@values, :[], :fetch, :key?, :keys, :size, :length, :to_h
9
10
 
10
11
  def initialize(json)
@@ -6,6 +6,7 @@ module Jess
6
6
  # security, extension attributes, etc.
7
7
  class MobileDevice < Resource
8
8
  extend Forwardable
9
+
9
10
  def_delegators :general, :id, :name
10
11
 
11
12
  def extension_attributes
data/lib/jess/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jess
2
- VERSION = "1.4.4".freeze
2
+ VERSION = "1.4.5".freeze
3
3
  end
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.4
4
+ version: 1.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
@@ -67,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  requirements: []
70
- rubygems_version: 3.6.7
70
+ rubygems_version: 3.6.9
71
71
  specification_version: 4
72
72
  summary: Lightweight, unofficial client for the JAMF Software Server (JSS) API
73
73
  test_files: []