mirror of
https://github.com/samsonjs/http-cookie.git
synced 2026-03-25 08:55:53 +00:00
Fix a terrible typo that kept YAMLServer from working. :(
This commit is contained in:
parent
c6d28de9b7
commit
fc8ddebce0
1 changed files with 1 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
|||
require 'http/cookie_jar'
|
||||
require 'psych' if !defined(YAML) && RUBY_VERSION == "1.9.2"
|
||||
require 'psych' if !defined?(YAML) && RUBY_VERSION == "1.9.2"
|
||||
require 'yaml'
|
||||
|
||||
# YAMLSaver saves and loads cookies in the YAML format.
|
||||
|
|
|
|||
Loading…
Reference in a new issue