* ext/psych/extconf.rb: install psych .so to not psych/ but direct.

This prepends to install *.rb files to psych/psych.

* ext/psych/lib/psych.rb: require 'psych.so'.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27115 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2010-03-30 12:21:55 +00:00
parent 0cf5d3fa96
commit ee90d5d30e
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
Tue Mar 30 21:18:32 2010 NARUSE, Yui <naruse@ruby-lang.org>
* ext/psych/extconf.rb: install psych .so to not psych/ but direct.
This prepends to install *.rb files to psych/psych.
* ext/psych/lib/psych.rb: require 'psych.so'.
Tue Mar 30 20:55:14 2010 Tanaka Akira <akr@fsij.org>
* time.c (w2v): renamed from w2xv.

View File

@ -11,6 +11,6 @@ end
asplode('yaml.h') unless find_header 'yaml.h'
asplode('libyaml') unless find_library 'yaml', 'yaml_get_version'
create_makefile 'psych/psych'
create_makefile 'psych'
# :startdoc:

View File

@ -1,4 +1,4 @@
require 'psych/psych'
require 'psych.so'
require 'psych/nodes'
require 'psych/visitors'
require 'psych/handler'