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 CHANGED
@@ -1 +1 @@
1
- 1.1.3
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 [Hash <true,false>] value the
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 value [true,false] :wait (nil)
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({:wait => true})
44
+ # launchd_plist.inetd_compatibility { wait true }
45
45
  #
46
46
  # # return inetdCompatibility
47
47
  # launchd_plist.inetd_compatibility => hash or nil
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{plist4r}
8
- s.version = "1.1.3"
8
+ s.version = "1.1.4"
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
- - 3
9
- version: 1.1.3
8
+ - 4
9
+ version: 1.1.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - dreamcat4