forked from rails/sdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sdoc.gemspec
29 lines (22 loc) · 962 Bytes
/
sdoc.gemspec
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
26
27
28
29
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'sdoc/version'
Gem::Specification.new do |s|
s.name = "sdoc"
s.version = SDoc::VERSION
s.authors = ["Vladimir Kolesnikov", "Nathan Broadbent", "Jean Mertz", "Zachary Scott"]
s.description = %q{rdoc generator html with javascript search index.}
s.summary = %q{rdoc html with javascript search index.}
s.homepage = %q{https://github.com/zzak/sdoc}
s.email = %q{[email protected] [email protected]}
s.license = 'MIT'
s.require_path = 'lib'
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.6") if
s.respond_to? :required_rubygems_version=
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = ["README.md"]
s.add_runtime_dependency("rdoc", "~> 4.0")
s.add_runtime_dependency("json", "~> 1.7", ">= 1.7.7")
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
end