ruby-jss 2.0.0 → 2.1.0b5
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/CHANGES.md +21 -3
- data/bin/cgrouper +144 -161
- data/bin/jamfHelperBackgrounder +4 -2
- data/lib/jamf/api/classic/api_objects/computer.rb +1 -0
- data/lib/jamf/api/classic/api_objects/computer_group.rb +58 -94
- data/lib/jamf/api/classic/api_objects/mobile_device_application.rb +1 -1
- data/lib/jamf/api/jamf_pro/mixins/bulk_deletable.rb +2 -2
- data/lib/jamf/api/jamf_pro/mixins/collection_resource.rb +1 -3
- data/lib/jamf/api/jamf_pro/mixins/macos_managed_updates.rb +1 -1
- data/lib/jamf/api/jamf_pro/mixins/macos_redeploy_mgmt_framework.rb +113 -0
- data/lib/jamf/configuration.rb +55 -60
- data/lib/jamf/deprecations.rb +28 -0
- data/lib/jamf/version.rb +1 -1
- data/lib/jamf/zeitwerk_config.rb +3 -2
- data/lib/jamf.rb +4 -0
- metadata +10 -8
metadata
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-jss
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.1.0b5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Lasell
|
|
8
8
|
- Aurica Hayes
|
|
9
9
|
- Kristoffer Landes
|
|
10
|
-
autorequire:
|
|
10
|
+
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2022-09-
|
|
13
|
+
date: 2022-09-23 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: CFPropertyList
|
|
@@ -290,6 +290,7 @@ files:
|
|
|
290
290
|
- lib/jamf/api/jamf_pro/mixins/jpapi_resource.rb
|
|
291
291
|
- lib/jamf/api/jamf_pro/mixins/lockable.rb
|
|
292
292
|
- lib/jamf/api/jamf_pro/mixins/macos_managed_updates.rb
|
|
293
|
+
- lib/jamf/api/jamf_pro/mixins/macos_redeploy_mgmt_framework.rb
|
|
293
294
|
- lib/jamf/api/jamf_pro/mixins/prestage.rb
|
|
294
295
|
- lib/jamf/api/jamf_pro/mixins/sortable.rb
|
|
295
296
|
- lib/jamf/api/jamf_pro/mixins/uncreatable.rb
|
|
@@ -747,6 +748,7 @@ files:
|
|
|
747
748
|
- lib/jamf/configuration.rb
|
|
748
749
|
- lib/jamf/constants.rb
|
|
749
750
|
- lib/jamf/db_connection.rb
|
|
751
|
+
- lib/jamf/deprecations.rb
|
|
750
752
|
- lib/jamf/deprecations/deprecated_api_connection_class.rb
|
|
751
753
|
- lib/jamf/deprecations/deprecated_api_constant.rb
|
|
752
754
|
- lib/jamf/deprecations/deprecated_config_constant.rb
|
|
@@ -806,7 +808,7 @@ homepage: http://pixaranimationstudios.github.io/ruby-jss/
|
|
|
806
808
|
licenses:
|
|
807
809
|
- Nonstandard
|
|
808
810
|
metadata: {}
|
|
809
|
-
post_install_message:
|
|
811
|
+
post_install_message:
|
|
810
812
|
rdoc_options:
|
|
811
813
|
- "--title"
|
|
812
814
|
- JSS
|
|
@@ -822,12 +824,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
822
824
|
version: 2.6.3
|
|
823
825
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
824
826
|
requirements:
|
|
825
|
-
- - "
|
|
827
|
+
- - ">"
|
|
826
828
|
- !ruby/object:Gem::Version
|
|
827
|
-
version:
|
|
829
|
+
version: 1.3.1
|
|
828
830
|
requirements: []
|
|
829
|
-
rubygems_version: 3.1
|
|
830
|
-
signing_key:
|
|
831
|
+
rubygems_version: 3.0.3.1
|
|
832
|
+
signing_key:
|
|
831
833
|
specification_version: 4
|
|
832
834
|
summary: A Ruby interface to the Jamf Pro REST APIs
|
|
833
835
|
test_files: []
|