olddoc.git  about / heads / tags
olddoc - old-fashioned RDoc generator(s)
blob a09ffe07f9df26ef21820323423006bda91c856d 787 bytes (raw)
$ git show v1.3.0:olddoc.gemspec	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 
# Copyright (C) 2015-2016 all contributors <olddoc-public@80x24.org>
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
$LOAD_PATH << 'lib'
require 'olddoc'
require 'olddoc/version'
extend Olddoc::Gemspec
name, summary, title = readme_metadata
Gem::Specification.new do |s|
  manifest = File.read('.gem-manifest').split(/\n/)
  s.name = 'olddoc'
  s.version = Olddoc::VERSION
  s.executables = %w(olddoc)
  s.authors = ["#{s.name} hackers"]
  s.summary = summary
  s.description = readme_description
  s.email = 'e@80x24.org'
  s.files = manifest

  # works fine with RDoc 5.x
  s.add_dependency('rdoc', ['>= 4.2', '< 6.0'])
  s.add_dependency('builder', '~> 3.2')
  s.required_ruby_version = '>= 1.9.3'
  s.homepage = Olddoc.config['rdoc_url']
  s.licenses = 'GPL-3.0+'
end

git clone https://80x24.org/olddoc.git