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 CHANGED
@@ -1 +1 @@
1
- 1.1.4
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
- # @option block [true,false] :wait (nil)
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
- # If false, then accept(2) is called on behalf of the job, and the result is passed via the standard in/out/error descriptors.
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
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{plist4r}
8
- s.version = "1.1.4"
8
+ s.version = "1.1.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["dreamcat4"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 1
8
- - 4
9
- version: 1.1.4
8
+ - 5
9
+ version: 1.1.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - dreamcat4