summaryrefslogtreecommitdiff
path: root/ruby/msgpack.gemspec
diff options
context:
space:
mode:
authorfrsyuki <frsyuki@users.sourceforge.jp>2010-04-02 03:22:29 +0900
committerfrsyuki <frsyuki@users.sourceforge.jp>2010-04-02 03:22:29 +0900
commit11286524a5872f88a0988118faaf9c37f5d0c2d7 (patch)
tree8382c4f489daf3950b9f8975120d4fa1642c43c2 /ruby/msgpack.gemspec
parent7c863c341ed17ff737e58a3ed958a6e1314fb4de (diff)
downloadmsgpack-python-11286524a5872f88a0988118faaf9c37f5d0c2d7.tar.gz
ruby: fixes 'File not found: lib' message on gem installation
Diffstat (limited to 'ruby/msgpack.gemspec')
-rw-r--r--ruby/msgpack.gemspec6
1 files changed, 3 insertions, 3 deletions
diff --git a/ruby/msgpack.gemspec b/ruby/msgpack.gemspec
index 5ff27f2..117f058 100644
--- a/ruby/msgpack.gemspec
+++ b/ruby/msgpack.gemspec
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "msgpack"
- s.version = "0.3.5"
+ s.version = "0.3.6"
s.summary = "MessagePack, a binary-based efficient data interchange format."
s.author = "FURUHASHI Sadayuki"
s.email = "frsyuki@users.sourceforge.jp"
@@ -9,8 +9,8 @@ Gem::Specification.new do |s|
s.rubyforge_project = "msgpack"
s.has_rdoc = false
s.extra_rdoc_files = ["README", "ChangeLog", "AUTHORS"]
- s.require_paths = ["lib", "ext"]
- s.files = Dir["lib/**/*", "ext/**/*", "msgpack/**/*", "test/**/*"]
+ s.require_paths = ["ext"]
+ s.files = Dir["ext/**/*", "msgpack/**/*", "test/**/*"]
s.test_files = Dir["test/test_*.rb"]
s.extensions = Dir["ext/**/extconf.rb"]
end