-
Notifications
You must be signed in to change notification settings - Fork 50
/
raddocs.gemspec
29 lines (24 loc) · 985 Bytes
/
raddocs.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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
Gem::Specification.new do |s|
s.name = "raddocs"
s.version = "2.3.0"
s.platform = Gem::Platform::RUBY
s.authors = ["Eric Oestrich"]
s.email = ["[email protected]"]
s.summary = "rspec_api_documentation browser"
s.description = "Browse documentation generated by the rspec_api_documentation gem"
s.homepage = "http://github.com/oestrich/raddocs"
s.license = "MIT"
s.required_rubygems_version = ">= 1.3.6"
s.add_runtime_dependency "sinatra", "~> 2.0"
s.add_runtime_dependency "haml", ">= 4.0"
s.add_runtime_dependency "json"
s.add_development_dependency "rspec", "~> 3.0"
s.add_development_dependency "rack-test", "~> 0.6"
s.add_development_dependency "capybara", "~> 2.3"
s.add_development_dependency "rake", "~> 10.0"
s.add_development_dependency "kramdown"
s.files = Dir.glob("lib/**/*")
s.require_path = 'lib'
end