windoo 1.0.1 → 1.0.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/CHANGES.md +5 -0
- data/README.md +3 -2
- data/lib/windoo/version.rb +1 -1
- data/lib/windoo.rb +4 -0
- 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: 9514c22d86c9ca97016691cbd86c9f0e91107bd8370373d47a9f6ee10f9e2a46
|
|
4
|
+
data.tar.gz: 586788f1b04b19dc5b902ef65f8e90cf96ee54674541002f45a2c1edd325e2fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c6577cc82d307730ad258375e71360bf9d2000ab1afc68ec69181b977ee0556327fa868a6281b30c430607cc4612747fadc97936b327e0d4a7b83fc6f63fefc
|
|
7
|
+
data.tar.gz: 834acea3cf071e08ba744598755d2e3adcb226c4a8bb571b1b1def7d748c733e31ffcadd086da611007d2feb373f1e7b71f9dbad767963f8112903a61d49343c
|
data/CHANGES.md
CHANGED
|
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
|
|
|
3
3
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
5
5
|
|
|
6
|
+
## \[1.0.2] - 2025-11-17
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
- Set request User-Agent header to indicate windoo version
|
|
10
|
+
- Update to TOST license. Terms are unchanged, but the license has an official name now.
|
|
6
11
|
|
|
7
12
|
## \[1.0.1] - 2025-09-28
|
|
8
13
|
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Windoo -
|
|
1
|
+
# Windoo - Ruby Access to the Jamf Title Editor
|
|
2
2
|
|
|
3
3
|
Windoo provides a Ruby interface to the REST API of the [Jamf Title Editor](https://docs.jamf.com/title-editor/documentation/About_Title_Editor.html), formerly known as 'Kinobi'.
|
|
4
4
|
|
|
@@ -11,6 +11,7 @@ As with ruby-jss, the entire API is not implemented here, only the objects neces
|
|
|
11
11
|
See also:
|
|
12
12
|
- [Documentation about using the Title Editor via its GUI WebApp](https://docs.jamf.com/title-editor/documentation/index.html)
|
|
13
13
|
- [Documentation about the underlying REST API used by Windoo](https://developer.jamf.com/title-editor/reference)
|
|
14
|
+
- [The detailed ruby documentation for windoo](https://www.rubydoc.info/gems/windoo)
|
|
14
15
|
|
|
15
16
|
Usage:
|
|
16
17
|
|
|
@@ -219,4 +220,4 @@ patch.enable
|
|
|
219
220
|
title.enable
|
|
220
221
|
```
|
|
221
222
|
|
|
222
|
-
More documentation is on the way
|
|
223
|
+
More documentation is on the way
|
data/lib/windoo/version.rb
CHANGED
data/lib/windoo.rb
CHANGED
|
@@ -54,3 +54,7 @@ end # module Windoo
|
|
|
54
54
|
|
|
55
55
|
# testing zeitwerk loading, if the correct file is present
|
|
56
56
|
WindooZeitwerkConfig.eager_load_for_testing
|
|
57
|
+
|
|
58
|
+
# Set a default user-agent for Faraday requests
|
|
59
|
+
# do thise after zeitwerk has loaded Constants
|
|
60
|
+
Faraday.default_connection_options = { headers: { user_agent: "windoo/#{Windoo::VERSION} Faraday/#{Faraday::VERSION}" } }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: windoo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Lasell
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-11-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pixar-ruby-extensions
|
|
@@ -133,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
133
133
|
- !ruby/object:Gem::Version
|
|
134
134
|
version: '0'
|
|
135
135
|
requirements: []
|
|
136
|
-
rubygems_version: 3.3
|
|
136
|
+
rubygems_version: 3.5.3
|
|
137
137
|
signing_key:
|
|
138
138
|
specification_version: 4
|
|
139
139
|
summary: Ruby interface to the REST API of the Jamf Title Editor, formerly known as
|