about summary refs log tree commit homepage
path: root/wordexp.gemspec
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2015-01-15 02:57:36 +0000
committerEric Wong <normalperson@yhbt.net>2015-01-15 03:11:24 +0000
commitce03e1fb74bb3654b73792a58598813809dbf6df (patch)
treed71efeab48d999100ecc9187ee8d5c7d69926624 /wordexp.gemspec
parent0eea98824e190f0fcad735dd48f2b18b97a85555 (diff)
downloadruby-wordexp-ce03e1fb74bb3654b73792a58598813809dbf6df.tar.gz
wrongdoc was difficult to maintain for various reasons,
and olddoc is more complete and maintainable, and generates
faster websites.

ref: http://80x24.org/olddoc/
Diffstat (limited to 'wordexp.gemspec')
-rw-r--r--wordexp.gemspec12
1 files changed, 5 insertions, 7 deletions
diff --git a/wordexp.gemspec b/wordexp.gemspec
index 8487a19..21fb802 100644
--- a/wordexp.gemspec
+++ b/wordexp.gemspec
@@ -1,8 +1,8 @@
 # -*- encoding: binary -*-
 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|
@@ -10,16 +10,14 @@ Gem::Specification.new do |s|
   s.version = ENV["VERSION"].dup
 
   s.authors = ["Eric Wong"]
-  s.date = Time.now.utc.strftime('%Y-%m-%d')
   s.description = readme_description
   s.email = %q{normalperson@yhbt.net}
   s.extra_rdoc_files = extra_rdoc_files(manifest)
   s.extensions = %w(ext/wordexp/extconf.rb)
   s.files = manifest
-  s.homepage = Wrongdoc.config[:rdoc_url]
+  s.homepage = Olddoc.config['rdoc_url']
   s.summary = summary
-  s.rdoc_options = rdoc_options
   s.test_files = Dir['test/test_*.rb']
-  s.licenses = %w(LGPLv2.1+)
-  s.add_development_dependency('wrongdoc', '~> 1.7')
+  s.licenses = %w(LGPL-2.1+)
+  s.add_development_dependency('olddoc', '~> 1.0')
 end