命令行:未定义的局部变量或方法

时间:2014-08-14 09:20:31

标签: ruby

我收到了以下代码:

require 'base64'

def Decrypt(rsaCipher, encryptedValue)
  print base64.decode64(encryptedValue)
end

Decrypt("a", "b")

我收到错误消息in 'Decrypt': undefined local variable or method 'base64' for main:Object (NameError)'。我究竟做错了什么?为什么Ruby不检测base64库,即使我包含它?

1 个答案:

答案 0 :(得分:4)

它应该是Base64但不是base64 ................................ 。的 See the doc