mongoid-forums 0.0.1

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 (205) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +35 -0
  4. data/app/assets/javascripts/mongoid_forums/admin/base.js +2 -0
  5. data/app/assets/javascripts/mongoid_forums/admin/categories.js +2 -0
  6. data/app/assets/javascripts/mongoid_forums/admin/forums.js +2 -0
  7. data/app/assets/javascripts/mongoid_forums/application.js +13 -0
  8. data/app/assets/javascripts/mongoid_forums/forums.js +2 -0
  9. data/app/assets/javascripts/mongoid_forums/posts.js +2 -0
  10. data/app/assets/javascripts/mongoid_forums/topics.js +2 -0
  11. data/app/assets/stylesheets/mongoid_forums/admin/base.css +4 -0
  12. data/app/assets/stylesheets/mongoid_forums/admin/categories.css +4 -0
  13. data/app/assets/stylesheets/mongoid_forums/admin/forums.css +4 -0
  14. data/app/assets/stylesheets/mongoid_forums/application.css +15 -0
  15. data/app/assets/stylesheets/mongoid_forums/forums.css +4 -0
  16. data/app/assets/stylesheets/mongoid_forums/posts.css +4 -0
  17. data/app/assets/stylesheets/mongoid_forums/topics.css +4 -0
  18. data/app/assets/stylesheets/scaffold.css +56 -0
  19. data/app/controllers/mongoid_forums/admin/base_controller.rb +11 -0
  20. data/app/controllers/mongoid_forums/admin/categories_controller.rb +36 -0
  21. data/app/controllers/mongoid_forums/admin/forums_controller.rb +36 -0
  22. data/app/controllers/mongoid_forums/application_controller.rb +45 -0
  23. data/app/controllers/mongoid_forums/forums_controller.rb +57 -0
  24. data/app/controllers/mongoid_forums/posts_controller.rb +75 -0
  25. data/app/controllers/mongoid_forums/redirect_controller.rb +33 -0
  26. data/app/controllers/mongoid_forums/topics_controller.rb +84 -0
  27. data/app/helpers/mongoid_forums/admin/base_helper.rb +4 -0
  28. data/app/helpers/mongoid_forums/admin/categories_helper.rb +4 -0
  29. data/app/helpers/mongoid_forums/admin/forums_helper.rb +4 -0
  30. data/app/helpers/mongoid_forums/application_helper.rb +20 -0
  31. data/app/helpers/mongoid_forums/formatting_helper.rb +28 -0
  32. data/app/helpers/mongoid_forums/forums_helper.rb +15 -0
  33. data/app/helpers/mongoid_forums/posts_helper.rb +4 -0
  34. data/app/helpers/mongoid_forums/topics_helper.rb +4 -0
  35. data/app/models/mongoid_forums/alert.rb +80 -0
  36. data/app/models/mongoid_forums/category.rb +13 -0
  37. data/app/models/mongoid_forums/concerns/subscribable.rb +76 -0
  38. data/app/models/mongoid_forums/concerns/viewable.rb +60 -0
  39. data/app/models/mongoid_forums/forum.rb +42 -0
  40. data/app/models/mongoid_forums/permission.rb +95 -0
  41. data/app/models/mongoid_forums/post.rb +37 -0
  42. data/app/models/mongoid_forums/rank.rb +9 -0
  43. data/app/models/mongoid_forums/subscription.rb +66 -0
  44. data/app/models/mongoid_forums/topic.rb +45 -0
  45. data/app/models/mongoid_forums/view.rb +30 -0
  46. data/app/views/layouts/mongoid_forums/application.haml +21 -0
  47. data/app/views/mongoid_forums/admin/base/index.haml +4 -0
  48. data/app/views/mongoid_forums/admin/categories/edit.html.erb +2 -0
  49. data/app/views/mongoid_forums/admin/categories/new.haml +3 -0
  50. data/app/views/mongoid_forums/admin/forums/edit.html.erb +2 -0
  51. data/app/views/mongoid_forums/admin/forums/new.haml +4 -0
  52. data/app/views/mongoid_forums/forums/index.haml +43 -0
  53. data/app/views/mongoid_forums/forums/new.haml +15 -0
  54. data/app/views/mongoid_forums/forums/show.haml +43 -0
  55. data/app/views/mongoid_forums/posts/_form.haml +4 -0
  56. data/app/views/mongoid_forums/posts/_post.haml +20 -0
  57. data/app/views/mongoid_forums/posts/_quoted.haml +9 -0
  58. data/app/views/mongoid_forums/posts/edit.haml +17 -0
  59. data/app/views/mongoid_forums/posts/new.haml +17 -0
  60. data/app/views/mongoid_forums/topics/_topic.haml +2 -0
  61. data/app/views/mongoid_forums/topics/my_posts.haml +6 -0
  62. data/app/views/mongoid_forums/topics/my_subscriptions.haml +5 -0
  63. data/app/views/mongoid_forums/topics/my_topics.haml +6 -0
  64. data/app/views/mongoid_forums/topics/show.haml +12 -0
  65. data/config/routes.rb +40 -0
  66. data/lib/generators/mongoid_forums/install/templates/initializer.rb +5 -0
  67. data/lib/generators/mongoid_forums/install_generator.rb +101 -0
  68. data/lib/generators/mongoid_forums/views_generator.rb +27 -0
  69. data/lib/mongoid_forums/engine.rb +15 -0
  70. data/lib/mongoid_forums/sanitizer.rb +10 -0
  71. data/lib/mongoid_forums/version.rb +3 -0
  72. data/lib/mongoid_forums.rb +40 -0
  73. data/lib/tasks/mongoid_forums_tasks.rake +4 -0
  74. data/test/controllers/mongoid_forums/admin/base_controller_test.rb +11 -0
  75. data/test/controllers/mongoid_forums/admin/categories_controller_test.rb +31 -0
  76. data/test/controllers/mongoid_forums/admin/forums_controller_test.rb +31 -0
  77. data/test/controllers/mongoid_forums/forums_controller_test.rb +16 -0
  78. data/test/controllers/mongoid_forums/posts_controller_test.rb +36 -0
  79. data/test/controllers/mongoid_forums/topics_controller_test.rb +36 -0
  80. data/test/dummy/README.rdoc +28 -0
  81. data/test/dummy/Rakefile +6 -0
  82. data/test/dummy/app/assets/javascripts/application.js +13 -0
  83. data/test/dummy/app/assets/javascripts/welcome.js +2 -0
  84. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  85. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  86. data/test/dummy/app/assets/stylesheets/welcome.css +4 -0
  87. data/test/dummy/app/controllers/application_controller.rb +11 -0
  88. data/test/dummy/app/controllers/welcome_controller.rb +4 -0
  89. data/test/dummy/app/helpers/application_helper.rb +2 -0
  90. data/test/dummy/app/helpers/welcome_helper.rb +2 -0
  91. data/test/dummy/app/models/concerns/zero_oid_fix.rb +10 -0
  92. data/test/dummy/app/models/user.rb +43 -0
  93. data/test/dummy/app/views/layouts/application.haml +13 -0
  94. data/test/dummy/app/views/partials/_nav.haml +6 -0
  95. data/test/dummy/app/views/welcome/index.html.erb +2 -0
  96. data/test/dummy/bin/bundle +3 -0
  97. data/test/dummy/bin/rails +4 -0
  98. data/test/dummy/bin/rake +4 -0
  99. data/test/dummy/bin/setup +29 -0
  100. data/test/dummy/config/application.rb +29 -0
  101. data/test/dummy/config/boot.rb +5 -0
  102. data/test/dummy/config/environment.rb +5 -0
  103. data/test/dummy/config/environments/development.rb +41 -0
  104. data/test/dummy/config/environments/production.rb +76 -0
  105. data/test/dummy/config/environments/test.rb +42 -0
  106. data/test/dummy/config/initializers/assets.rb +11 -0
  107. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  108. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  109. data/test/dummy/config/initializers/devise.rb +259 -0
  110. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  111. data/test/dummy/config/initializers/inflections.rb +16 -0
  112. data/test/dummy/config/initializers/kaminari_config.rb +10 -0
  113. data/test/dummy/config/initializers/mime_types.rb +4 -0
  114. data/test/dummy/config/initializers/mongoid_forums.rb +5 -0
  115. data/test/dummy/config/initializers/session_store.rb +3 -0
  116. data/test/dummy/config/initializers/simple_form.rb +166 -0
  117. data/test/dummy/config/initializers/wrap_parameters.rb +9 -0
  118. data/test/dummy/config/locales/devise.en.yml +60 -0
  119. data/test/dummy/config/locales/en.yml +23 -0
  120. data/test/dummy/config/locales/simple_form.en.yml +31 -0
  121. data/test/dummy/config/mongoid.yml +69 -0
  122. data/test/dummy/config/routes.rb +8 -0
  123. data/test/dummy/config/secrets.yml +22 -0
  124. data/test/dummy/config.ru +4 -0
  125. data/test/dummy/lib/templates/erb/scaffold/_form.html.erb +13 -0
  126. data/test/dummy/log/development.log +152624 -0
  127. data/test/dummy/log/test.log +51 -0
  128. data/test/dummy/public/404.html +67 -0
  129. data/test/dummy/public/422.html +67 -0
  130. data/test/dummy/public/500.html +66 -0
  131. data/test/dummy/public/favicon.ico +0 -0
  132. data/test/dummy/test/controllers/welcome_controller_test.rb +9 -0
  133. data/test/dummy/test/fixtures/users.yml +11 -0
  134. data/test/dummy/test/models/user_test.rb +7 -0
  135. data/test/dummy/tmp/cache/assets/development/sprockets/0405ebcb982faa24d5a9bbe01ba43bf8 +0 -0
  136. data/test/dummy/tmp/cache/assets/development/sprockets/04b994ecf135576af395f1d87108f0e1 +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sprockets/0532538bff94834533de08d16379c66f +0 -0
  138. data/test/dummy/tmp/cache/assets/development/sprockets/063d0c765cb2fe0a6fa3995059d65fcc +0 -0
  139. data/test/dummy/tmp/cache/assets/development/sprockets/0a395daf2ed2bad0174008f223997c21 +0 -0
  140. data/test/dummy/tmp/cache/assets/development/sprockets/0a4181c6e19406e1c40781394b0f7496 +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sprockets/0f520169da88dbfbdd5b5f40cb5acc80 +0 -0
  142. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sprockets/1b516e1e4f37dd27b32d035c2c825de7 +0 -0
  144. data/test/dummy/tmp/cache/assets/development/sprockets/1d1293f6abfd57a3035ab25a567fe43e +0 -0
  145. data/test/dummy/tmp/cache/assets/development/sprockets/25a167c7563d6fe8ec6b13ec1ac09274 +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sprockets/268f4f56598234185d91373d61899b3f +0 -0
  147. data/test/dummy/tmp/cache/assets/development/sprockets/26ce0653a8cb3da5990ace16181dbd63 +0 -0
  148. data/test/dummy/tmp/cache/assets/development/sprockets/2dedb8177c20286c4259c1d58c5646cc +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  150. data/test/dummy/tmp/cache/assets/development/sprockets/2fda08fb2ff79ca1dd653c3b688c1651 +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sprockets/30d0258c36708f3d7911d6ba2303aaad +0 -0
  152. data/test/dummy/tmp/cache/assets/development/sprockets/311da47a66243f663a4557a7e9997796 +0 -0
  153. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  154. data/test/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
  155. data/test/dummy/tmp/cache/assets/development/sprockets/37b103f4623089af1456b90830fe941c +0 -0
  156. data/test/dummy/tmp/cache/assets/development/sprockets/37f7e269b2ddbd05160232e59bf0288f +0 -0
  157. data/test/dummy/tmp/cache/assets/development/sprockets/408e554cb00cbb09ae89a1e7ac45ea4f +0 -0
  158. data/test/dummy/tmp/cache/assets/development/sprockets/41f10e590485de7db44ca61e32c135ea +0 -0
  159. data/test/dummy/tmp/cache/assets/development/sprockets/45e716730a5c02112d5817e1b8faa1a0 +0 -0
  160. data/test/dummy/tmp/cache/assets/development/sprockets/4acd6b11130459cfdf814caad7638e95 +0 -0
  161. data/test/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5 +0 -0
  162. data/test/dummy/tmp/cache/assets/development/sprockets/60f651a96095c10f531bd7bf9a14beb5 +0 -0
  163. data/test/dummy/tmp/cache/assets/development/sprockets/6b12ee5284cadf70954a584a88b6c529 +0 -0
  164. data/test/dummy/tmp/cache/assets/development/sprockets/6be29bb8e609ed29aaa3a6d4a04a9ae0 +0 -0
  165. data/test/dummy/tmp/cache/assets/development/sprockets/6cef1e9aec64b514669e261e511dc792 +0 -0
  166. data/test/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
  167. data/test/dummy/tmp/cache/assets/development/sprockets/76dc342539f7133a15b70b919f77425a +0 -0
  168. data/test/dummy/tmp/cache/assets/development/sprockets/873adae1bf2f532256c8ffe71a557df5 +0 -0
  169. data/test/dummy/tmp/cache/assets/development/sprockets/8d7f8b5066922abfdf12e8cf0a7f2f0e +0 -0
  170. data/test/dummy/tmp/cache/assets/development/sprockets/948b1a4ef7d3401c10fc537c40b56a1e +0 -0
  171. data/test/dummy/tmp/cache/assets/development/sprockets/99d8deee7a422780b297ca618f4062c8 +0 -0
  172. data/test/dummy/tmp/cache/assets/development/sprockets/9d4262e6cd4898fd1df7f51b2d3e5c92 +0 -0
  173. data/test/dummy/tmp/cache/assets/development/sprockets/9e611bdf180a46600cc5019392a1b561 +0 -0
  174. data/test/dummy/tmp/cache/assets/development/sprockets/ab4dfca9c17bc07c2fce0127b5d9669f +0 -0
  175. data/test/dummy/tmp/cache/assets/development/sprockets/af01a98a48fa1ebf1d65f0429ba2bb28 +0 -0
  176. data/test/dummy/tmp/cache/assets/development/sprockets/bc0c996f7ce50479170183c13af2d29d +0 -0
  177. data/test/dummy/tmp/cache/assets/development/sprockets/beeaeba29291235e532fb452d94795b3 +0 -0
  178. data/test/dummy/tmp/cache/assets/development/sprockets/cc040cf4f4539a12745d02867976f5ba +0 -0
  179. data/test/dummy/tmp/cache/assets/development/sprockets/ce30207f8949b0e3a822f6094bd31dcc +0 -0
  180. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  181. data/test/dummy/tmp/cache/assets/development/sprockets/d675d8a6b14078d1fc331870b4992050 +0 -0
  182. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  183. data/test/dummy/tmp/cache/assets/development/sprockets/daba24276ab6f3be739a0385f977df1c +0 -0
  184. data/test/dummy/tmp/cache/assets/development/sprockets/df5f9fbb250c939b0513aa2a35b4855b +0 -0
  185. data/test/dummy/tmp/cache/assets/development/sprockets/e22980ed174c68b2505214836a40e271 +0 -0
  186. data/test/dummy/tmp/cache/assets/development/sprockets/e2c4f946939f2d7d0b42d86383755cae +0 -0
  187. data/test/dummy/tmp/cache/assets/development/sprockets/e6a87270f3b0e8a73bcec17322694b61 +0 -0
  188. data/test/dummy/tmp/cache/assets/development/sprockets/e95bb3887fb84a7d966c0fc7c4e087fd +0 -0
  189. data/test/dummy/tmp/cache/assets/development/sprockets/eaa7a7fe023d19cd34c33a47e6b303f3 +0 -0
  190. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  191. data/test/dummy/tmp/cache/assets/development/sprockets/f91f775cd15edae9264ec0c23937c58b +0 -0
  192. data/test/fixtures/mongoid_forums/categories.yml +11 -0
  193. data/test/fixtures/mongoid_forums/forums.yml +11 -0
  194. data/test/fixtures/mongoid_forums/posts.yml +11 -0
  195. data/test/fixtures/mongoid_forums/ranks.yml +11 -0
  196. data/test/fixtures/mongoid_forums/topics.yml +11 -0
  197. data/test/integration/navigation_test.rb +9 -0
  198. data/test/models/mongoid_forums/category_test.rb +9 -0
  199. data/test/models/mongoid_forums/forum_test.rb +9 -0
  200. data/test/models/mongoid_forums/post_test.rb +9 -0
  201. data/test/models/mongoid_forums/rank_test.rb +9 -0
  202. data/test/models/mongoid_forums/topic_test.rb +9 -0
  203. data/test/mongoid_forums_test.rb +7 -0
  204. data/test/test_helper.rb +17 -0
  205. metadata +491 -0
metadata ADDED
@@ -0,0 +1,491 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mongoid-forums
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - skipperguy12
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-01-18 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 4.2.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 4.2.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: mongoid
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '='
32
+ - !ruby/object:Gem::Version
33
+ version: 4.0.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '='
39
+ - !ruby/object:Gem::Version
40
+ version: 4.0.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: devise
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '='
46
+ - !ruby/object:Gem::Version
47
+ version: 3.4.1
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '='
53
+ - !ruby/object:Gem::Version
54
+ version: 3.4.1
55
+ - !ruby/object:Gem::Dependency
56
+ name: simple_form
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: kaminari
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '='
74
+ - !ruby/object:Gem::Version
75
+ version: 0.15.1
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '='
81
+ - !ruby/object:Gem::Version
82
+ version: 0.15.1
83
+ - !ruby/object:Gem::Dependency
84
+ name: sanitize
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '='
88
+ - !ruby/object:Gem::Version
89
+ version: 2.0.6
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '='
95
+ - !ruby/object:Gem::Version
96
+ version: 2.0.6
97
+ - !ruby/object:Gem::Dependency
98
+ name: haml
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: pry-rails
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ description:
126
+ email:
127
+ - skipperguy12@users.noreply.github.com
128
+ executables: []
129
+ extensions: []
130
+ extra_rdoc_files: []
131
+ files:
132
+ - MIT-LICENSE
133
+ - Rakefile
134
+ - app/assets/javascripts/mongoid_forums/admin/base.js
135
+ - app/assets/javascripts/mongoid_forums/admin/categories.js
136
+ - app/assets/javascripts/mongoid_forums/admin/forums.js
137
+ - app/assets/javascripts/mongoid_forums/application.js
138
+ - app/assets/javascripts/mongoid_forums/forums.js
139
+ - app/assets/javascripts/mongoid_forums/posts.js
140
+ - app/assets/javascripts/mongoid_forums/topics.js
141
+ - app/assets/stylesheets/mongoid_forums/admin/base.css
142
+ - app/assets/stylesheets/mongoid_forums/admin/categories.css
143
+ - app/assets/stylesheets/mongoid_forums/admin/forums.css
144
+ - app/assets/stylesheets/mongoid_forums/application.css
145
+ - app/assets/stylesheets/mongoid_forums/forums.css
146
+ - app/assets/stylesheets/mongoid_forums/posts.css
147
+ - app/assets/stylesheets/mongoid_forums/topics.css
148
+ - app/assets/stylesheets/scaffold.css
149
+ - app/controllers/mongoid_forums/admin/base_controller.rb
150
+ - app/controllers/mongoid_forums/admin/categories_controller.rb
151
+ - app/controllers/mongoid_forums/admin/forums_controller.rb
152
+ - app/controllers/mongoid_forums/application_controller.rb
153
+ - app/controllers/mongoid_forums/forums_controller.rb
154
+ - app/controllers/mongoid_forums/posts_controller.rb
155
+ - app/controllers/mongoid_forums/redirect_controller.rb
156
+ - app/controllers/mongoid_forums/topics_controller.rb
157
+ - app/helpers/mongoid_forums/admin/base_helper.rb
158
+ - app/helpers/mongoid_forums/admin/categories_helper.rb
159
+ - app/helpers/mongoid_forums/admin/forums_helper.rb
160
+ - app/helpers/mongoid_forums/application_helper.rb
161
+ - app/helpers/mongoid_forums/formatting_helper.rb
162
+ - app/helpers/mongoid_forums/forums_helper.rb
163
+ - app/helpers/mongoid_forums/posts_helper.rb
164
+ - app/helpers/mongoid_forums/topics_helper.rb
165
+ - app/models/mongoid_forums/alert.rb
166
+ - app/models/mongoid_forums/category.rb
167
+ - app/models/mongoid_forums/concerns/subscribable.rb
168
+ - app/models/mongoid_forums/concerns/viewable.rb
169
+ - app/models/mongoid_forums/forum.rb
170
+ - app/models/mongoid_forums/permission.rb
171
+ - app/models/mongoid_forums/post.rb
172
+ - app/models/mongoid_forums/rank.rb
173
+ - app/models/mongoid_forums/subscription.rb
174
+ - app/models/mongoid_forums/topic.rb
175
+ - app/models/mongoid_forums/view.rb
176
+ - app/views/layouts/mongoid_forums/application.haml
177
+ - app/views/mongoid_forums/admin/base/index.haml
178
+ - app/views/mongoid_forums/admin/categories/edit.html.erb
179
+ - app/views/mongoid_forums/admin/categories/new.haml
180
+ - app/views/mongoid_forums/admin/forums/edit.html.erb
181
+ - app/views/mongoid_forums/admin/forums/new.haml
182
+ - app/views/mongoid_forums/forums/index.haml
183
+ - app/views/mongoid_forums/forums/new.haml
184
+ - app/views/mongoid_forums/forums/show.haml
185
+ - app/views/mongoid_forums/posts/_form.haml
186
+ - app/views/mongoid_forums/posts/_post.haml
187
+ - app/views/mongoid_forums/posts/_quoted.haml
188
+ - app/views/mongoid_forums/posts/edit.haml
189
+ - app/views/mongoid_forums/posts/new.haml
190
+ - app/views/mongoid_forums/topics/_topic.haml
191
+ - app/views/mongoid_forums/topics/my_posts.haml
192
+ - app/views/mongoid_forums/topics/my_subscriptions.haml
193
+ - app/views/mongoid_forums/topics/my_topics.haml
194
+ - app/views/mongoid_forums/topics/show.haml
195
+ - config/routes.rb
196
+ - lib/generators/mongoid_forums/install/templates/initializer.rb
197
+ - lib/generators/mongoid_forums/install_generator.rb
198
+ - lib/generators/mongoid_forums/views_generator.rb
199
+ - lib/mongoid_forums.rb
200
+ - lib/mongoid_forums/engine.rb
201
+ - lib/mongoid_forums/sanitizer.rb
202
+ - lib/mongoid_forums/version.rb
203
+ - lib/tasks/mongoid_forums_tasks.rake
204
+ - test/controllers/mongoid_forums/admin/base_controller_test.rb
205
+ - test/controllers/mongoid_forums/admin/categories_controller_test.rb
206
+ - test/controllers/mongoid_forums/admin/forums_controller_test.rb
207
+ - test/controllers/mongoid_forums/forums_controller_test.rb
208
+ - test/controllers/mongoid_forums/posts_controller_test.rb
209
+ - test/controllers/mongoid_forums/topics_controller_test.rb
210
+ - test/dummy/README.rdoc
211
+ - test/dummy/Rakefile
212
+ - test/dummy/app/assets/javascripts/application.js
213
+ - test/dummy/app/assets/javascripts/welcome.js
214
+ - test/dummy/app/assets/stylesheets/application.css
215
+ - test/dummy/app/assets/stylesheets/scaffold.css
216
+ - test/dummy/app/assets/stylesheets/welcome.css
217
+ - test/dummy/app/controllers/application_controller.rb
218
+ - test/dummy/app/controllers/welcome_controller.rb
219
+ - test/dummy/app/helpers/application_helper.rb
220
+ - test/dummy/app/helpers/welcome_helper.rb
221
+ - test/dummy/app/models/concerns/zero_oid_fix.rb
222
+ - test/dummy/app/models/user.rb
223
+ - test/dummy/app/views/layouts/application.haml
224
+ - test/dummy/app/views/partials/_nav.haml
225
+ - test/dummy/app/views/welcome/index.html.erb
226
+ - test/dummy/bin/bundle
227
+ - test/dummy/bin/rails
228
+ - test/dummy/bin/rake
229
+ - test/dummy/bin/setup
230
+ - test/dummy/config.ru
231
+ - test/dummy/config/application.rb
232
+ - test/dummy/config/boot.rb
233
+ - test/dummy/config/environment.rb
234
+ - test/dummy/config/environments/development.rb
235
+ - test/dummy/config/environments/production.rb
236
+ - test/dummy/config/environments/test.rb
237
+ - test/dummy/config/initializers/assets.rb
238
+ - test/dummy/config/initializers/backtrace_silencers.rb
239
+ - test/dummy/config/initializers/cookies_serializer.rb
240
+ - test/dummy/config/initializers/devise.rb
241
+ - test/dummy/config/initializers/filter_parameter_logging.rb
242
+ - test/dummy/config/initializers/inflections.rb
243
+ - test/dummy/config/initializers/kaminari_config.rb
244
+ - test/dummy/config/initializers/mime_types.rb
245
+ - test/dummy/config/initializers/mongoid_forums.rb
246
+ - test/dummy/config/initializers/session_store.rb
247
+ - test/dummy/config/initializers/simple_form.rb
248
+ - test/dummy/config/initializers/wrap_parameters.rb
249
+ - test/dummy/config/locales/devise.en.yml
250
+ - test/dummy/config/locales/en.yml
251
+ - test/dummy/config/locales/simple_form.en.yml
252
+ - test/dummy/config/mongoid.yml
253
+ - test/dummy/config/routes.rb
254
+ - test/dummy/config/secrets.yml
255
+ - test/dummy/lib/templates/erb/scaffold/_form.html.erb
256
+ - test/dummy/log/development.log
257
+ - test/dummy/log/test.log
258
+ - test/dummy/public/404.html
259
+ - test/dummy/public/422.html
260
+ - test/dummy/public/500.html
261
+ - test/dummy/public/favicon.ico
262
+ - test/dummy/test/controllers/welcome_controller_test.rb
263
+ - test/dummy/test/fixtures/users.yml
264
+ - test/dummy/test/models/user_test.rb
265
+ - test/dummy/tmp/cache/assets/development/sprockets/0405ebcb982faa24d5a9bbe01ba43bf8
266
+ - test/dummy/tmp/cache/assets/development/sprockets/04b994ecf135576af395f1d87108f0e1
267
+ - test/dummy/tmp/cache/assets/development/sprockets/0532538bff94834533de08d16379c66f
268
+ - test/dummy/tmp/cache/assets/development/sprockets/063d0c765cb2fe0a6fa3995059d65fcc
269
+ - test/dummy/tmp/cache/assets/development/sprockets/0a395daf2ed2bad0174008f223997c21
270
+ - test/dummy/tmp/cache/assets/development/sprockets/0a4181c6e19406e1c40781394b0f7496
271
+ - test/dummy/tmp/cache/assets/development/sprockets/0f520169da88dbfbdd5b5f40cb5acc80
272
+ - test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
273
+ - test/dummy/tmp/cache/assets/development/sprockets/1b516e1e4f37dd27b32d035c2c825de7
274
+ - test/dummy/tmp/cache/assets/development/sprockets/1d1293f6abfd57a3035ab25a567fe43e
275
+ - test/dummy/tmp/cache/assets/development/sprockets/25a167c7563d6fe8ec6b13ec1ac09274
276
+ - test/dummy/tmp/cache/assets/development/sprockets/268f4f56598234185d91373d61899b3f
277
+ - test/dummy/tmp/cache/assets/development/sprockets/26ce0653a8cb3da5990ace16181dbd63
278
+ - test/dummy/tmp/cache/assets/development/sprockets/2dedb8177c20286c4259c1d58c5646cc
279
+ - test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
280
+ - test/dummy/tmp/cache/assets/development/sprockets/2fda08fb2ff79ca1dd653c3b688c1651
281
+ - test/dummy/tmp/cache/assets/development/sprockets/30d0258c36708f3d7911d6ba2303aaad
282
+ - test/dummy/tmp/cache/assets/development/sprockets/311da47a66243f663a4557a7e9997796
283
+ - test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
284
+ - test/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212
285
+ - test/dummy/tmp/cache/assets/development/sprockets/37b103f4623089af1456b90830fe941c
286
+ - test/dummy/tmp/cache/assets/development/sprockets/37f7e269b2ddbd05160232e59bf0288f
287
+ - test/dummy/tmp/cache/assets/development/sprockets/408e554cb00cbb09ae89a1e7ac45ea4f
288
+ - test/dummy/tmp/cache/assets/development/sprockets/41f10e590485de7db44ca61e32c135ea
289
+ - test/dummy/tmp/cache/assets/development/sprockets/45e716730a5c02112d5817e1b8faa1a0
290
+ - test/dummy/tmp/cache/assets/development/sprockets/4acd6b11130459cfdf814caad7638e95
291
+ - test/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5
292
+ - test/dummy/tmp/cache/assets/development/sprockets/60f651a96095c10f531bd7bf9a14beb5
293
+ - test/dummy/tmp/cache/assets/development/sprockets/6b12ee5284cadf70954a584a88b6c529
294
+ - test/dummy/tmp/cache/assets/development/sprockets/6be29bb8e609ed29aaa3a6d4a04a9ae0
295
+ - test/dummy/tmp/cache/assets/development/sprockets/6cef1e9aec64b514669e261e511dc792
296
+ - test/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2
297
+ - test/dummy/tmp/cache/assets/development/sprockets/76dc342539f7133a15b70b919f77425a
298
+ - test/dummy/tmp/cache/assets/development/sprockets/873adae1bf2f532256c8ffe71a557df5
299
+ - test/dummy/tmp/cache/assets/development/sprockets/8d7f8b5066922abfdf12e8cf0a7f2f0e
300
+ - test/dummy/tmp/cache/assets/development/sprockets/948b1a4ef7d3401c10fc537c40b56a1e
301
+ - test/dummy/tmp/cache/assets/development/sprockets/99d8deee7a422780b297ca618f4062c8
302
+ - test/dummy/tmp/cache/assets/development/sprockets/9d4262e6cd4898fd1df7f51b2d3e5c92
303
+ - test/dummy/tmp/cache/assets/development/sprockets/9e611bdf180a46600cc5019392a1b561
304
+ - test/dummy/tmp/cache/assets/development/sprockets/ab4dfca9c17bc07c2fce0127b5d9669f
305
+ - test/dummy/tmp/cache/assets/development/sprockets/af01a98a48fa1ebf1d65f0429ba2bb28
306
+ - test/dummy/tmp/cache/assets/development/sprockets/bc0c996f7ce50479170183c13af2d29d
307
+ - test/dummy/tmp/cache/assets/development/sprockets/beeaeba29291235e532fb452d94795b3
308
+ - test/dummy/tmp/cache/assets/development/sprockets/cc040cf4f4539a12745d02867976f5ba
309
+ - test/dummy/tmp/cache/assets/development/sprockets/ce30207f8949b0e3a822f6094bd31dcc
310
+ - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
311
+ - test/dummy/tmp/cache/assets/development/sprockets/d675d8a6b14078d1fc331870b4992050
312
+ - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
313
+ - test/dummy/tmp/cache/assets/development/sprockets/daba24276ab6f3be739a0385f977df1c
314
+ - test/dummy/tmp/cache/assets/development/sprockets/df5f9fbb250c939b0513aa2a35b4855b
315
+ - test/dummy/tmp/cache/assets/development/sprockets/e22980ed174c68b2505214836a40e271
316
+ - test/dummy/tmp/cache/assets/development/sprockets/e2c4f946939f2d7d0b42d86383755cae
317
+ - test/dummy/tmp/cache/assets/development/sprockets/e6a87270f3b0e8a73bcec17322694b61
318
+ - test/dummy/tmp/cache/assets/development/sprockets/e95bb3887fb84a7d966c0fc7c4e087fd
319
+ - test/dummy/tmp/cache/assets/development/sprockets/eaa7a7fe023d19cd34c33a47e6b303f3
320
+ - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
321
+ - test/dummy/tmp/cache/assets/development/sprockets/f91f775cd15edae9264ec0c23937c58b
322
+ - test/fixtures/mongoid_forums/categories.yml
323
+ - test/fixtures/mongoid_forums/forums.yml
324
+ - test/fixtures/mongoid_forums/posts.yml
325
+ - test/fixtures/mongoid_forums/ranks.yml
326
+ - test/fixtures/mongoid_forums/topics.yml
327
+ - test/integration/navigation_test.rb
328
+ - test/models/mongoid_forums/category_test.rb
329
+ - test/models/mongoid_forums/forum_test.rb
330
+ - test/models/mongoid_forums/post_test.rb
331
+ - test/models/mongoid_forums/rank_test.rb
332
+ - test/models/mongoid_forums/topic_test.rb
333
+ - test/mongoid_forums_test.rb
334
+ - test/test_helper.rb
335
+ homepage: http://www.njay.net/
336
+ licenses:
337
+ - MIT
338
+ metadata: {}
339
+ post_install_message:
340
+ rdoc_options: []
341
+ require_paths:
342
+ - lib
343
+ required_ruby_version: !ruby/object:Gem::Requirement
344
+ requirements:
345
+ - - ">="
346
+ - !ruby/object:Gem::Version
347
+ version: '0'
348
+ required_rubygems_version: !ruby/object:Gem::Requirement
349
+ requirements:
350
+ - - ">="
351
+ - !ruby/object:Gem::Version
352
+ version: '0'
353
+ requirements: []
354
+ rubyforge_project:
355
+ rubygems_version: 2.4.3
356
+ signing_key:
357
+ specification_version: 4
358
+ summary: Forum engine for Rails 4 and mongoid
359
+ test_files:
360
+ - test/controllers/mongoid_forums/admin/base_controller_test.rb
361
+ - test/controllers/mongoid_forums/admin/categories_controller_test.rb
362
+ - test/controllers/mongoid_forums/admin/forums_controller_test.rb
363
+ - test/controllers/mongoid_forums/forums_controller_test.rb
364
+ - test/controllers/mongoid_forums/posts_controller_test.rb
365
+ - test/controllers/mongoid_forums/topics_controller_test.rb
366
+ - test/dummy/app/assets/javascripts/application.js
367
+ - test/dummy/app/assets/javascripts/welcome.js
368
+ - test/dummy/app/assets/stylesheets/application.css
369
+ - test/dummy/app/assets/stylesheets/scaffold.css
370
+ - test/dummy/app/assets/stylesheets/welcome.css
371
+ - test/dummy/app/controllers/application_controller.rb
372
+ - test/dummy/app/controllers/welcome_controller.rb
373
+ - test/dummy/app/helpers/application_helper.rb
374
+ - test/dummy/app/helpers/welcome_helper.rb
375
+ - test/dummy/app/models/concerns/zero_oid_fix.rb
376
+ - test/dummy/app/models/user.rb
377
+ - test/dummy/app/views/layouts/application.haml
378
+ - test/dummy/app/views/partials/_nav.haml
379
+ - test/dummy/app/views/welcome/index.html.erb
380
+ - test/dummy/bin/bundle
381
+ - test/dummy/bin/rails
382
+ - test/dummy/bin/rake
383
+ - test/dummy/bin/setup
384
+ - test/dummy/config/application.rb
385
+ - test/dummy/config/boot.rb
386
+ - test/dummy/config/environment.rb
387
+ - test/dummy/config/environments/development.rb
388
+ - test/dummy/config/environments/production.rb
389
+ - test/dummy/config/environments/test.rb
390
+ - test/dummy/config/initializers/assets.rb
391
+ - test/dummy/config/initializers/backtrace_silencers.rb
392
+ - test/dummy/config/initializers/cookies_serializer.rb
393
+ - test/dummy/config/initializers/devise.rb
394
+ - test/dummy/config/initializers/filter_parameter_logging.rb
395
+ - test/dummy/config/initializers/inflections.rb
396
+ - test/dummy/config/initializers/kaminari_config.rb
397
+ - test/dummy/config/initializers/mime_types.rb
398
+ - test/dummy/config/initializers/mongoid_forums.rb
399
+ - test/dummy/config/initializers/session_store.rb
400
+ - test/dummy/config/initializers/simple_form.rb
401
+ - test/dummy/config/initializers/wrap_parameters.rb
402
+ - test/dummy/config/locales/devise.en.yml
403
+ - test/dummy/config/locales/en.yml
404
+ - test/dummy/config/locales/simple_form.en.yml
405
+ - test/dummy/config/mongoid.yml
406
+ - test/dummy/config/routes.rb
407
+ - test/dummy/config/secrets.yml
408
+ - test/dummy/config.ru
409
+ - test/dummy/lib/templates/erb/scaffold/_form.html.erb
410
+ - test/dummy/log/development.log
411
+ - test/dummy/log/test.log
412
+ - test/dummy/public/404.html
413
+ - test/dummy/public/422.html
414
+ - test/dummy/public/500.html
415
+ - test/dummy/public/favicon.ico
416
+ - test/dummy/Rakefile
417
+ - test/dummy/README.rdoc
418
+ - test/dummy/test/controllers/welcome_controller_test.rb
419
+ - test/dummy/test/fixtures/users.yml
420
+ - test/dummy/test/models/user_test.rb
421
+ - test/dummy/tmp/cache/assets/development/sprockets/0405ebcb982faa24d5a9bbe01ba43bf8
422
+ - test/dummy/tmp/cache/assets/development/sprockets/04b994ecf135576af395f1d87108f0e1
423
+ - test/dummy/tmp/cache/assets/development/sprockets/0532538bff94834533de08d16379c66f
424
+ - test/dummy/tmp/cache/assets/development/sprockets/063d0c765cb2fe0a6fa3995059d65fcc
425
+ - test/dummy/tmp/cache/assets/development/sprockets/0a395daf2ed2bad0174008f223997c21
426
+ - test/dummy/tmp/cache/assets/development/sprockets/0a4181c6e19406e1c40781394b0f7496
427
+ - test/dummy/tmp/cache/assets/development/sprockets/0f520169da88dbfbdd5b5f40cb5acc80
428
+ - test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
429
+ - test/dummy/tmp/cache/assets/development/sprockets/1b516e1e4f37dd27b32d035c2c825de7
430
+ - test/dummy/tmp/cache/assets/development/sprockets/1d1293f6abfd57a3035ab25a567fe43e
431
+ - test/dummy/tmp/cache/assets/development/sprockets/25a167c7563d6fe8ec6b13ec1ac09274
432
+ - test/dummy/tmp/cache/assets/development/sprockets/268f4f56598234185d91373d61899b3f
433
+ - test/dummy/tmp/cache/assets/development/sprockets/26ce0653a8cb3da5990ace16181dbd63
434
+ - test/dummy/tmp/cache/assets/development/sprockets/2dedb8177c20286c4259c1d58c5646cc
435
+ - test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
436
+ - test/dummy/tmp/cache/assets/development/sprockets/2fda08fb2ff79ca1dd653c3b688c1651
437
+ - test/dummy/tmp/cache/assets/development/sprockets/30d0258c36708f3d7911d6ba2303aaad
438
+ - test/dummy/tmp/cache/assets/development/sprockets/311da47a66243f663a4557a7e9997796
439
+ - test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
440
+ - test/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212
441
+ - test/dummy/tmp/cache/assets/development/sprockets/37b103f4623089af1456b90830fe941c
442
+ - test/dummy/tmp/cache/assets/development/sprockets/37f7e269b2ddbd05160232e59bf0288f
443
+ - test/dummy/tmp/cache/assets/development/sprockets/408e554cb00cbb09ae89a1e7ac45ea4f
444
+ - test/dummy/tmp/cache/assets/development/sprockets/41f10e590485de7db44ca61e32c135ea
445
+ - test/dummy/tmp/cache/assets/development/sprockets/45e716730a5c02112d5817e1b8faa1a0
446
+ - test/dummy/tmp/cache/assets/development/sprockets/4acd6b11130459cfdf814caad7638e95
447
+ - test/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5
448
+ - test/dummy/tmp/cache/assets/development/sprockets/60f651a96095c10f531bd7bf9a14beb5
449
+ - test/dummy/tmp/cache/assets/development/sprockets/6b12ee5284cadf70954a584a88b6c529
450
+ - test/dummy/tmp/cache/assets/development/sprockets/6be29bb8e609ed29aaa3a6d4a04a9ae0
451
+ - test/dummy/tmp/cache/assets/development/sprockets/6cef1e9aec64b514669e261e511dc792
452
+ - test/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2
453
+ - test/dummy/tmp/cache/assets/development/sprockets/76dc342539f7133a15b70b919f77425a
454
+ - test/dummy/tmp/cache/assets/development/sprockets/873adae1bf2f532256c8ffe71a557df5
455
+ - test/dummy/tmp/cache/assets/development/sprockets/8d7f8b5066922abfdf12e8cf0a7f2f0e
456
+ - test/dummy/tmp/cache/assets/development/sprockets/948b1a4ef7d3401c10fc537c40b56a1e
457
+ - test/dummy/tmp/cache/assets/development/sprockets/99d8deee7a422780b297ca618f4062c8
458
+ - test/dummy/tmp/cache/assets/development/sprockets/9d4262e6cd4898fd1df7f51b2d3e5c92
459
+ - test/dummy/tmp/cache/assets/development/sprockets/9e611bdf180a46600cc5019392a1b561
460
+ - test/dummy/tmp/cache/assets/development/sprockets/ab4dfca9c17bc07c2fce0127b5d9669f
461
+ - test/dummy/tmp/cache/assets/development/sprockets/af01a98a48fa1ebf1d65f0429ba2bb28
462
+ - test/dummy/tmp/cache/assets/development/sprockets/bc0c996f7ce50479170183c13af2d29d
463
+ - test/dummy/tmp/cache/assets/development/sprockets/beeaeba29291235e532fb452d94795b3
464
+ - test/dummy/tmp/cache/assets/development/sprockets/cc040cf4f4539a12745d02867976f5ba
465
+ - test/dummy/tmp/cache/assets/development/sprockets/ce30207f8949b0e3a822f6094bd31dcc
466
+ - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
467
+ - test/dummy/tmp/cache/assets/development/sprockets/d675d8a6b14078d1fc331870b4992050
468
+ - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
469
+ - test/dummy/tmp/cache/assets/development/sprockets/daba24276ab6f3be739a0385f977df1c
470
+ - test/dummy/tmp/cache/assets/development/sprockets/df5f9fbb250c939b0513aa2a35b4855b
471
+ - test/dummy/tmp/cache/assets/development/sprockets/e22980ed174c68b2505214836a40e271
472
+ - test/dummy/tmp/cache/assets/development/sprockets/e2c4f946939f2d7d0b42d86383755cae
473
+ - test/dummy/tmp/cache/assets/development/sprockets/e6a87270f3b0e8a73bcec17322694b61
474
+ - test/dummy/tmp/cache/assets/development/sprockets/e95bb3887fb84a7d966c0fc7c4e087fd
475
+ - test/dummy/tmp/cache/assets/development/sprockets/eaa7a7fe023d19cd34c33a47e6b303f3
476
+ - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
477
+ - test/dummy/tmp/cache/assets/development/sprockets/f91f775cd15edae9264ec0c23937c58b
478
+ - test/fixtures/mongoid_forums/categories.yml
479
+ - test/fixtures/mongoid_forums/forums.yml
480
+ - test/fixtures/mongoid_forums/posts.yml
481
+ - test/fixtures/mongoid_forums/ranks.yml
482
+ - test/fixtures/mongoid_forums/topics.yml
483
+ - test/integration/navigation_test.rb
484
+ - test/models/mongoid_forums/category_test.rb
485
+ - test/models/mongoid_forums/forum_test.rb
486
+ - test/models/mongoid_forums/post_test.rb
487
+ - test/models/mongoid_forums/rank_test.rb
488
+ - test/models/mongoid_forums/topic_test.rb
489
+ - test/mongoid_forums_test.rb
490
+ - test/test_helper.rb
491
+ has_rdoc: