require	'rubygems'

@gemspec = Gem::Specification.new{|s|
	s.name			=	"sympa-soap-client"
	s.version		=	File.open('VERSION'){|f| f.read}
	s.date			=	File.mtime('VERSION')
	s.author		=	'DELAVENNAT, David'
	s.homepage		=	'http://projects.mathrice.org/sympa-soap-client'
	s.email			=	'sympa-soap-client@projetcs.mathrice.org'
	s.platform		=	Gem::Platform::RUBY
	s.summary		=	'An implementation of Sympa SOAP Client for Ruby.'
	s.required_ruby_version	=	'>=1.8.7'
	s.require_path		=	'lib'
	s.has_rdoc		=	true
	s.extra_rdoc_files	=	['README.rdoc']
	s.rdoc_options		= '-SNUF'
	s.files			=	Dir['lib/**/*.rb']
	s.files.reject! { |fn| fn.include? 'CVS' }
}