Rakefile in http_configuration-1.0.1 vs Rakefile in http_configuration-1.0.2
- old
+ new
@@ -13,27 +13,30 @@
end
desc 'Generate documentation for http_configuration.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
- rdoc.title = 'Http Configuration'
- rdoc.options << '--line-numbers' << '--inline-source'
+ rdoc.options << '--title' << 'HTTP Configuration' << '--line-numbers' << '--inline-source' << '--main' << 'README'
rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('lib/**/*.rb')
end
spec = Gem::Specification.new do |s|
s.name = "http_configuration"
- s.version = "1.0.1"
+ s.version = "1.0.2"
s.author = "Brian Durand"
s.platform = Gem::Platform::RUBY
s.summary = "Provide configuration options for Net::HTTP"
s.files = FileList["lib/*", "init.rb", "MIT-LICENSE", 'Rakefile'].to_a
s.require_path = "lib"
- s.autorequire = "init.rb"
s.test_files = FileList["{spec}/**/*_spec.rb"].to_a
s.has_rdoc = true
+ s.rdoc_options << '--title' << 'HTTP Configuration' << '--line-numbers' << '--inline-source' << '--main' << 'README'
s.extra_rdoc_files = ["README"]
+ s.homepage = "http://httpconfig.rubyforge.org"
+ s.rubyforge_project = "httpconfig"
+ s.email = 'brian@embellishedvisions.com'
+ s.requirements = 'rspec 1.0.8 or higher is needed to run the tests'
end
Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_tar = true
end
\ No newline at end of file