about summary refs log tree commit homepage
path: root/kcar.gemspec
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2015-01-11 23:03:26 +0000
committerEric Wong <normalperson@yhbt.net>2015-01-11 23:05:00 +0000
commitbb1a2f3cb75e8f36c30b160c89f403a7a1a6dd31 (patch)
treed414b440e91ab6eeed5efb3c2b060cca63ca882e /kcar.gemspec
parent8ea1b2ac1e09a514acc45ecf304137049e6be5dd (diff)
downloadkcar-bb1a2f3cb75e8f36c30b160c89f403a7a1a6dd31.tar.gz
wrongdoc was difficult to maintain because of the tidy-ffi
dependency and the HTML5 changes in Darkfish could not be
handled well by Tidy.

olddoc is superior as it generates leaner HTML which loads faster,
requires less scrolling and less processing power to render.
Aesthetic comparisons are subjective of course but completely
unimportant compared to speed and accessibility.

The presence of images and CSS on the old (Darkfish-based) site
probably set unreasonable expectations as to my ability and
willingness to view such things.  No more, the new website is
entirely simple HTML which renders well with even the wimpiest
browser (hell, olddoc even tries to generate readable raw HTML).

ref: http://80x24.org/olddoc/
Diffstat (limited to 'kcar.gemspec')
-rw-r--r--kcar.gemspec14
1 files changed, 6 insertions, 8 deletions
diff --git a/kcar.gemspec b/kcar.gemspec
index a0ca22e..f1dce8d 100644
--- a/kcar.gemspec
+++ b/kcar.gemspec
@@ -1,25 +1,23 @@
 ENV["VERSION"] or abort "VERSION= must be specified"
 manifest = File.readlines('.manifest').map! { |x| x.chomp! }
-require 'wrongdoc'
-extend Wrongdoc::Gemspec
+require 'olddoc'
+extend Olddoc::Gemspec
 name, summary, title = readme_metadata
 
 Gem::Specification.new do |s|
   s.name = %q{kcar}
   s.version = ENV["VERSION"].dup
-  s.homepage = Wrongdoc.config[:rdoc_url]
+  s.homepage = Olddoc.config['rdoc_url']
   s.authors = ["kcar hackers"]
-  s.date = Time.now.utc.strftime('%Y-%m-%d')
   s.description = readme_description
   s.email = %q{kcar@librelist.org}
   s.extra_rdoc_files = extra_rdoc_files(manifest)
   s.files = manifest
-  s.rdoc_options = rdoc_options
-  s.rubyforge_project = %q{rainbows}
   s.summary = summary
   s.test_files = Dir['test/test_*.rb']
   s.extensions = %w(ext/kcar/extconf.rb)
-  s.add_development_dependency('wrongdoc', '~> 1.5')
+  s.add_development_dependency('olddoc', '~> 1.0')
+  s.add_development_dependency('test-unit', '~> 3.0')
 
-  s.license = %w(GPLv2+ Ruby) # disabled for compatibility with older RubyGems
+  s.licenses = %w(GPLv2+ Ruby)
 end