summaryrefslogtreecommitdiff
path: root/ruby
diff options
context:
space:
mode:
authorfrsyuki <frsyuki@users.sourceforge.jp>2010-04-04 21:45:56 +0900
committerfrsyuki <frsyuki@users.sourceforge.jp>2010-04-04 21:45:56 +0900
commit93c3cbeaeff73686048c687fa1a4cfcfd7fc2129 (patch)
tree1449007997dc8f7304c52fce899c9e3d09c3d96b /ruby
parent88c77b793f540cad214b445b214c8a968b9c50ca (diff)
downloadmsgpack-python-93c3cbeaeff73686048c687fa1a4cfcfd7fc2129.tar.gz
ruby fixes gemspec: require_paths = ["lib"]
Diffstat (limited to 'ruby')
-rw-r--r--ruby/msgpack.gemspec2
-rw-r--r--ruby/test/test_helper.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/ruby/msgpack.gemspec b/ruby/msgpack.gemspec
index 117f058..4f7fcec 100644
--- a/ruby/msgpack.gemspec
+++ b/ruby/msgpack.gemspec
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
s.rubyforge_project = "msgpack"
s.has_rdoc = false
s.extra_rdoc_files = ["README", "ChangeLog", "AUTHORS"]
- s.require_paths = ["ext"]
+ s.require_paths = ["lib"]
s.files = Dir["ext/**/*", "msgpack/**/*", "test/**/*"]
s.test_files = Dir["test/test_*.rb"]
s.extensions = Dir["ext/**/extconf.rb"]
diff --git a/ruby/test/test_helper.rb b/ruby/test/test_helper.rb
index 3088faa..6a63489 100644
--- a/ruby/test/test_helper.rb
+++ b/ruby/test/test_helper.rb
@@ -1,3 +1,3 @@
require 'test/unit'
-require File.dirname(__FILE__) + '/../ext/msgpack'
+require File.dirname(__FILE__) + '/../lib/msgpack'