Class Rudy::InsecureKeyPermissions

  1. lib/rudy/exceptions.rb
Parent: Rudy::Error

Methods

public instance

  1. message

Public instance methods

message ()
[show source]
    # File lib/rudy/exceptions.rb, line 8
 8:     def message
 9:       lines = ["Insecure file permissions for #{@obj}"]
10:       lines << "Try: chmod 600 #{@obj}"
11:       lines.join($/)
12:     end