forked from zipmark/rspec_api_documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rspec_api_documentation.gemspec
34 lines (29 loc) · 1.35 KB
/
rspec_api_documentation.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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
Gem::Specification.new do |s|
s.name = "rspec_api_documentation"
s.version = "0.9.0"
s.platform = Gem::Platform::RUBY
s.authors = ["Chris Cahoon", "Sam Goldman", "Eric Oestrich"]
s.summary = "A double black belt for your docs"
s.description = "Generate API docs from your test suite"
s.homepage = "http://smartlogicsolutions.com"
s.required_rubygems_version = ">= 1.3.6"
# If adding, please consider gemfiles/minimum_dependencies
s.add_runtime_dependency "rspec", ">= 2.6.0"
s.add_runtime_dependency "activesupport", ">= 3.0.0"
s.add_runtime_dependency "i18n", ">= 0.1.0"
s.add_runtime_dependency "mustache", ">= 0.99.4"
s.add_runtime_dependency "webmock", ">= 1.7.0"
s.add_runtime_dependency "json", ">= 1.4.6"
s.add_development_dependency "fakefs"
s.add_development_dependency "sinatra"
s.add_development_dependency "aruba"
s.add_development_dependency "capybara"
s.add_development_dependency "rake"
s.add_development_dependency "rack-test", ">= 0.6.2"
s.add_development_dependency "rack-oauth2", ">= 0.14.4"
s.files = Dir.glob("lib/**/*") + Dir.glob("templates/**/*")
s.require_path = 'lib'
end