文件操作 - config_render_options.rb
返回文件管理
返回主菜单
删除本文件
文件: /opt/puppetlabs/puppet/lib/ruby/vendor_gems/gems/hocon-1.4.0/lib/hocon/config_render_options.rb
编辑文件内容
# encoding: utf-8 require_relative '../hocon' class Hocon::ConfigRenderOptions def initialize(origin_comments, comments, formatted, json, key_value_separator=:equals) @origin_comments = origin_comments @comments = comments @formatted = formatted @json = json @key_value_separator = key_value_separator end attr_accessor :origin_comments, :comments, :formatted, :json, :key_value_separator def origin_comments? @origin_comments end def comments? @comments end def formatted? @formatted end def json? @json end # # Returns the default render options which are verbose (commented and # formatted). See {@link ConfigRenderOptions#concise} for stripped-down # options. This rendering will not be valid JSON since it has comments. # # @return the default render options # def self.defaults Hocon::ConfigRenderOptions.new(true, true, true, true) end # # Returns concise render options (no whitespace or comments). For a # resolved {@link Config}, the concise rendering will be valid JSON. # # @return the concise render options # def self.concise Hocon::ConfigRenderOptions.new(false, false, false, true) end end
修改文件时间
将文件时间修改为当前时间的前一年
删除文件