-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathswagger_yard.gemspec
More file actions
29 lines (23 loc) · 975 Bytes
/
swagger_yard.gemspec
File metadata and controls
29 lines (23 loc) · 975 Bytes
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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "swagger_yard/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "swagger_yard"
s.version = SwaggerYard::VERSION
s.authors = ["chtrinh (Chris Trinh)"]
s.email = ["chris@synctv.com"]
s.homepage = "http://www.synctv.com"
s.summary = %q{SwaggerYard API doc through YARD}
s.description = %q{SwaggerYard API doc gem that uses YARD to parse the docs for a REST rails API}
s.licenses = ['MIT']
s.files = Dir["{app,config,public,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", "~> 3.2.8"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec"
s.add_development_dependency "mocha"
s.add_development_dependency "bourne"
s.add_development_dependency "simplecov"
s.add_runtime_dependency 'yard'
end