method

write

rails latest stable - Class: Rails::Secrets
write(contents)
public

No documentation available.

# File railties/lib/rails/secrets.rb, line 54
      def write(contents)
        IO.binwrite("#{path}.tmp", encrypt(contents))
        FileUtils.mv("#{path}.tmp", path)
      end