mongoid-forums 0.0.5 → 0.0.9

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 (36) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/mongoid_forums/admin/users.js +2 -0
  3. data/app/assets/stylesheets/mongoid_forums/admin/users.css +4 -0
  4. data/app/controllers/mongoid_forums/admin/categories_controller.rb +5 -5
  5. data/app/controllers/mongoid_forums/admin/forums_controller.rb +2 -2
  6. data/app/controllers/mongoid_forums/admin/users_controller.rb +34 -0
  7. data/app/controllers/mongoid_forums/application_controller.rb +1 -1
  8. data/app/controllers/mongoid_forums/forums_controller.rb +8 -8
  9. data/app/controllers/mongoid_forums/topics_controller.rb +0 -1
  10. data/app/helpers/mongoid_forums/admin/users_helper.rb +4 -0
  11. data/app/models/mongoid_forums/category.rb +2 -1
  12. data/app/models/mongoid_forums/forum.rb +2 -1
  13. data/app/views/mongoid_forums/admin/base/index.haml +1 -0
  14. data/app/views/mongoid_forums/admin/categories/edit.haml +1 -0
  15. data/app/views/mongoid_forums/admin/categories/new.haml +1 -0
  16. data/app/views/mongoid_forums/admin/forums/edit.haml +1 -0
  17. data/app/views/mongoid_forums/admin/forums/new.haml +1 -0
  18. data/app/views/mongoid_forums/admin/groups/show.haml +11 -4
  19. data/app/views/mongoid_forums/admin/users/index.haml +24 -0
  20. data/app/views/mongoid_forums/forums/index.haml +1 -1
  21. data/config/routes.rb +5 -0
  22. data/lib/mongoid_forums/version.rb +1 -1
  23. data/lib/mongoid_forums.rb +1 -1
  24. data/test/controllers/mongoid_forums/admin/users_controller_test.rb +11 -0
  25. data/test/dummy/app/assets/javascripts/application.js +2 -0
  26. data/test/dummy/log/development.log +5273 -0
  27. data/test/dummy/tmp/cache/assets/development/sprockets/0308248096d701ded90989b48340878a +0 -0
  28. data/test/dummy/tmp/cache/assets/development/sprockets/1d095746458aab3bdb955bf59c96ca33 +0 -0
  29. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  30. data/test/dummy/tmp/cache/assets/development/sprockets/6f9939c59875c2394301c1b6b1bceca3 +0 -0
  31. data/test/dummy/tmp/cache/assets/development/sprockets/c8a43f513a945814918a659ead2dac85 +0 -0
  32. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  33. data/test/dummy/tmp/cache/assets/development/sprockets/e1436ddb13bf91383110676cf21fbe14 +0 -0
  34. data/test/dummy/tmp/cache/assets/development/sprockets/e65def7db46175dc13f1bf5cc4f2f870 +0 -0
  35. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  36. metadata +35 -2
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mongoid-forums
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - skipperguy12
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-04 00:00:00.000000000 Z
11
+ date: 2015-04-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -122,6 +122,20 @@ dependencies:
122
122
  - - ">="
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: jquery-rails
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
125
139
  - !ruby/object:Gem::Dependency
126
140
  name: pry-rails
127
141
  requirement: !ruby/object:Gem::Requirement
@@ -149,6 +163,7 @@ files:
149
163
  - app/assets/javascripts/mongoid_forums/admin/categories.js
150
164
  - app/assets/javascripts/mongoid_forums/admin/forums.js
151
165
  - app/assets/javascripts/mongoid_forums/admin/groups.js
166
+ - app/assets/javascripts/mongoid_forums/admin/users.js
152
167
  - app/assets/javascripts/mongoid_forums/application.js
153
168
  - app/assets/javascripts/mongoid_forums/forums.js
154
169
  - app/assets/javascripts/mongoid_forums/posts.js
@@ -157,6 +172,7 @@ files:
157
172
  - app/assets/stylesheets/mongoid_forums/admin/categories.css
158
173
  - app/assets/stylesheets/mongoid_forums/admin/forums.css
159
174
  - app/assets/stylesheets/mongoid_forums/admin/groups.css
175
+ - app/assets/stylesheets/mongoid_forums/admin/users.css
160
176
  - app/assets/stylesheets/mongoid_forums/application.css
161
177
  - app/assets/stylesheets/mongoid_forums/forums.css
162
178
  - app/assets/stylesheets/mongoid_forums/posts.css
@@ -167,6 +183,7 @@ files:
167
183
  - app/controllers/mongoid_forums/admin/forums_controller.rb
168
184
  - app/controllers/mongoid_forums/admin/groups_controller.rb
169
185
  - app/controllers/mongoid_forums/admin/topics_controller.rb
186
+ - app/controllers/mongoid_forums/admin/users_controller.rb
170
187
  - app/controllers/mongoid_forums/application_controller.rb
171
188
  - app/controllers/mongoid_forums/forums_controller.rb
172
189
  - app/controllers/mongoid_forums/posts_controller.rb
@@ -176,6 +193,7 @@ files:
176
193
  - app/helpers/mongoid_forums/admin/categories_helper.rb
177
194
  - app/helpers/mongoid_forums/admin/forums_helper.rb
178
195
  - app/helpers/mongoid_forums/admin/groups_helper.rb
196
+ - app/helpers/mongoid_forums/admin/users_helper.rb
179
197
  - app/helpers/mongoid_forums/application_helper.rb
180
198
  - app/helpers/mongoid_forums/formatting_helper.rb
181
199
  - app/helpers/mongoid_forums/forums_helper.rb
@@ -206,6 +224,7 @@ files:
206
224
  - app/views/mongoid_forums/admin/groups/index.haml
207
225
  - app/views/mongoid_forums/admin/groups/new.haml
208
226
  - app/views/mongoid_forums/admin/groups/show.haml
227
+ - app/views/mongoid_forums/admin/users/index.haml
209
228
  - app/views/mongoid_forums/forums/index.haml
210
229
  - app/views/mongoid_forums/forums/new.haml
211
230
  - app/views/mongoid_forums/forums/show.haml
@@ -234,6 +253,7 @@ files:
234
253
  - test/controllers/mongoid_forums/admin/categories_controller_test.rb
235
254
  - test/controllers/mongoid_forums/admin/forums_controller_test.rb
236
255
  - test/controllers/mongoid_forums/admin/groups_controller_test.rb
256
+ - test/controllers/mongoid_forums/admin/users_controller_test.rb
237
257
  - test/controllers/mongoid_forums/forums_controller_test.rb
238
258
  - test/controllers/mongoid_forums/posts_controller_test.rb
239
259
  - test/controllers/mongoid_forums/topics_controller_test.rb
@@ -291,6 +311,7 @@ files:
291
311
  - test/dummy/test/controllers/welcome_controller_test.rb
292
312
  - test/dummy/test/fixtures/users.yml
293
313
  - test/dummy/test/models/user_test.rb
314
+ - test/dummy/tmp/cache/assets/development/sprockets/0308248096d701ded90989b48340878a
294
315
  - test/dummy/tmp/cache/assets/development/sprockets/0405ebcb982faa24d5a9bbe01ba43bf8
295
316
  - test/dummy/tmp/cache/assets/development/sprockets/04b994ecf135576af395f1d87108f0e1
296
317
  - test/dummy/tmp/cache/assets/development/sprockets/0532538bff94834533de08d16379c66f
@@ -300,6 +321,7 @@ files:
300
321
  - test/dummy/tmp/cache/assets/development/sprockets/0f520169da88dbfbdd5b5f40cb5acc80
301
322
  - test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
302
323
  - test/dummy/tmp/cache/assets/development/sprockets/1b516e1e4f37dd27b32d035c2c825de7
324
+ - test/dummy/tmp/cache/assets/development/sprockets/1d095746458aab3bdb955bf59c96ca33
303
325
  - test/dummy/tmp/cache/assets/development/sprockets/1d1293f6abfd57a3035ab25a567fe43e
304
326
  - test/dummy/tmp/cache/assets/development/sprockets/25a167c7563d6fe8ec6b13ec1ac09274
305
327
  - test/dummy/tmp/cache/assets/development/sprockets/268f4f56598234185d91373d61899b3f
@@ -322,6 +344,7 @@ files:
322
344
  - test/dummy/tmp/cache/assets/development/sprockets/6b12ee5284cadf70954a584a88b6c529
323
345
  - test/dummy/tmp/cache/assets/development/sprockets/6be29bb8e609ed29aaa3a6d4a04a9ae0
324
346
  - test/dummy/tmp/cache/assets/development/sprockets/6cef1e9aec64b514669e261e511dc792
347
+ - test/dummy/tmp/cache/assets/development/sprockets/6f9939c59875c2394301c1b6b1bceca3
325
348
  - test/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2
326
349
  - test/dummy/tmp/cache/assets/development/sprockets/76dc342539f7133a15b70b919f77425a
327
350
  - test/dummy/tmp/cache/assets/development/sprockets/873adae1bf2f532256c8ffe71a557df5
@@ -334,6 +357,7 @@ files:
334
357
  - test/dummy/tmp/cache/assets/development/sprockets/af01a98a48fa1ebf1d65f0429ba2bb28
335
358
  - test/dummy/tmp/cache/assets/development/sprockets/bc0c996f7ce50479170183c13af2d29d
336
359
  - test/dummy/tmp/cache/assets/development/sprockets/beeaeba29291235e532fb452d94795b3
360
+ - test/dummy/tmp/cache/assets/development/sprockets/c8a43f513a945814918a659ead2dac85
337
361
  - test/dummy/tmp/cache/assets/development/sprockets/cc040cf4f4539a12745d02867976f5ba
338
362
  - test/dummy/tmp/cache/assets/development/sprockets/ce30207f8949b0e3a822f6094bd31dcc
339
363
  - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
@@ -341,8 +365,10 @@ files:
341
365
  - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
342
366
  - test/dummy/tmp/cache/assets/development/sprockets/daba24276ab6f3be739a0385f977df1c
343
367
  - test/dummy/tmp/cache/assets/development/sprockets/df5f9fbb250c939b0513aa2a35b4855b
368
+ - test/dummy/tmp/cache/assets/development/sprockets/e1436ddb13bf91383110676cf21fbe14
344
369
  - test/dummy/tmp/cache/assets/development/sprockets/e22980ed174c68b2505214836a40e271
345
370
  - test/dummy/tmp/cache/assets/development/sprockets/e2c4f946939f2d7d0b42d86383755cae
371
+ - test/dummy/tmp/cache/assets/development/sprockets/e65def7db46175dc13f1bf5cc4f2f870
346
372
  - test/dummy/tmp/cache/assets/development/sprockets/e6a87270f3b0e8a73bcec17322694b61
347
373
  - test/dummy/tmp/cache/assets/development/sprockets/e95bb3887fb84a7d966c0fc7c4e087fd
348
374
  - test/dummy/tmp/cache/assets/development/sprockets/eaa7a7fe023d19cd34c33a47e6b303f3
@@ -390,6 +416,7 @@ test_files:
390
416
  - test/controllers/mongoid_forums/admin/categories_controller_test.rb
391
417
  - test/controllers/mongoid_forums/admin/forums_controller_test.rb
392
418
  - test/controllers/mongoid_forums/admin/groups_controller_test.rb
419
+ - test/controllers/mongoid_forums/admin/users_controller_test.rb
393
420
  - test/controllers/mongoid_forums/forums_controller_test.rb
394
421
  - test/controllers/mongoid_forums/posts_controller_test.rb
395
422
  - test/controllers/mongoid_forums/topics_controller_test.rb
@@ -447,6 +474,7 @@ test_files:
447
474
  - test/dummy/test/controllers/welcome_controller_test.rb
448
475
  - test/dummy/test/fixtures/users.yml
449
476
  - test/dummy/test/models/user_test.rb
477
+ - test/dummy/tmp/cache/assets/development/sprockets/0308248096d701ded90989b48340878a
450
478
  - test/dummy/tmp/cache/assets/development/sprockets/0405ebcb982faa24d5a9bbe01ba43bf8
451
479
  - test/dummy/tmp/cache/assets/development/sprockets/04b994ecf135576af395f1d87108f0e1
452
480
  - test/dummy/tmp/cache/assets/development/sprockets/0532538bff94834533de08d16379c66f
@@ -456,6 +484,7 @@ test_files:
456
484
  - test/dummy/tmp/cache/assets/development/sprockets/0f520169da88dbfbdd5b5f40cb5acc80
457
485
  - test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
458
486
  - test/dummy/tmp/cache/assets/development/sprockets/1b516e1e4f37dd27b32d035c2c825de7
487
+ - test/dummy/tmp/cache/assets/development/sprockets/1d095746458aab3bdb955bf59c96ca33
459
488
  - test/dummy/tmp/cache/assets/development/sprockets/1d1293f6abfd57a3035ab25a567fe43e
460
489
  - test/dummy/tmp/cache/assets/development/sprockets/25a167c7563d6fe8ec6b13ec1ac09274
461
490
  - test/dummy/tmp/cache/assets/development/sprockets/268f4f56598234185d91373d61899b3f
@@ -478,6 +507,7 @@ test_files:
478
507
  - test/dummy/tmp/cache/assets/development/sprockets/6b12ee5284cadf70954a584a88b6c529
479
508
  - test/dummy/tmp/cache/assets/development/sprockets/6be29bb8e609ed29aaa3a6d4a04a9ae0
480
509
  - test/dummy/tmp/cache/assets/development/sprockets/6cef1e9aec64b514669e261e511dc792
510
+ - test/dummy/tmp/cache/assets/development/sprockets/6f9939c59875c2394301c1b6b1bceca3
481
511
  - test/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2
482
512
  - test/dummy/tmp/cache/assets/development/sprockets/76dc342539f7133a15b70b919f77425a
483
513
  - test/dummy/tmp/cache/assets/development/sprockets/873adae1bf2f532256c8ffe71a557df5
@@ -490,6 +520,7 @@ test_files:
490
520
  - test/dummy/tmp/cache/assets/development/sprockets/af01a98a48fa1ebf1d65f0429ba2bb28
491
521
  - test/dummy/tmp/cache/assets/development/sprockets/bc0c996f7ce50479170183c13af2d29d
492
522
  - test/dummy/tmp/cache/assets/development/sprockets/beeaeba29291235e532fb452d94795b3
523
+ - test/dummy/tmp/cache/assets/development/sprockets/c8a43f513a945814918a659ead2dac85
493
524
  - test/dummy/tmp/cache/assets/development/sprockets/cc040cf4f4539a12745d02867976f5ba
494
525
  - test/dummy/tmp/cache/assets/development/sprockets/ce30207f8949b0e3a822f6094bd31dcc
495
526
  - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
@@ -497,8 +528,10 @@ test_files:
497
528
  - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
498
529
  - test/dummy/tmp/cache/assets/development/sprockets/daba24276ab6f3be739a0385f977df1c
499
530
  - test/dummy/tmp/cache/assets/development/sprockets/df5f9fbb250c939b0513aa2a35b4855b
531
+ - test/dummy/tmp/cache/assets/development/sprockets/e1436ddb13bf91383110676cf21fbe14
500
532
  - test/dummy/tmp/cache/assets/development/sprockets/e22980ed174c68b2505214836a40e271
501
533
  - test/dummy/tmp/cache/assets/development/sprockets/e2c4f946939f2d7d0b42d86383755cae
534
+ - test/dummy/tmp/cache/assets/development/sprockets/e65def7db46175dc13f1bf5cc4f2f870
502
535
  - test/dummy/tmp/cache/assets/development/sprockets/e6a87270f3b0e8a73bcec17322694b61
503
536
  - test/dummy/tmp/cache/assets/development/sprockets/e95bb3887fb84a7d966c0fc7c4e087fd
504
537
  - test/dummy/tmp/cache/assets/development/sprockets/eaa7a7fe023d19cd34c33a47e6b303f3