plist4r 1.1.4 → 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/plist4r/plist_type/launchd.rb +6 -3
- data/plist4r.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.5
|
@@ -2,6 +2,8 @@
|
|
2
2
|
require 'plist4r/plist_type'
|
3
3
|
|
4
4
|
module Plist4r
|
5
|
+
# For help in working with launchd, see http://www.mactech.com/articles/mactech/Vol.21/21.06/launchd/
|
6
|
+
#
|
5
7
|
# @author Dreamcat4 (dreamcat4@gmail.com)
|
6
8
|
class PlistType::Launchd < PlistType
|
7
9
|
|
@@ -35,9 +37,10 @@ module Plist4r
|
|
35
37
|
# @param [Block] block
|
36
38
|
# The presence of this key specifies that the daemon expects to be run as if it were launched from inetd.
|
37
39
|
#
|
38
|
-
#
|
39
|
-
#
|
40
|
-
#
|
40
|
+
# <tt>wait [true,false]</tt>
|
41
|
+
#
|
42
|
+
# 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.
|
43
|
+
# 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
44
|
#
|
42
45
|
# @example
|
43
46
|
# # set inetdCompatibility
|
data/plist4r.gemspec
CHANGED