kgio.gemspec in kgio-2.0.0 vs kgio.gemspec in kgio-2.1.0
- old
+ new
@@ -1,36 +1,27 @@
ENV["VERSION"] or abort "VERSION= must be specified"
manifest = File.readlines('.manifest').map! { |x| x.chomp! }
-summary = File.readlines("README")[0].gsub(/\A=\s+\S+[^\w]+/, '').strip
-description = File.read("README").split(/\n\n/)[1].strip
+require 'wrongdoc'
+extend Wrongdoc::Gemspec
+name, summary, title = readme_metadata
Gem::Specification.new do |s|
s.name = %q{kgio}
- s.version = ENV["VERSION"]
-
- s.homepage = 'http://bogomips.org/kgio/'
- s.authors = ["kgio hackers"]
+ s.version = ENV["VERSION"].dup
+ s.homepage = Wrongdoc.config[:rdoc_url]
+ s.authors = ["#{name} hackers"]
s.date = Time.now.utc.strftime('%Y-%m-%d')
- s.description = description
+ s.description = readme_description
s.email = %q{kgio@bogomips.org}
-
- s.extra_rdoc_files = File.readlines('.document').map! do |x|
- x.chomp!
- if File.directory?(x)
- manifest.grep(%r{\A#{x}/})
- elsif File.file?(x)
- x
- else
- nil
- end
- end.flatten.compact
-
+ s.extra_rdoc_files = extra_rdoc_files(manifest)
s.files = manifest
- s.rdoc_options = [ "-t", summary ]
+ s.rdoc_options = rdoc_options
s.require_paths = %w(lib ext)
s.rubyforge_project = %q{rainbows}
s.summary = summary
s.test_files = Dir['test/test_*.rb']
s.extensions = %w(ext/kgio/extconf.rb)
+
+ s.add_development_dependency('wrongdoc', '~> 1.0.1')
# s.license = %w(LGPL) # disabled for compatibility with older RubyGems
end