mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-19 13:02:13 +01:00
18 lines
587 B
Ruby
18 lines
587 B
Ruby
require './version.rb'
|
|
Gem::Specification.new do |s|
|
|
s.platform = Gem::Platform::RUBY
|
|
s.name = "msgpack"
|
|
s.version = MessagePack::VERSION
|
|
s.summary = "MessagePack, a binary-based efficient data interchange format."
|
|
s.author = "FURUHASHI Sadayuki"
|
|
s.email = "frsyuki@users.sourceforge.jp"
|
|
s.homepage = "http://msgpack.org/"
|
|
s.rubyforge_project = "msgpack"
|
|
s.has_rdoc = true
|
|
s.rdoc_options = ["ext"]
|
|
s.require_paths = ["lib"]
|
|
s.files = Dir["ext/**/*", "msgpack/**/*", "test/**/*"]
|
|
s.test_files = Dir["test/test_*.rb"]
|
|
s.extensions = Dir["ext/**/extconf.rb"]
|
|
end
|