repo.or.cz
/
ruby-svn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
* transcode.c (transcode_restartable): my_transcoder argument removed.
[ruby-svn.git]
/
lib
/
yaml
/
syck.rb
blob
faf57e8036d7effea0ff1282b9dd398a70606301
1
#
2
# YAML::Syck module
3
# .. glues syck and yaml.rb together ..
4
#
5
require 'syck'
6
require 'yaml/basenode'
7
8
module YAML
9
module Syck
10
11
#
12
# Mixin BaseNode functionality
13
#
14
class Node
15
include YAML::BaseNode
16
end
17
18
end
19
end