api_doc 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +19 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +95 -0
- data/LICENSE +22 -0
- data/README.md +29 -0
- data/Rakefile +2 -0
- data/api_doc.gemspec +19 -0
- data/app/assets/javascripts/api_doc/application.js +10 -0
- data/app/assets/javascripts/api_doc/bootstrap.js +6 -0
- data/app/assets/javascripts/api_doc/prettify/lang-apollo.js +2 -0
- data/app/assets/javascripts/api_doc/prettify/lang-clj.js +18 -0
- data/app/assets/javascripts/api_doc/prettify/lang-css.js +2 -0
- data/app/assets/javascripts/api_doc/prettify/lang-go.js +1 -0
- data/app/assets/javascripts/api_doc/prettify/lang-hs.js +2 -0
- data/app/assets/javascripts/api_doc/prettify/lang-lisp.js +3 -0
- data/app/assets/javascripts/api_doc/prettify/lang-lua.js +2 -0
- data/app/assets/javascripts/api_doc/prettify/lang-ml.js +2 -0
- data/app/assets/javascripts/api_doc/prettify/lang-n.js +4 -0
- data/app/assets/javascripts/api_doc/prettify/lang-proto.js +1 -0
- data/app/assets/javascripts/api_doc/prettify/lang-scala.js +2 -0
- data/app/assets/javascripts/api_doc/prettify/lang-sql.js +2 -0
- data/app/assets/javascripts/api_doc/prettify/lang-tex.js +1 -0
- data/app/assets/javascripts/api_doc/prettify/lang-vb.js +2 -0
- data/app/assets/javascripts/api_doc/prettify/lang-vhdl.js +3 -0
- data/app/assets/javascripts/api_doc/prettify/lang-wiki.js +2 -0
- data/app/assets/javascripts/api_doc/prettify/lang-xq.js +3 -0
- data/app/assets/javascripts/api_doc/prettify/lang-yaml.js +2 -0
- data/app/assets/javascripts/api_doc/prettify/prettify.css +1 -0
- data/app/assets/javascripts/api_doc/prettify/prettify.js +28 -0
- data/app/assets/stylesheets/api_doc/application.css.scss +22 -0
- data/app/assets/stylesheets/api_doc/bootstrap.css +9 -0
- data/app/assets/stylesheets/api_doc/prettify.css.scss +1 -0
- data/app/controllers/api_doc/application_controller.rb +4 -0
- data/app/controllers/api_doc/documents_controller.rb +19 -0
- data/app/helpers/api_doc/application_helper.rb +46 -0
- data/app/views/api_doc/documents/index.html.erb +0 -0
- data/app/views/api_doc/shared/_footer.html.erb +3 -0
- data/app/views/api_doc/shared/_nav_bar.html.erb +0 -0
- data/app/views/layouts/api_doc/application.html.erb +70 -0
- data/config/routes.rb +4 -0
- data/lib/api_doc/config.rb +27 -0
- data/lib/api_doc/document.rb +87 -0
- data/lib/api_doc/engine.rb +15 -0
- data/lib/api_doc/rspec.rb +21 -0
- data/lib/api_doc/templates/page.html.erb +63 -0
- data/lib/api_doc/version.rb +3 -0
- data/lib/api_doc.rb +20 -0
- data/lib/generators/api_doc/install_generator.rb +24 -0
- data/lib/generators/api_doc/templates/en.yml +9 -0
- data/lib/generators/api_doc/templates/index.html.erb +7 -0
- data/lib/tasks/api_doc_tasks.rake +10 -0
- metadata +134 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<div class='page-header'>
|
|
2
|
+
<h1>I can be found at app/views/api_doc/documents#index.html.erb</h1>
|
|
3
|
+
</div>
|
|
4
|
+
|
|
5
|
+
<div class='well'>
|
|
6
|
+
Strip steak drumstick t-bone jerky beef ribs. Drumstick ground round beef sausage, bacon strip steak t-bone jerky corned beef hamburger ball tip tenderloin. Shank turkey ham cow, shankle tail hamburger. Beef ribs sirloin ribeye, short loin venison strip steak t-bone. Tri-tip short ribs pork, shoulder short loin pancetta strip steak venison tail spare ribs cow sausage ham hock shankle. Pancetta ball tip pork chop chicken drumstick, ground round meatball strip steak. Turkey spare ribs meatball tongue, hamburger shankle jerky ball tip pork belly pork chop.
|
|
7
|
+
</div>
|
metadata
ADDED
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: api_doc
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.7
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Mark Bates
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2012-08-13 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: rails
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '3.2'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ! '>='
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '3.2'
|
|
30
|
+
- !ruby/object:Gem::Dependency
|
|
31
|
+
name: jquery-rails
|
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
|
33
|
+
none: false
|
|
34
|
+
requirements:
|
|
35
|
+
- - ! '>='
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: '0'
|
|
38
|
+
type: :runtime
|
|
39
|
+
prerelease: false
|
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ! '>='
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '0'
|
|
46
|
+
description: Automatically generates API documentation from RSpec tests
|
|
47
|
+
email:
|
|
48
|
+
- mark@markbates.com
|
|
49
|
+
executables: []
|
|
50
|
+
extensions: []
|
|
51
|
+
extra_rdoc_files: []
|
|
52
|
+
files:
|
|
53
|
+
- .gitignore
|
|
54
|
+
- Gemfile
|
|
55
|
+
- Gemfile.lock
|
|
56
|
+
- LICENSE
|
|
57
|
+
- README.md
|
|
58
|
+
- Rakefile
|
|
59
|
+
- api_doc.gemspec
|
|
60
|
+
- app/assets/javascripts/api_doc/application.js
|
|
61
|
+
- app/assets/javascripts/api_doc/bootstrap.js
|
|
62
|
+
- app/assets/javascripts/api_doc/prettify/lang-apollo.js
|
|
63
|
+
- app/assets/javascripts/api_doc/prettify/lang-clj.js
|
|
64
|
+
- app/assets/javascripts/api_doc/prettify/lang-css.js
|
|
65
|
+
- app/assets/javascripts/api_doc/prettify/lang-go.js
|
|
66
|
+
- app/assets/javascripts/api_doc/prettify/lang-hs.js
|
|
67
|
+
- app/assets/javascripts/api_doc/prettify/lang-lisp.js
|
|
68
|
+
- app/assets/javascripts/api_doc/prettify/lang-lua.js
|
|
69
|
+
- app/assets/javascripts/api_doc/prettify/lang-ml.js
|
|
70
|
+
- app/assets/javascripts/api_doc/prettify/lang-n.js
|
|
71
|
+
- app/assets/javascripts/api_doc/prettify/lang-proto.js
|
|
72
|
+
- app/assets/javascripts/api_doc/prettify/lang-scala.js
|
|
73
|
+
- app/assets/javascripts/api_doc/prettify/lang-sql.js
|
|
74
|
+
- app/assets/javascripts/api_doc/prettify/lang-tex.js
|
|
75
|
+
- app/assets/javascripts/api_doc/prettify/lang-vb.js
|
|
76
|
+
- app/assets/javascripts/api_doc/prettify/lang-vhdl.js
|
|
77
|
+
- app/assets/javascripts/api_doc/prettify/lang-wiki.js
|
|
78
|
+
- app/assets/javascripts/api_doc/prettify/lang-xq.js
|
|
79
|
+
- app/assets/javascripts/api_doc/prettify/lang-yaml.js
|
|
80
|
+
- app/assets/javascripts/api_doc/prettify/prettify.css
|
|
81
|
+
- app/assets/javascripts/api_doc/prettify/prettify.js
|
|
82
|
+
- app/assets/stylesheets/api_doc/application.css.scss
|
|
83
|
+
- app/assets/stylesheets/api_doc/bootstrap.css
|
|
84
|
+
- app/assets/stylesheets/api_doc/prettify.css.scss
|
|
85
|
+
- app/controllers/api_doc/application_controller.rb
|
|
86
|
+
- app/controllers/api_doc/documents_controller.rb
|
|
87
|
+
- app/helpers/api_doc/application_helper.rb
|
|
88
|
+
- app/views/api_doc/documents/index.html.erb
|
|
89
|
+
- app/views/api_doc/shared/_footer.html.erb
|
|
90
|
+
- app/views/api_doc/shared/_nav_bar.html.erb
|
|
91
|
+
- app/views/layouts/api_doc/application.html.erb
|
|
92
|
+
- config/routes.rb
|
|
93
|
+
- lib/api_doc.rb
|
|
94
|
+
- lib/api_doc/config.rb
|
|
95
|
+
- lib/api_doc/document.rb
|
|
96
|
+
- lib/api_doc/engine.rb
|
|
97
|
+
- lib/api_doc/rspec.rb
|
|
98
|
+
- lib/api_doc/templates/page.html.erb
|
|
99
|
+
- lib/api_doc/version.rb
|
|
100
|
+
- lib/generators/api_doc/install_generator.rb
|
|
101
|
+
- lib/generators/api_doc/templates/en.yml
|
|
102
|
+
- lib/generators/api_doc/templates/index.html.erb
|
|
103
|
+
- lib/tasks/api_doc_tasks.rake
|
|
104
|
+
homepage: ''
|
|
105
|
+
licenses: []
|
|
106
|
+
post_install_message:
|
|
107
|
+
rdoc_options: []
|
|
108
|
+
require_paths:
|
|
109
|
+
- lib
|
|
110
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
111
|
+
none: false
|
|
112
|
+
requirements:
|
|
113
|
+
- - ! '>='
|
|
114
|
+
- !ruby/object:Gem::Version
|
|
115
|
+
version: '0'
|
|
116
|
+
segments:
|
|
117
|
+
- 0
|
|
118
|
+
hash: 1961050336475124417
|
|
119
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
|
+
none: false
|
|
121
|
+
requirements:
|
|
122
|
+
- - ! '>='
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: '0'
|
|
125
|
+
segments:
|
|
126
|
+
- 0
|
|
127
|
+
hash: 1961050336475124417
|
|
128
|
+
requirements: []
|
|
129
|
+
rubyforge_project:
|
|
130
|
+
rubygems_version: 1.8.24
|
|
131
|
+
signing_key:
|
|
132
|
+
specification_version: 3
|
|
133
|
+
summary: Automatically generates API documentation from RSpec tests
|
|
134
|
+
test_files: []
|