我正在尝试为铁路宝石https://github.com/preston/railroady#readme
执行rake任务在下面的错误消息中,我认为在使用Ruby 1.9.3(参见下文)时,它指的是syck的Ruby 1.9.1。这是正常的吗?
这个过程正在落在以下几个方面:
/Users/sean/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/syck.rb:135:in `load': syntax error on line 62, col 4: ` require_ssl:false ' (ArgumentError)
from /Users/sean/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/syck.rb:135:in `load'
syck.rb的相关代码是:
124 # Load a document from the current _io_ stream.
125 #
126 # File.open( 'animals.yaml' ) { |yf| YAML::load( yf ) }
127 # #=> ['badger', 'elephant', 'tiger']
128 #
129 # Can also load from a string.
130 #
131 # YAML.load( "--- :locked" )
132 # #=> :locked
133 #
134 def self.load( io )
135 parser.load( io )
136 end
答案 0 :(得分:3)
从错误消息:
syntax error on line 62, col 4: ` require_ssl:false '
我怀疑这是你的一个Yaml配置文件中的错误,而不是Syck本身的错误 - 即通过 Syck报告错误,而不是 Syck中的错误。