-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathapi_docs.gemspec
More file actions
102 lines (97 loc) · 3.67 KB
/
api_docs.gemspec
File metadata and controls
102 lines (97 loc) · 3.67 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "api_docs"
s.version = "0.0.4"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Oleg Khabarov", "Jack Neto", "The Working Group Inc."]
s.date = "2012-09-11"
s.description = "Generate API documentation using integration tests in Ruby on Rails 3"
s.email = "jack@twg.ca"
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.files = [
"Gemfile",
"LICENSE",
"README.md",
"Rakefile",
"VERSION",
"api_docs.gemspec",
"app/assets/javascripts/api_docs.js",
"app/assets/stylesheets/api_docs.css",
"app/controllers/api_docs/docs_controller.rb",
"app/views/api_docs/docs/_action.html.erb",
"app/views/api_docs/docs/_request_params.html.erb",
"app/views/api_docs/docs/index.html.erb",
"config/routes.rb",
"lib/api_docs.rb",
"lib/api_docs/configuration.rb",
"lib/api_docs/engine.rb",
"lib/api_docs/test_helper.rb",
"script/rails",
"test/api_docs_test.rb",
"test/docs_controller_test.rb",
"test/dummy/README.rdoc",
"test/dummy/Rakefile",
"test/dummy/app/assets/images/glyphicons-halflings-white.png",
"test/dummy/app/assets/images/glyphicons-halflings.png",
"test/dummy/app/assets/javascripts/application.js",
"test/dummy/app/assets/javascripts/bootstrap.min.js",
"test/dummy/app/assets/stylesheets/application.css",
"test/dummy/app/assets/stylesheets/bootstrap.min.css",
"test/dummy/app/controllers/application_controller.rb",
"test/dummy/app/helpers/application_helper.rb",
"test/dummy/app/mailers/.gitkeep",
"test/dummy/app/models/.gitkeep",
"test/dummy/app/views/layouts/application.html.erb",
"test/dummy/config.ru",
"test/dummy/config/application.rb",
"test/dummy/config/boot.rb",
"test/dummy/config/environment.rb",
"test/dummy/config/environments/development.rb",
"test/dummy/config/environments/production.rb",
"test/dummy/config/environments/test.rb",
"test/dummy/config/initializers/backtrace_silencers.rb",
"test/dummy/config/initializers/inflections.rb",
"test/dummy/config/initializers/mime_types.rb",
"test/dummy/config/initializers/secret_token.rb",
"test/dummy/config/initializers/session_store.rb",
"test/dummy/config/initializers/wrap_parameters.rb",
"test/dummy/config/locales/en.yml",
"test/dummy/config/routes.rb",
"test/dummy/lib/assets/.gitkeep",
"test/dummy/log/.gitkeep",
"test/dummy/public/404.html",
"test/dummy/public/422.html",
"test/dummy/public/500.html",
"test/dummy/public/favicon.ico",
"test/dummy/script/rails",
"test/test_helper.rb",
"test/test_helper_test.rb"
]
s.homepage = "http://github.com/twg/api_docs"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.23"
s.summary = "Generate API documentation using integration tests in Ruby on Rails 3"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rails>, [">= 3.1.0"])
s.add_runtime_dependency(%q<jquery-rails>, [">= 0"])
s.add_development_dependency(%q<jeweler>, [">= 0"])
else
s.add_dependency(%q<rails>, [">= 3.1.0"])
s.add_dependency(%q<jquery-rails>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
end
else
s.add_dependency(%q<rails>, [">= 3.1.0"])
s.add_dependency(%q<jquery-rails>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
end
end