jfish 0.1.0

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.
Files changed (62) hide show
  1. checksums.yaml +7 -0
  2. data/.document +3 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE +26 -0
  5. data/README.md +57 -0
  6. data/README.rdoc +19 -0
  7. data/Rakefile +11 -0
  8. data/VERSION +1 -0
  9. data/jfish.gemspec +38 -0
  10. data/lib/jfish.rb +720 -0
  11. data/lib/template/jfish/_footer.rhtml +5 -0
  12. data/lib/template/jfish/_head.rhtml +16 -0
  13. data/lib/template/jfish/_sidebar_VCS_info.rhtml +18 -0
  14. data/lib/template/jfish/_sidebar_classes.rhtml +9 -0
  15. data/lib/template/jfish/_sidebar_extends.rhtml +16 -0
  16. data/lib/template/jfish/_sidebar_in_files.rhtml +8 -0
  17. data/lib/template/jfish/_sidebar_includes.rhtml +16 -0
  18. data/lib/template/jfish/_sidebar_installed.rhtml +14 -0
  19. data/lib/template/jfish/_sidebar_methods.rhtml +12 -0
  20. data/lib/template/jfish/_sidebar_navigation.rhtml +10 -0
  21. data/lib/template/jfish/_sidebar_pages.rhtml +12 -0
  22. data/lib/template/jfish/_sidebar_parent.rhtml +10 -0
  23. data/lib/template/jfish/_sidebar_search.rhtml +10 -0
  24. data/lib/template/jfish/_sidebar_sections.rhtml +10 -0
  25. data/lib/template/jfish/_sidebar_table_of_contents.rhtml +19 -0
  26. data/lib/template/jfish/class.rhtml +179 -0
  27. data/lib/template/jfish/images/add.png +0 -0
  28. data/lib/template/jfish/images/arrow_up.png +0 -0
  29. data/lib/template/jfish/images/brick.png +0 -0
  30. data/lib/template/jfish/images/brick_link.png +0 -0
  31. data/lib/template/jfish/images/bug.png +0 -0
  32. data/lib/template/jfish/images/bullet_black.png +0 -0
  33. data/lib/template/jfish/images/bullet_toggle_minus.png +0 -0
  34. data/lib/template/jfish/images/bullet_toggle_plus.png +0 -0
  35. data/lib/template/jfish/images/date.png +0 -0
  36. data/lib/template/jfish/images/delete.png +0 -0
  37. data/lib/template/jfish/images/find.png +0 -0
  38. data/lib/template/jfish/images/loadingAnimation.gif +0 -0
  39. data/lib/template/jfish/images/logo.png +0 -0
  40. data/lib/template/jfish/images/macFFBgHack.png +0 -0
  41. data/lib/template/jfish/images/package.png +0 -0
  42. data/lib/template/jfish/images/page_green.png +0 -0
  43. data/lib/template/jfish/images/page_white_text.png +0 -0
  44. data/lib/template/jfish/images/page_white_width.png +0 -0
  45. data/lib/template/jfish/images/plugin.png +0 -0
  46. data/lib/template/jfish/images/ruby.png +0 -0
  47. data/lib/template/jfish/images/tag_blue.png +0 -0
  48. data/lib/template/jfish/images/tag_green.png +0 -0
  49. data/lib/template/jfish/images/transparent.png +0 -0
  50. data/lib/template/jfish/images/wrench.png +0 -0
  51. data/lib/template/jfish/images/wrench_orange.png +0 -0
  52. data/lib/template/jfish/images/zoom.png +0 -0
  53. data/lib/template/jfish/index.rhtml +19 -0
  54. data/lib/template/jfish/js/darkfish.js +155 -0
  55. data/lib/template/jfish/js/jquery.js +18 -0
  56. data/lib/template/jfish/js/search.js +94 -0
  57. data/lib/template/jfish/page.rhtml +18 -0
  58. data/lib/template/jfish/rdoc.css +557 -0
  59. data/lib/template/jfish/servlet_not_found.rhtml +18 -0
  60. data/lib/template/jfish/servlet_root.rhtml +37 -0
  61. data/lib/template/jfish/table_of_contents.rhtml +55 -0
  62. metadata +135 -0
metadata ADDED
@@ -0,0 +1,135 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jfish
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Jean Lescure
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-02-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rdoc
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 4.0.0
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 4.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '1.0'
41
+ description: This RDoc Generator was forked from RDoc's own JFish template and made
42
+ into a Gem for easy consumption.
43
+ email: jeanmlescure@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files:
47
+ - LICENSE
48
+ - README.md
49
+ - README.rdoc
50
+ files:
51
+ - lib/jfish.rb
52
+ - lib/template/jfish/class.rhtml
53
+ - lib/template/jfish/images/add.png
54
+ - lib/template/jfish/images/arrow_up.png
55
+ - lib/template/jfish/images/brick.png
56
+ - lib/template/jfish/images/brick_link.png
57
+ - lib/template/jfish/images/bug.png
58
+ - lib/template/jfish/images/bullet_black.png
59
+ - lib/template/jfish/images/bullet_toggle_minus.png
60
+ - lib/template/jfish/images/bullet_toggle_plus.png
61
+ - lib/template/jfish/images/date.png
62
+ - lib/template/jfish/images/delete.png
63
+ - lib/template/jfish/images/find.png
64
+ - lib/template/jfish/images/loadingAnimation.gif
65
+ - lib/template/jfish/images/logo.png
66
+ - lib/template/jfish/images/macFFBgHack.png
67
+ - lib/template/jfish/images/package.png
68
+ - lib/template/jfish/images/page_green.png
69
+ - lib/template/jfish/images/page_white_text.png
70
+ - lib/template/jfish/images/page_white_width.png
71
+ - lib/template/jfish/images/plugin.png
72
+ - lib/template/jfish/images/ruby.png
73
+ - lib/template/jfish/images/tag_blue.png
74
+ - lib/template/jfish/images/tag_green.png
75
+ - lib/template/jfish/images/transparent.png
76
+ - lib/template/jfish/images/wrench.png
77
+ - lib/template/jfish/images/wrench_orange.png
78
+ - lib/template/jfish/images/zoom.png
79
+ - lib/template/jfish/index.rhtml
80
+ - lib/template/jfish/js/darkfish.js
81
+ - lib/template/jfish/js/jquery.js
82
+ - lib/template/jfish/js/search.js
83
+ - lib/template/jfish/page.rhtml
84
+ - lib/template/jfish/rdoc.css
85
+ - lib/template/jfish/servlet_not_found.rhtml
86
+ - lib/template/jfish/servlet_root.rhtml
87
+ - lib/template/jfish/table_of_contents.rhtml
88
+ - lib/template/jfish/_footer.rhtml
89
+ - lib/template/jfish/_head.rhtml
90
+ - lib/template/jfish/_sidebar_classes.rhtml
91
+ - lib/template/jfish/_sidebar_extends.rhtml
92
+ - lib/template/jfish/_sidebar_includes.rhtml
93
+ - lib/template/jfish/_sidebar_installed.rhtml
94
+ - lib/template/jfish/_sidebar_in_files.rhtml
95
+ - lib/template/jfish/_sidebar_methods.rhtml
96
+ - lib/template/jfish/_sidebar_navigation.rhtml
97
+ - lib/template/jfish/_sidebar_pages.rhtml
98
+ - lib/template/jfish/_sidebar_parent.rhtml
99
+ - lib/template/jfish/_sidebar_search.rhtml
100
+ - lib/template/jfish/_sidebar_sections.rhtml
101
+ - lib/template/jfish/_sidebar_table_of_contents.rhtml
102
+ - lib/template/jfish/_sidebar_VCS_info.rhtml
103
+ - .document
104
+ - Gemfile
105
+ - LICENSE
106
+ - README.md
107
+ - Rakefile
108
+ - VERSION
109
+ - jfish.gemspec
110
+ - README.rdoc
111
+ homepage: http://github.com/jeanlescure/jfish
112
+ licenses:
113
+ - MIT
114
+ metadata: {}
115
+ post_install_message:
116
+ rdoc_options: []
117
+ require_paths:
118
+ - lib
119
+ required_ruby_version: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - '>='
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ required_rubygems_version: !ruby/object:Gem::Requirement
125
+ requirements:
126
+ - - '>='
127
+ - !ruby/object:Gem::Version
128
+ version: '0'
129
+ requirements: []
130
+ rubyforge_project:
131
+ rubygems_version: 2.0.14
132
+ signing_key:
133
+ specification_version: 4
134
+ summary: RDoc Generator based on JFish
135
+ test_files: []