# -*- ruby -*- $:.push(File.dirname(__FILE__) + '/lib') require 'rubygems' require 'hoe' require 'ruby_protobuf' Hoe.spec('ruby_protobuf') do |p| p.version = RubyProtobuf::VERSION p.rubyforge_name = 'ruby-protobuf' p.developer('MATSUYAMA Kengo', 'macksx@gmail.com') p.summary = 'Protocol Buffers for Ruby' p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n") p.url = 'http://code.google.com/p/ruby-protobuf' p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n") end # vim: syntax=ruby