Merge pull request #26 from fallwith/master
Ruby 1.9.2 / RubyGems 1.8.5 compatibility fix (pass String instead of Pathname to require)
This commit is contained in:
commit
92ec1b478d
|
@ -23,6 +23,6 @@ end
|
||||||
|
|
||||||
|
|
||||||
this_dir = Pathname.new File.dirname(__FILE__)
|
this_dir = Pathname.new File.dirname(__FILE__)
|
||||||
require this_dir.join("import")
|
require this_dir.join("import").to_s
|
||||||
require this_dir.join("active_record/adapters/abstract_adapter")
|
require this_dir.join("active_record/adapters/abstract_adapter").to_s
|
||||||
require this_dir.join("synchronize")
|
require this_dir.join("synchronize").to_s
|
Loading…
Reference in a new issue