-
Notifications
You must be signed in to change notification settings - Fork 4
/
yard-padrino.gemspec
48 lines (43 loc) · 1.86 KB
/
yard-padrino.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'yard/padrino/version'
Gem::Specification.new do |spec|
spec.name = "yard-padrino"
spec.version = YARD::Padrino::VERSION
spec.authors = ["ITO Nobuaki"]
spec.email = ["[email protected]"]
spec.description = %q{YARD plugin for Padrino controllers.}
spec.summary = %q{YARD plugin for Padrino controllers.}
spec.homepage = "https://github.com/dayflower/yard-padrino"
spec.license = "MIT"
spec.files = [
"yard-padrino.gemspec",
"Gemfile",
"LICENSE.txt",
"README.md",
"Rakefile",
"lib/yard-padrino.rb",
"lib/yard/padrino/version.rb",
"lib/yard/padrino.rb",
"templates/default/fulldoc/html/full_list_padrino_handler.erb",
"templates/default/fulldoc/html/setup.rb",
"templates/default/layout/html/setup.rb",
"templates/default/module/html/padrino_handler_summary.erb",
"templates/default/module/html/padrino_handlers_details_list.erb",
"templates/default/module/html/padrino_handlers_summary.erb",
"templates/default/module/html/padrino_routes_details_list.erb",
"templates/default/module/html/padrino_routes_summary.erb",
"templates/default/module/setup.rb",
"templates/default/padrino_handler_details/html/header.erb",
"templates/default/padrino_handler_details/html/method_signature.erb",
"templates/default/padrino_handler_details/html/source.erb",
"templates/default/padrino_handler_details/setup.rb",
]
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency "yard"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
end