forked from rails/sdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdoc.gemspec
31 lines (24 loc) · 1008 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
30
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "sdoc"
s.version = "0.3.15"
s.authors = ["Vladimir Kolesnikov"]
s.description = %q{rdoc generator html with javascript search index.}
s.summary = %q{rdoc html with javascript search index.}
s.homepage = %q{http://github.com/voloko/sdoc}
s.email = %q{voloko@gmail.com}
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.rdoc"]
s.add_runtime_dependency('rdoc', "~> 3.10")
if defined?(JRUBY_VERSION)
s.platform = Gem::Platform.new(['universal', 'java', nil])
s.add_runtime_dependency("json_pure", ">= 1.1.3")
else
s.add_runtime_dependency("json", ">= 1.1.3")
end
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
end