ruby-jss 2.0.0b5 → 2.0.0rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README-2.0.0.md +40 -14
- data/README.md +21 -26
- data/lib/jamf/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89974abcf43374bb65bbb1e0e91a2c147b0a28e7143f8f5e995c372c7ecdef7d
|
4
|
+
data.tar.gz: 720708403ca790ca523b11cedffa5c4c218f67720bc0ef3cce57f97ef9ce7490
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0e93ad88ec4cf67ae0200d5bd57b57b2a56ccd5eac63a4ee6d44a6ec6f8d750d35f6f8a73166c6be23fe1ad2ae749ba2edeada06cce2679dac5eee6636b591e
|
7
|
+
data.tar.gz: 5f7cc9072b0b180fb2f066b4caf89869e59b426dba275f2ee7431b9db99aa236b00ac799eb4ba6e1aa08a1a64c053cd5c754342c2b24805ba4323070fd641c95
|
data/README-2.0.0.md
CHANGED
@@ -2,7 +2,9 @@
|
|
2
2
|
|
3
3
|
Version 2.0.0 is a major refactoring of ruby-jss. While attempting to provide as much backward compatibility as possible, there are some significant changes under the hood. **_PLEASE TEST YOUR CODE EXTENSIVELY_**
|
4
4
|
|
5
|
-
This document discusses the high-level changes,
|
5
|
+
This document discusses the high-level changes, a few specific changes that have already happened, as well as planned changes and deprecations. It also provides some discussion and background around all of this.
|
6
|
+
|
7
|
+
This is a work-in-progress at the moment, and will probably remain so well after initial release. Hopefully this document will prompt discussion and decision-making in the [#ruby-jss channel of Macadmins Slack](https://macadmins.slack.com/archives/C03C7F563MK) (Please join us!)
|
6
8
|
|
7
9
|
These changes have been in mind for some time, but the requirement in late 2022 for the Classic API to authenticate with Bearer Tokens from the Jamf Pro API means that the time has come, so here we are!
|
8
10
|
|
@@ -22,6 +24,7 @@ These changes have been in mind for some time, but the requirement in late 2022
|
|
22
24
|
- [Which API does an object come from?](#which-api-does-an-object-come-from)
|
23
25
|
- [Automatic code generation](#automatic-code-generation)
|
24
26
|
- [Autoloading with Zeitwerk](#autoloading-with-zeitwerk)
|
27
|
+
- [Known Breaking Changes](#known-breaking-changes)
|
25
28
|
- [Notable changes from ruby-jss 1.x](#notable-changes-from-ruby-jss-1x)
|
26
29
|
- [Paged queries to the Jamf Pro API](#paged-queries-to-the-jamf-pro-api)
|
27
30
|
- [API data are no longer cached ?](#api-data-are-no-longer-cached-)
|
@@ -29,7 +32,7 @@ These changes have been in mind for some time, but the requirement in late 2022
|
|
29
32
|
- [Class/Mixin hierarchy for Jamf Pro API objects](#classmixin-hierarchy-for-jamf-pro-api-objects)
|
30
33
|
- [Support for 'Sticky Sessions' in Jamf Cloud](#support-for-sticky-sessions-in-jamf-cloud)
|
31
34
|
- [Planned deprecations](#planned-deprecations)
|
32
|
-
- [Use of the term 'api'
|
35
|
+
- [Use of the term 'api'](#use-of-the-term-api)
|
33
36
|
- [.map_all_ids_to method for Classic API collection classes](#map_all_ids_to-method-for-classic-api-collection-classes)
|
34
37
|
- [Using .make, #create, and #update for Classic API objects](#using-make-create-and-update-for-classic-api-objects)
|
35
38
|
- [JSS::CONFIG](#jssconfig)
|
@@ -44,7 +47,7 @@ These changes have been in mind for some time, but the requirement in late 2022
|
|
44
47
|
|
45
48
|
## Requirements
|
46
49
|
|
47
|
-
ruby-jss 2.0 requires ruby 2.6.3 or higher, and a Jamf Pro server running version 10.35 or higher.
|
50
|
+
ruby-jss 2.0,0 requires ruby 2.6.3 or higher, and a Jamf Pro server running version 10.35 or higher.
|
48
51
|
|
49
52
|
This means it will work with the OS-supplied /usr/bin/ruby in macOS 10.15 Catalina and above, until Apple removes ruby from the OS.
|
50
53
|
|
@@ -58,9 +61,9 @@ As of this writing, basic access to the API seems to be working in ruby 3, but m
|
|
58
61
|
|
59
62
|
It looks like the biggest changes have been dealing with keyword arguments as Hashs. Methods defined with `def methodname([...] foo = {})` need to be changed to `def methodname([...] **foo)` and calls to those methods, even in your own code, need to be changed to `methodname([...] **foo)` when `foo` is a hash of keyword args.
|
60
63
|
|
61
|
-
**IMPORTANT**:
|
64
|
+
**IMPORTANT**: This may be a breaking change. Do not pass raw hashes as 'keyword' args. Instead use the double-splat: `methodname(**hash)` which should be compatible with ruby 3.x and 2.6.x
|
62
65
|
|
63
|
-
|
66
|
+
For more info see [Separation of positional and keyword arguments in Ruby 3.0](https://www.ruby-lang.org/en/news/2019/12/12/separation-of-positional-and-keyword-arguments-in-ruby-3-0/)
|
64
67
|
|
65
68
|
### Combined API access
|
66
69
|
|
@@ -140,6 +143,19 @@ Then as files load, lines will be written to standard error indicating:
|
|
140
143
|
- A module was mixed-in to some other module or class
|
141
144
|
- A method was just automatically defined
|
142
145
|
|
146
|
+
## Known Breaking Changes
|
147
|
+
|
148
|
+
So far we've only uncovered a few areas where our ruby-jss 1.x code didn't work with ruby-jss 2.0.0
|
149
|
+
|
150
|
+
- Using unsplatted Hashes as 'named parameters' to method calls.
|
151
|
+
- See [Ruby 3.x support](#ruby-3x-support) above
|
152
|
+
|
153
|
+
- Jamf Pro API objects no longer have aliases for their attributes
|
154
|
+
- See [No Attribute aliases for Jamf Pro API objects](#no-attribute-aliases-for-jamf-pro-api-objects) below
|
155
|
+
|
156
|
+
- Subclassing ruby-jss classes in your own code.
|
157
|
+
- Those classes, and methods called on them, may need to be updated to match the new ruby-jss classes, in order to maintain _their_ backward compatibility.
|
158
|
+
|
143
159
|
## Notable changes from ruby-jss 1.x
|
144
160
|
|
145
161
|
### Paged queries to the Jamf Pro API
|
@@ -189,7 +205,7 @@ Give us time and we'll get everything updated. In the meantime, feel free to rea
|
|
189
205
|
|
190
206
|
### Support for 'Sticky Sessions' in Jamf Cloud
|
191
207
|
|
192
|
-
If you are connecting to a Jamf Cloud server, you can specifcy `
|
208
|
+
If you are connecting to a Jamf Cloud server, you can specifcy `sticky_session: true` when calling `Jamf::Connection.new` or `Jamf::Connection#connect`. If you already have a connected Connection object, you can enable or disable Sticky Sessions using `my_connection_object.sticky_session =` with a boolean value (for the default connection use `Jamf.cnx.sticky_session = <boolean>`). To see the actual cookie being sent to enable sticky sessions, use `Jamf::Connection#sticky_session_cookie`.
|
193
209
|
|
194
210
|
Attempting to enable a sticky session with a connection to an on-prem server (host not ending in 'jamfcloud.com') will raise an error.
|
195
211
|
|
@@ -199,9 +215,25 @@ For details about Sticky Sessions see [Sticky Sessions for Jamf Cloud](https://d
|
|
199
215
|
|
200
216
|
## Planned deprecations
|
201
217
|
|
202
|
-
|
218
|
+
Even though it was publically released in 2014, ruby-jss's origins are from 2009, so it's been around for a while. We've learned a lot since then, and lots of the old lingering code is terribly out of date.
|
219
|
+
|
220
|
+
The move to 2.0.0 is our opportunity to start streamlining things and cleaning up not just the code, but how it's used.
|
221
|
+
|
222
|
+
We wanted to make the initial transition to 2.0.0 as backward-compatible as possible, but going forward, a lot of things will be changing or going away.
|
223
|
+
|
224
|
+
All of this is up for discussion! If you have suggestions or ideas for improvement, cleanup, or modernization, or if one of these deprecated items is important to you, [please reach out](#contact) and let us hear your thoughts.
|
225
|
+
|
226
|
+
As a side effect of these planned changes, and due to our attempts to adhere to [Semantic Versioning](https://semver.org), you can expect the major version number to start going up faster than it used to.
|
203
227
|
|
204
|
-
|
228
|
+
Here are the things we are planning on removing or changing in the coming months-to-years:
|
229
|
+
|
230
|
+
### Use of the term 'api'
|
231
|
+
|
232
|
+
In ruby-jss < 2.0, the term `api` is used with the Classic API in method names, method parameters, instance variables, attributes, and constants. It is used to pass, access, refer to, or hold instances of JSS::APIConnnection, e.g. so a method that talks to the server would use the passed connection rather than the module-wide default connection.
|
233
|
+
|
234
|
+
The term 'api' is inappropriate because the thing being passed is a 'connection' not an 'api'. Now that there are actually two APIs at play, that usage is even less appropriate.
|
235
|
+
|
236
|
+
Going forward, use `cnx` (simpler to type than 'connection') instead. Example:
|
205
237
|
|
206
238
|
```ruby
|
207
239
|
my_connection = Jamf::Connection.new 'https://user@my.jamf.server:8443/', pw: :prompt
|
@@ -221,10 +253,6 @@ comp = JSS::Computer.fetch id: 12, cnx: my_connection
|
|
221
253
|
comp.cnx # => my_connection
|
222
254
|
```
|
223
255
|
|
224
|
-
In ruby-jss < 2.0, the term `api` is used with the Classic API in method names, method parameters, instance variables, attributes, and constants. It is used to pass, access, refer to, or hold instances of JSS::APIConnnection, e.g. so a method that talks to the server would use the passed connection rather than the module-wide default connection.
|
225
|
-
|
226
|
-
But, the thing being passed is a 'connection' not an 'API', and now that there are actually two APIs at play, that usage is even less appropriate.
|
227
|
-
|
228
256
|
The original Jamf module, which accessed only the Jamf Pro API, has always used the better-suited abbreviation `cnx` for this, and now that is standard everywhere.
|
229
257
|
|
230
258
|
For now `api` should continue to work, but it will be removed 'eventually', so please start changing your code now.
|
@@ -250,8 +278,6 @@ In v2.0.0 we are standardizing on the behavior of the previous Jamf module:
|
|
250
278
|
- `Jamf::SomeCollectionClass#save` instance method for sending an object to the server to be created OR updated in Jamf pro.
|
251
279
|
- Note that `#save` has been available for this use since the earliest versions of ruby-jss.
|
252
280
|
|
253
|
-
|
254
|
-
|
255
281
|
This means that these deprecated methods will go away for Classic API objects
|
256
282
|
|
257
283
|
- `Jamf::SomeCollectionClass.make` class method for instantiating a ruby object to be added as a new SomeCollectionClass to Jamf Pro
|
data/README.md
CHANGED
@@ -1,10 +1,25 @@
|
|
1
1
|
# ruby-jss: Working with the Jamf Pro APIs in Ruby
|
2
|
-
<a id="markdown-ruby-jss%3A-working-with-the-jamf-pro-apis-in-ruby" name="ruby-jss%3A-working-with-the-jamf-pro-apis-in-ruby"></a>
|
3
2
|
[![Gem Version](https://badge.fury.io/rb/ruby-jss.svg)](http://badge.fury.io/rb/ruby-jss)
|
4
3
|
|
5
|
-
|
4
|
+
## Version 2.0.0 has been released
|
6
5
|
|
7
|
-
|
6
|
+
Version 2.0.0 has major changes! While we've strived for backward compatibility, and have done lots of testing, YMMV. Please report any issues.
|
7
|
+
|
8
|
+
### Highlights
|
9
|
+
|
10
|
+
- Support for Ruby 3.x
|
11
|
+
- tested in 3.0 and 3.1
|
12
|
+
- Combined access to both the Classic and Jamf Pro APIs
|
13
|
+
- A single namespace module
|
14
|
+
- Connection objects talk to both APIs & automatically handle details like bearer tokens
|
15
|
+
- Auto-generated code for Jamf Pro API objects
|
16
|
+
- Autoloading of code using [Zeitwerk](https://github.com/fxn/zeitwerk)
|
17
|
+
|
18
|
+
For details about the changes, the document [README-2.0.0.md](README-2.0.0.md).
|
19
|
+
|
20
|
+
## _IMPORTANT_: Known Security Issue in v1.5.3 and below
|
21
|
+
|
22
|
+
Versions of ruby-jss prior to 1.6.0 contain a known security issue due to how we were using the 'plist' gem.
|
8
23
|
|
9
24
|
This has been resolved in 1.6.0, which now uses the CFProperlyList gem.
|
10
25
|
|
@@ -15,10 +30,12 @@ Many many thanks to actae0n of Blacksun Hackers Club for reporting this issue an
|
|
15
30
|
------
|
16
31
|
|
17
32
|
# Table of contents
|
18
|
-
<a id="markdown-table-of-contents" name="table-of-contents"></a>
|
19
33
|
|
20
34
|
<!-- TOC -->
|
21
35
|
|
36
|
+
- [Version 2.0.0 has been released](#version-200-has-been-released)
|
37
|
+
- [Highlights](#highlights)
|
38
|
+
- [_IMPORTANT_: Known Security Issue in v1.5.3 and below](#_important_-known-security-issue-in-v153-and-below)
|
22
39
|
- [DESCRIPTION](#description)
|
23
40
|
- [SYNOPSIS](#synopsis)
|
24
41
|
- [USAGE](#usage)
|
@@ -45,7 +62,6 @@ Many many thanks to actae0n of Blacksun Hackers Club for reporting this issue an
|
|
45
62
|
<!-- /TOC -->
|
46
63
|
|
47
64
|
## DESCRIPTION
|
48
|
-
<a id="markdown-description" name="description"></a>
|
49
65
|
|
50
66
|
ruby-jss defines a Ruby module called `Jamf`, which is used for accessing the 'Classic' and
|
51
67
|
'Jamf Pro' APIs of a Jamf Pro server. Jamf Pro is an enterprise-level management tool for Apple
|
@@ -69,7 +85,6 @@ Hopefully others will find it useful, and add more to it as well.
|
|
69
85
|
[Full technical documentation can be found here.](http://www.rubydoc.info/gems/ruby-jss/)
|
70
86
|
|
71
87
|
## SYNOPSIS
|
72
|
-
<a id="markdown-synopsis" name="synopsis"></a>
|
73
88
|
|
74
89
|
Here are some simple examples of using ruby-jss
|
75
90
|
|
@@ -116,10 +131,8 @@ ns.save
|
|
116
131
|
```
|
117
132
|
|
118
133
|
## USAGE
|
119
|
-
<a id="markdown-usage" name="usage"></a>
|
120
134
|
|
121
135
|
### Connecting to the Server
|
122
|
-
<a id="markdown-connecting-to-the-server" name="connecting-to-the-server"></a>
|
123
136
|
|
124
137
|
Before you can work with Jamf Pros Objects via the APIs, you have to connect to the server.
|
125
138
|
|
@@ -154,7 +167,6 @@ Also see Jamf::Configuration, and the [CONFIGURATION](#configuration) section be
|
|
154
167
|
server connection parameters in a simple config file.
|
155
168
|
|
156
169
|
#### Using multiple connections
|
157
|
-
<a id="markdown-using-multiple-connections" name="using-multiple-connections"></a>
|
158
170
|
|
159
171
|
Most of the time, you'll only need a single connection to a single server, and the default connection will be sufficient. However
|
160
172
|
you can also create multiple Connection objects, to different servers, or perhaps the same server with different credentials and
|
@@ -179,7 +191,6 @@ common_ipr_sns = ipr_sns_1 & ipr_sns_2
|
|
179
191
|
```
|
180
192
|
|
181
193
|
### Working with Jamf Objects
|
182
|
-
<a id="markdown-working-with-jamf-objects" name="working-with-jamf-objects"></a>
|
183
194
|
|
184
195
|
All of the ruby classes representing objects in Jamf Pro have common methods for creating, listing, retrieving, updating, and deleting via the API.
|
185
196
|
All supported objects can be listed, retrieved and deleted, but only some can be updated or created, mostly becase we haven't needed to do that ourselves
|
@@ -193,7 +204,6 @@ as are the API resources for accessing management history.
|
|
193
204
|
--------
|
194
205
|
|
195
206
|
#### Listing Objects
|
196
|
-
<a id="markdown-listing-objects" name="listing-objects"></a>
|
197
207
|
|
198
208
|
To get an Array with a summary of every object in the Jamf of some Class, call that Class's .all method:
|
199
209
|
|
@@ -218,7 +228,6 @@ To create, modify, or perform advanced searches, use the classes Jamf::AdvancedC
|
|
218
228
|
--------
|
219
229
|
|
220
230
|
#### Retrieving Objects
|
221
|
-
<a id="markdown-retrieving-objects" name="retrieving-objects"></a>
|
222
231
|
|
223
232
|
To retrieve a single object call the class's `.fetch` method and provide a name:, id:, or other valid identifier.
|
224
233
|
|
@@ -234,7 +243,6 @@ You can even fetch objects without specifying the kind of identifier, e.g. `Jamf
|
|
234
243
|
--------
|
235
244
|
|
236
245
|
#### Creating Objects
|
237
|
-
<a id="markdown-creating-objects" name="creating-objects"></a>
|
238
246
|
|
239
247
|
Some Objects can be created anew in the Jamf via ruby. To do so, first make a Ruby object using the class's `.create` method and providing a unique :name:, e.g.
|
240
248
|
|
@@ -260,7 +268,6 @@ new_pkg.save # returns 453, the id number of the object just created
|
|
260
268
|
--------
|
261
269
|
|
262
270
|
#### Updating Objects
|
263
|
-
<a id="markdown-updating-objects" name="updating-objects"></a>
|
264
271
|
|
265
272
|
Some objects can be modified.
|
266
273
|
|
@@ -278,7 +285,6 @@ existing_script.save # => returns the id number of the object just saved
|
|
278
285
|
--------
|
279
286
|
|
280
287
|
#### Deleting Objects
|
281
|
-
<a id="markdown-deleting-objects" name="deleting-objects"></a>
|
282
288
|
|
283
289
|
To delete an object, just call its #delete method
|
284
290
|
|
@@ -300,7 +306,6 @@ For more details see the docs for:
|
|
300
306
|
See the individual subclasses for any details specific to them.
|
301
307
|
|
302
308
|
## OBJECTS IMPLEMENTED
|
303
|
-
<a id="markdown-objects-implemented" name="objects-implemented"></a>
|
304
309
|
|
305
310
|
While the API itself supports nearly full CRUD (Create,Read,Update,Delete) for all objects, ruby-jss doesn't yet do so. Why? Because implementing the data validation and other parts needed for creating & updating can be time-consuming and we've focused on what we needed. As we keep developing ruby-jss, this list changes. If you'd like to help implement some of these objects more fully, please fork the github project and reach out to us at ruby-jss@pixar.com.
|
306
311
|
|
@@ -352,7 +357,6 @@ Here's some of what we've implemented so far. See each Class's [documentation(ht
|
|
352
357
|
**NOTE** Most Computer and MobileDevice data gathered by an Inventory Upate (a.k.a. 'recon') is not editable.
|
353
358
|
|
354
359
|
#### Other useful classes & modules:
|
355
|
-
<a id="markdown-other-useful-classes-%26-modules%3A" name="other-useful-classes-%26-modules%3A"></a>
|
356
360
|
|
357
361
|
These modules either provide stand-alone methods, or are mixed in to other classes to extend their functionality. See their documentation for details
|
358
362
|
|
@@ -365,7 +369,6 @@ These modules either provide stand-alone methods, or are mixed in to other class
|
|
365
369
|
* {Jamf::MDM} - a module that handles sending MDM commands. It is accessed via the Computer and MobileDevice classes and their instances.
|
366
370
|
|
367
371
|
## Object-related API endpoints
|
368
|
-
<a id="markdown-object-related-api-endpoints" name="object-related-api-endpoints"></a>
|
369
372
|
|
370
373
|
The classic API provides many endpoints not just for objects stored in Jamf Pro, but also for accessing data *about* those objects or interacting with the machines they represent. ruby-jss embeds access to those endpoints into their related classes.
|
371
374
|
|
@@ -379,7 +382,6 @@ For example:
|
|
379
382
|
- These endpoints provide access to the MDM infrastructure, and can be used to send MDM commands. Ruby-jss provides these as class and instance methods in {Jamf::Computer}, {Jamf::ComputerGroup}, {Jamf::MobileDevice}, and {Jamf::MobileDeviceGroup}
|
380
383
|
|
381
384
|
## CONFIGURATION
|
382
|
-
<a id="markdown-configuration" name="configuration"></a>
|
383
385
|
|
384
386
|
The {Jamf::Configuration} singleton class is used to read, write, and use site-specific defaults for the Jamf module. When ruby-jss is required, the single instance of {Jamf::Configuration} is created and accessible via the `Jamf.config` method. At that time the system-wide file /etc/ruby-jss.conf is examined if it exists, and the items in it are loaded into the attributes of Configuration instance. The user-specific file ~/.ruby-jss.conf then is examined if it exists, and any items defined there will override those values from the system-wide file.
|
385
387
|
|
@@ -411,7 +413,6 @@ api_timeout: 90
|
|
411
413
|
and then any calls to Jamf.cnx.connect will assume that server and username, and use a timeout of 90 seconds.
|
412
414
|
|
413
415
|
### Passwords
|
414
|
-
<a id="markdown-passwords" name="passwords"></a>
|
415
416
|
|
416
417
|
The config files don't store passwords and the {Jamf::Configuration} instance doesn't work with them. You'll have to use your own methods for acquiring the password for the Jamf.cnx.connect call.
|
417
418
|
|
@@ -435,7 +436,6 @@ Jamf.cnx.connect pw: password # other arguments used from the config settings
|
|
435
436
|
```
|
436
437
|
|
437
438
|
## BEYOND THE API
|
438
|
-
<a id="markdown-beyond-the-api" name="beyond-the-api"></a>
|
439
439
|
|
440
440
|
While the Jamf Pro APIs provide access to object data in the Jamf, ruby-jss tries to use that data to provide more than just information exchange. Here are some examples of how ruby-jss uses the API to provide functionality found in various Jamf tools:
|
441
441
|
|
@@ -456,14 +456,12 @@ While the Jamf Pro APIs provide access to object data in the Jamf, ruby-jss trie
|
|
456
456
|
* {Jamf::ExtensionAttribute} work with {Jamf::AdvancedSearch} subclasses to provide extra reporting about Extension Attribute values.
|
457
457
|
|
458
458
|
## INSTALL
|
459
|
-
<a id="markdown-install" name="install"></a>
|
460
459
|
|
461
460
|
In general, you can install ruby-jss with this command:
|
462
461
|
|
463
462
|
`gem install ruby-jss`
|
464
463
|
|
465
464
|
## REQUIREMENTS
|
466
|
-
<a id="markdown-requirements" name="requirements"></a>
|
467
465
|
|
468
466
|
ruby-jss 2.0.0 requires:
|
469
467
|
|
@@ -475,7 +473,6 @@ See the .gemspec file for details
|
|
475
473
|
|
476
474
|
|
477
475
|
### Contact
|
478
|
-
<a id="markdown-contact" name="contact"></a>
|
479
476
|
|
480
477
|
If you have questions or feedback about ruby-jss, please reach out to us via:
|
481
478
|
- The [#ruby-jss channel of Macadmins Slack](https://macadmins.slack.com/archives/C03C7F563MK)
|
@@ -484,7 +481,6 @@ If you have questions or feedback about ruby-jss, please reach out to us via:
|
|
484
481
|
|
485
482
|
|
486
483
|
## HELP & CONTACT INFO
|
487
|
-
<a id="markdown-help-%26-contact-info" name="help-%26-contact-info"></a>
|
488
484
|
|
489
485
|
Full documentation is available at [rubydoc.info](http://www.rubydoc.info/gems/ruby-jss/).
|
490
486
|
|
@@ -496,7 +492,6 @@ You can report issues in several ways:
|
|
496
492
|
- Join the conversation in the [#ruby-jss Macadmins Slack Channel](https://macadmins.slack.com/archives/C03C7F563MK)
|
497
493
|
|
498
494
|
## LICENSE
|
499
|
-
<a id="markdown-license" name="license"></a>
|
500
495
|
|
501
496
|
Copyright 2022 Pixar
|
502
497
|
|
data/lib/jamf/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-jss
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.0rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Lasell
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2022-09-
|
13
|
+
date: 2022-09-07 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: CFPropertyList
|