mirror of
https://github.com/samsonjs/http-cookie.git
synced 2026-04-24 14:27:39 +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 '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'
|
require 'yaml'
|
||||||
|
|
||||||
# YAMLSaver saves and loads cookies in the YAML format.
|
# YAMLSaver saves and loads cookies in the YAML format.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue