plist4r 1.1.3 → 1.1.4
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.
- data/VERSION +1 -1
- data/lib/plist4r/plist_type/launchd.rb +3 -3
- data/plist4r.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.4
|
@@ -32,16 +32,16 @@ module Plist4r
|
|
32
32
|
end
|
33
33
|
|
34
34
|
# Set or return the plist key +inetdCompatibility+
|
35
|
-
# @param [
|
35
|
+
# @param [Block] block
|
36
36
|
# The presence of this key specifies that the daemon expects to be run as if it were launched from inetd.
|
37
37
|
#
|
38
|
-
# @option
|
38
|
+
# @option block [true,false] :wait (nil)
|
39
39
|
# This flag corresponds to the "wait" or "nowait" option of inetd. If true, then the listening socket is passed via the standard in/out/error file descriptors.
|
40
40
|
# If false, then accept(2) is called on behalf of the job, and the result is passed via the standard in/out/error descriptors.
|
41
41
|
#
|
42
42
|
# @example
|
43
43
|
# # set inetdCompatibility
|
44
|
-
# launchd_plist.inetd_compatibility
|
44
|
+
# launchd_plist.inetd_compatibility { wait true }
|
45
45
|
#
|
46
46
|
# # return inetdCompatibility
|
47
47
|
# launchd_plist.inetd_compatibility => hash or nil
|
data/plist4r.gemspec
CHANGED