Make the attr_accessors in File more readable.
Note what the default is and that a couple of them will change at some point soon.
This commit is contained in:
parent
253457545e
commit
378293539d
|
@ -59,12 +59,15 @@ module Zip
|
||||||
|
|
||||||
attr_reader :name
|
attr_reader :name
|
||||||
|
|
||||||
# default -> false
|
# default -> false.
|
||||||
attr_accessor :restore_ownership
|
attr_accessor :restore_ownership
|
||||||
# default -> false
|
|
||||||
|
# default -> false, but will be set to true in a future version.
|
||||||
attr_accessor :restore_permissions
|
attr_accessor :restore_permissions
|
||||||
# default -> true
|
|
||||||
|
# default -> false, but will be set to true in a future version.
|
||||||
attr_accessor :restore_times
|
attr_accessor :restore_times
|
||||||
|
|
||||||
# Returns the zip files comment, if it has one
|
# Returns the zip files comment, if it has one
|
||||||
attr_accessor :comment
|
attr_accessor :comment
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue