discussion 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 (177) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +16 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/javascripts/discussion/application.js +1 -0
  5. data/app/assets/javascripts/discussion/discussion.js +28 -0
  6. data/app/assets/stylesheets/discussion/application.css +13 -0
  7. data/app/assets/stylesheets/discussion/threads.css +4 -0
  8. data/app/assets/stylesheets/scaffold.css +56 -0
  9. data/app/controllers/discussion/application_controller.rb +4 -0
  10. data/app/controllers/discussion/comments_controller.rb +100 -0
  11. data/app/controllers/discussion/threads_controller.rb +128 -0
  12. data/app/helpers/discussion/application_helper.rb +9 -0
  13. data/app/helpers/discussion/comments_helper.rb +20 -0
  14. data/app/helpers/discussion/threads_helper.rb +52 -0
  15. data/app/models/discussion/comment.rb +54 -0
  16. data/app/models/discussion/comment_read.rb +27 -0
  17. data/app/models/discussion/concerns.rb +24 -0
  18. data/app/models/discussion/thread.rb +69 -0
  19. data/app/models/discussion/thread_read.rb +9 -0
  20. data/app/models/thread_sweeper.rb +23 -0
  21. data/app/views/discussion/comments/_form.html.erb +1 -0
  22. data/app/views/discussion/comments/_list_with_form.html.erb +10 -0
  23. data/app/views/discussion/comments/_view.html.erb +3 -0
  24. data/app/views/discussion/comments/create.js.erb +2 -0
  25. data/app/views/discussion/comments/index.js.erb +2 -0
  26. data/app/views/discussion/threads/_form.html.erb +16 -0
  27. data/app/views/discussion/threads/_index.html.erb +5 -0
  28. data/app/views/discussion/threads/_list.html.erb +40 -0
  29. data/app/views/discussion/threads/_view.html.erb +13 -0
  30. data/app/views/discussion/threads/create.js.erb +2 -0
  31. data/app/views/discussion/threads/index.html.erb +3 -0
  32. data/app/views/discussion/threads/index.js.erb +2 -0
  33. data/app/views/discussion/threads/list.html.erb +1 -0
  34. data/app/views/discussion/threads/new.html.erb +1 -0
  35. data/app/views/discussion/threads/new.js.erb +2 -0
  36. data/app/views/discussion/threads/show.html.erb +1 -0
  37. data/app/views/discussion/threads/show.js.erb +2 -0
  38. data/config/routes.rb +5 -0
  39. data/db/migrate/20130501074817_create_discussion_threads.rb +14 -0
  40. data/db/migrate/20130501075956_create_discussion_concerns.rb +13 -0
  41. data/db/migrate/20130501080150_create_discussion_comments.rb +15 -0
  42. data/db/migrate/20130501080604_create_discussion_comment_reads.rb +11 -0
  43. data/db/migrate/20130502121352_create_discussion_thread_reads.rb +13 -0
  44. data/db/migrate/20130509100700_add_topic_to_threads.rb +9 -0
  45. data/lib/discussion.rb +15 -0
  46. data/lib/discussion/engine.rb +10 -0
  47. data/lib/discussion/version.rb +3 -0
  48. data/lib/generators/discussion/USAGE +15 -0
  49. data/lib/generators/discussion/discussion_generator.rb +26 -0
  50. data/lib/tasks/discussion_tasks.rake +4 -0
  51. data/test/discussion_test.rb +7 -0
  52. data/test/dummy/README.rdoc +261 -0
  53. data/test/dummy/Rakefile +7 -0
  54. data/test/dummy/app/assets/javascripts/application.js +4 -0
  55. data/test/dummy/app/assets/javascripts/assignments.js +2 -0
  56. data/test/dummy/app/assets/stylesheets/application.css +28 -0
  57. data/test/dummy/app/assets/stylesheets/assignments.css +4 -0
  58. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  59. data/test/dummy/app/controllers/application_controller.rb +8 -0
  60. data/test/dummy/app/controllers/assignments_controller.rb +2 -0
  61. data/test/dummy/app/helpers/application_helper.rb +8 -0
  62. data/test/dummy/app/helpers/assignments_helper.rb +2 -0
  63. data/test/dummy/app/models/assignment.rb +5 -0
  64. data/test/dummy/app/models/user.rb +9 -0
  65. data/test/dummy/app/views/assignments/_form.html.erb +29 -0
  66. data/test/dummy/app/views/assignments/edit.html.erb +6 -0
  67. data/test/dummy/app/views/assignments/index.html.erb +27 -0
  68. data/test/dummy/app/views/assignments/new.html.erb +5 -0
  69. data/test/dummy/app/views/assignments/show.html.erb +32 -0
  70. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  71. data/test/dummy/app/views/layouts/discussion/application.html.erb +14 -0
  72. data/test/dummy/config.ru +4 -0
  73. data/test/dummy/config/application.rb +58 -0
  74. data/test/dummy/config/boot.rb +10 -0
  75. data/test/dummy/config/database.yml +25 -0
  76. data/test/dummy/config/environment.rb +5 -0
  77. data/test/dummy/config/environments/development.rb +52 -0
  78. data/test/dummy/config/environments/production.rb +67 -0
  79. data/test/dummy/config/environments/test.rb +37 -0
  80. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  81. data/test/dummy/config/initializers/inflections.rb +15 -0
  82. data/test/dummy/config/initializers/mime_types.rb +5 -0
  83. data/test/dummy/config/initializers/secret_token.rb +7 -0
  84. data/test/dummy/config/initializers/session_store.rb +8 -0
  85. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  86. data/test/dummy/config/locales/en.yml +5 -0
  87. data/test/dummy/config/routes.rb +9 -0
  88. data/test/dummy/custom_plan.rb +11 -0
  89. data/test/dummy/db/development.sqlite3 +0 -0
  90. data/test/dummy/db/migrate/20120624033524_devise_create_users.rb +53 -0
  91. data/test/dummy/db/migrate/20130501154800_create_discussion_threads.discussion.rb +15 -0
  92. data/test/dummy/db/migrate/20130501154801_create_discussion_concerns.discussion.rb +14 -0
  93. data/test/dummy/db/migrate/20130501154802_create_discussion_comments.discussion.rb +16 -0
  94. data/test/dummy/db/migrate/20130501154803_create_discussion_comment_reads.discussion.rb +12 -0
  95. data/test/dummy/db/migrate/20130502144148_create_discussion_thread_reads.discussion.rb +14 -0
  96. data/test/dummy/db/migrate/20130509101316_create_assignments.rb +12 -0
  97. data/test/dummy/db/migrate/20130509101334_add_topic_to_threads.discussion.rb +10 -0
  98. data/test/dummy/db/schema.rb +104 -0
  99. data/test/dummy/db/seed.rb +28 -0
  100. data/test/dummy/db/test.sqlite3 +0 -0
  101. data/test/dummy/log/development.log +9981 -0
  102. data/test/dummy/public/404.html +26 -0
  103. data/test/dummy/public/422.html +26 -0
  104. data/test/dummy/public/500.html +25 -0
  105. data/test/dummy/public/favicon.ico +0 -0
  106. data/test/dummy/script/rails +6 -0
  107. data/test/dummy/spec/controllers/assignments_controller_spec.rb +160 -0
  108. data/test/dummy/spec/helpers/assignments_helper_spec.rb +15 -0
  109. data/test/dummy/spec/models/assignment_spec.rb +5 -0
  110. data/test/dummy/spec/requests/assignments_spec.rb +11 -0
  111. data/test/dummy/spec/routing/assignments_routing_spec.rb +35 -0
  112. data/test/dummy/spec/views/assignments/edit.html.erb_spec.rb +22 -0
  113. data/test/dummy/spec/views/assignments/index.html.erb_spec.rb +26 -0
  114. data/test/dummy/spec/views/assignments/new.html.erb_spec.rb +22 -0
  115. data/test/dummy/spec/views/assignments/show.html.erb_spec.rb +19 -0
  116. data/test/dummy/tmp/cache/34A/041/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fjquery.js%3Fbody%3D1 +0 -0
  117. data/test/dummy/tmp/cache/458/621/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fscaffold.css%3Fbody%3D1 +0 -0
  118. data/test/dummy/tmp/cache/4FB/6C1/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fjquery_ujs.js%3Fbody%3D1 +0 -0
  119. data/test/dummy/tmp/cache/53E/311/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fapplication.js%3Fbody%3D1 +0 -0
  120. data/test/dummy/tmp/cache/556/F41/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fassignments.js%3Fbody%3D1 +0 -0
  121. data/test/dummy/tmp/cache/5AA/581/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fapplication.css%3Fbody%3D1 +0 -0
  122. data/test/dummy/tmp/cache/5C2/331/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fassignments.css%3Fbody%3D1 +0 -0
  123. data/test/dummy/tmp/cache/9A9/BB0/total_unread_thread_by_6 +1 -0
  124. data/test/dummy/tmp/cache/9CF/491/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fdiscussion%2Fdiscussion.js%3Fbody%3D1 +0 -0
  125. data/test/dummy/tmp/cache/A1F/311/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fdiscussion%2Fapplication.js%3Fbody%3D1 +0 -0
  126. data/test/dummy/tmp/cache/A44/EA0/2898ba2093d346f7463a4396e46d4bd73590fd60 +25 -0
  127. data/test/dummy/tmp/cache/A53/930/8ab0f4219a7b2c19044a090115a45e76e43b268e +6 -0
  128. data/test/dummy/tmp/cache/A91/340/3f3d2d8955322f325af6db2238355fa07007ebd9 +5 -0
  129. data/test/dummy/tmp/cache/A9B/580/326f111948a98b94ce79f7ead20a6a8f6134316a +17 -0
  130. data/test/dummy/tmp/cache/ACB/1C0/61e9711fd55eccdf62882cb8d127b22664f7023f +4 -0
  131. data/test/dummy/tmp/cache/ACB/C60/2d70f6e0b599912c0a0a476f7d1d873d16fc587a +15 -0
  132. data/test/dummy/tmp/cache/AEF/AF0/24b5ae4d0aa3c3e6f7898cc323c8434330bf6c48 +20 -0
  133. data/test/dummy/tmp/cache/AF9/0E0/96b52cbbdd9b2500e89198a5d9ac461e490d2d27 +30 -0
  134. data/test/dummy/tmp/cache/B06/3F0/da9f60ff5af114f8058d98986d9c2350fd2df114 +9599 -0
  135. data/test/dummy/tmp/cache/B1C/810/9e06e1eec0d1350714a34d137eb4e4e93df71d7b +19 -0
  136. data/test/dummy/tmp/cache/B21/980/93de869eb331c65cb1c7a282ae089ee1b9111fd1 +25 -0
  137. data/test/dummy/tmp/cache/B27/910/da39a3ee5e6b4b0d3255bfef95601890afd80709 +0 -0
  138. data/test/dummy/tmp/cache/B30/970/7c338ed2840d2bf55f9f5e4eed04f66c80840eb3 +4 -0
  139. data/test/dummy/tmp/cache/B52/020/723598e1e44b35d4f2dca9ba0d3d1fa86fb63c81 +17 -0
  140. data/test/dummy/tmp/cache/B69/300/03c05703ee2f7ecbe9331dabc80cb14364ae1cd4 +14 -0
  141. data/test/dummy/tmp/cache/B72/C30/6c7fd8edb7af04528edf3f4c189f498ef511349e +20 -0
  142. data/test/dummy/tmp/cache/B8A/9B0/8446a97c4cbd4f1c6650b6dda8f7381cacfe5f31 +57 -0
  143. data/test/dummy/tmp/cache/BDA/810/586d7c0cfc531f2d9bffa4afa518cdde00e640a5 +25 -0
  144. data/test/dummy/tmp/cache/BE1/FA0/cef8de7e145c5aba7808de00a8b78750bfeba3b4 +30 -0
  145. data/test/dummy/tmp/cache/C0F/F10/853eabd960e1d1c97f280dfde98cda31aceda31c +401 -0
  146. data/test/dummy/tmp/cache/C41/FC0/b5dff9ef4aa8e34a09fbc8bc024f3ddd59d711ba +17 -0
  147. data/test/dummy/tmp/cache/assets/C80/A60/sprockets%2F3d71727f9a9628e5ea4071de13513523 +0 -0
  148. data/test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212 +0 -0
  149. data/test/dummy/tmp/cache/assets/CBB/080/sprockets%2F2d799cd88730be6f8d442356020b671f +0 -0
  150. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  151. data/test/dummy/tmp/cache/assets/CE3/D10/sprockets%2F966d9544f2171c807e5dd194302de1cc +0 -0
  152. data/test/dummy/tmp/cache/assets/CEE/900/sprockets%2Fa62a39d06b7d4de441784b9974f92e52 +0 -0
  153. data/test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
  154. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  155. data/test/dummy/tmp/cache/assets/D34/9E0/sprockets%2F11dabe8b1273c07cacd98060623de865 +0 -0
  156. data/test/dummy/tmp/cache/assets/D40/4E0/sprockets%2F441fdbbb1185dcb64934067f3a64f85e +0 -0
  157. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  158. data/test/dummy/tmp/cache/assets/D59/650/sprockets%2F0e15e6c08b5d2c6fc092a5a804f1a4a2 +0 -0
  159. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  160. data/test/dummy/tmp/cache/assets/D69/160/sprockets%2Fd50935d69817529b1cb6e6cadc111aec +0 -0
  161. data/test/dummy/tmp/cache/assets/D6C/290/sprockets%2Fedf363ea932d74107ecad71304e3c69d +0 -0
  162. data/test/dummy/tmp/cache/assets/D6D/870/sprockets%2F0b22785b6eb9daa3c9480e70771b6bed +0 -0
  163. data/test/dummy/tmp/cache/assets/D81/A20/sprockets%2F7fe1c5ae586747d5bba86892a2df7f42 +0 -0
  164. data/test/dummy/tmp/cache/assets/D92/C00/sprockets%2Fdd4af168d08e874f3d9c8e2d1f7d9898 +0 -0
  165. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  166. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  167. data/test/dummy/zeus.json +23 -0
  168. data/test/functional/discussion/threads_controller_test.rb +51 -0
  169. data/test/integration/navigation_test.rb +10 -0
  170. data/test/test_helper.rb +15 -0
  171. data/test/unit/discussion/comment_read_test.rb +9 -0
  172. data/test/unit/discussion/comment_test.rb +9 -0
  173. data/test/unit/discussion/concerns_test.rb +9 -0
  174. data/test/unit/discussion/thread_read_test.rb +9 -0
  175. data/test/unit/discussion/thread_test.rb +9 -0
  176. data/test/unit/helpers/discussion/threads_helper_test.rb +6 -0
  177. metadata +491 -0
@@ -0,0 +1,17 @@
1
+ o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1369575540.3665705: @value"�[I"�var Disussion = {
2
+ loadComments: function (url, contrinerId) {
3
+ $ = jQuery;
4
+
5
+ $('#' + contrinerId).trigger('loading_comments');
6
+ $.ajax({
7
+ url: url,
8
+ dataType: 'script',
9
+ data: {contrinerId: contrinerId},
10
+ type: 'GET'
11
+ }).done(function () {
12
+ $('#' + contrinerId).trigger('loaded_comments');
13
+ });
14
+ }
15
+ }
16
+ ;
17
+ :EF
@@ -0,0 +1,23 @@
1
+ {
2
+ "command": "ruby -rubygems -r./custom_plan -eZeus.go",
3
+
4
+ "plan": {
5
+ "boot": {
6
+ "default_bundle": {
7
+ "development_environment": {
8
+ "prerake": {"rake": []},
9
+ "runner": ["r"],
10
+ "console": ["c"],
11
+ "server": ["s"],
12
+ "generate": ["g"],
13
+ "destroy": ["d"],
14
+ "dbconsole": []
15
+ },
16
+ "test_environment": {
17
+ "cucumber_environment": {"cucumber": []},
18
+ "test_helper": {"test": ["rspec", "testrb"]}
19
+ }
20
+ }
21
+ }
22
+ }
23
+ }
@@ -0,0 +1,51 @@
1
+ require 'test_helper'
2
+
3
+ module Discussion
4
+ class ThreadsControllerTest < ActionController::TestCase
5
+ setup do
6
+ @thread = threads(:one)
7
+ end
8
+
9
+ test "should get index" do
10
+ get :index
11
+ assert_response :success
12
+ assert_not_nil assigns(:threads)
13
+ end
14
+
15
+ test "should get new" do
16
+ get :new
17
+ assert_response :success
18
+ end
19
+
20
+ test "should create thread" do
21
+ assert_difference('Thread.count') do
22
+ post :create, thread: { initiator_id: @thread.initiator_id, subject: @thread.subject }
23
+ end
24
+
25
+ assert_redirected_to thread_path(assigns(:thread))
26
+ end
27
+
28
+ test "should show thread" do
29
+ get :show, id: @thread
30
+ assert_response :success
31
+ end
32
+
33
+ test "should get edit" do
34
+ get :edit, id: @thread
35
+ assert_response :success
36
+ end
37
+
38
+ test "should update thread" do
39
+ put :update, id: @thread, thread: { initiator_id: @thread.initiator_id, subject: @thread.subject }
40
+ assert_redirected_to thread_path(assigns(:thread))
41
+ end
42
+
43
+ test "should destroy thread" do
44
+ assert_difference('Thread.count', -1) do
45
+ delete :destroy, id: @thread
46
+ end
47
+
48
+ assert_redirected_to threads_path
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Discussion
4
+ class CommentReadTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Discussion
4
+ class CommentTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Discussion
4
+ class ConcernsTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Discussion
4
+ class ThreadReadTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Discussion
4
+ class ThreadTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module Discussion
4
+ class ThreadsHelperTest < ActionView::TestCase
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,491 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: discussion
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - A.K.M. Ashrafuzzaman
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-06-05 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.13
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.13
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
+ - !ruby/object:Gem::Dependency
47
+ name: simple_form
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: inherited_resources
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: kaminari
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: ransack
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :runtime
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ name: sqlite3
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
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
+ none: false
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ - !ruby/object:Gem::Dependency
127
+ name: bullet
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ type: :development
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ! '>='
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ - !ruby/object:Gem::Dependency
143
+ name: rack-mini-profiler
144
+ requirement: !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - ! '>='
148
+ - !ruby/object:Gem::Version
149
+ version: '0'
150
+ type: :development
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ! '>='
156
+ - !ruby/object:Gem::Version
157
+ version: '0'
158
+ description: ''
159
+ email:
160
+ - ashrafuzzaman.g2@gmail.com
161
+ executables: []
162
+ extensions: []
163
+ extra_rdoc_files: []
164
+ files:
165
+ - app/controllers/discussion/threads_controller.rb
166
+ - app/controllers/discussion/application_controller.rb
167
+ - app/controllers/discussion/comments_controller.rb
168
+ - app/models/thread_sweeper.rb
169
+ - app/models/discussion/comment_read.rb
170
+ - app/models/discussion/thread_read.rb
171
+ - app/models/discussion/concerns.rb
172
+ - app/models/discussion/thread.rb
173
+ - app/models/discussion/comment.rb
174
+ - app/views/discussion/threads/show.js.erb
175
+ - app/views/discussion/threads/new.html.erb
176
+ - app/views/discussion/threads/_view.html.erb
177
+ - app/views/discussion/threads/index.js.erb
178
+ - app/views/discussion/threads/_form.html.erb
179
+ - app/views/discussion/threads/new.js.erb
180
+ - app/views/discussion/threads/index.html.erb
181
+ - app/views/discussion/threads/_index.html.erb
182
+ - app/views/discussion/threads/show.html.erb
183
+ - app/views/discussion/threads/_list.html.erb
184
+ - app/views/discussion/threads/list.html.erb
185
+ - app/views/discussion/threads/create.js.erb
186
+ - app/views/discussion/comments/_view.html.erb
187
+ - app/views/discussion/comments/index.js.erb
188
+ - app/views/discussion/comments/_form.html.erb
189
+ - app/views/discussion/comments/_list_with_form.html.erb
190
+ - app/views/discussion/comments/create.js.erb
191
+ - app/assets/stylesheets/scaffold.css
192
+ - app/assets/stylesheets/discussion/threads.css
193
+ - app/assets/stylesheets/discussion/application.css
194
+ - app/assets/javascripts/discussion/application.js
195
+ - app/assets/javascripts/discussion/discussion.js
196
+ - app/helpers/discussion/comments_helper.rb
197
+ - app/helpers/discussion/threads_helper.rb
198
+ - app/helpers/discussion/application_helper.rb
199
+ - config/routes.rb
200
+ - db/migrate/20130501080604_create_discussion_comment_reads.rb
201
+ - db/migrate/20130502121352_create_discussion_thread_reads.rb
202
+ - db/migrate/20130501075956_create_discussion_concerns.rb
203
+ - db/migrate/20130501074817_create_discussion_threads.rb
204
+ - db/migrate/20130501080150_create_discussion_comments.rb
205
+ - db/migrate/20130509100700_add_topic_to_threads.rb
206
+ - lib/generators/discussion/USAGE
207
+ - lib/generators/discussion/discussion_generator.rb
208
+ - lib/discussion/version.rb
209
+ - lib/discussion/engine.rb
210
+ - lib/tasks/discussion_tasks.rake
211
+ - lib/discussion.rb
212
+ - MIT-LICENSE
213
+ - Rakefile
214
+ - README.md
215
+ - test/functional/discussion/threads_controller_test.rb
216
+ - test/dummy/zeus.json
217
+ - test/dummy/script/rails
218
+ - test/dummy/spec/requests/assignments_spec.rb
219
+ - test/dummy/spec/controllers/assignments_controller_spec.rb
220
+ - test/dummy/spec/routing/assignments_routing_spec.rb
221
+ - test/dummy/spec/models/assignment_spec.rb
222
+ - test/dummy/spec/views/assignments/new.html.erb_spec.rb
223
+ - test/dummy/spec/views/assignments/edit.html.erb_spec.rb
224
+ - test/dummy/spec/views/assignments/show.html.erb_spec.rb
225
+ - test/dummy/spec/views/assignments/index.html.erb_spec.rb
226
+ - test/dummy/spec/helpers/assignments_helper_spec.rb
227
+ - test/dummy/config/initializers/secret_token.rb
228
+ - test/dummy/config/initializers/session_store.rb
229
+ - test/dummy/config/initializers/backtrace_silencers.rb
230
+ - test/dummy/config/initializers/wrap_parameters.rb
231
+ - test/dummy/config/initializers/inflections.rb
232
+ - test/dummy/config/initializers/mime_types.rb
233
+ - test/dummy/config/database.yml
234
+ - test/dummy/config/environment.rb
235
+ - test/dummy/config/environments/development.rb
236
+ - test/dummy/config/environments/production.rb
237
+ - test/dummy/config/environments/test.rb
238
+ - test/dummy/config/routes.rb
239
+ - test/dummy/config/application.rb
240
+ - test/dummy/config/locales/en.yml
241
+ - test/dummy/config/boot.rb
242
+ - test/dummy/log/development.log
243
+ - test/dummy/config.ru
244
+ - test/dummy/custom_plan.rb
245
+ - test/dummy/tmp/cache/5AA/581/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fapplication.css%3Fbody%3D1
246
+ - test/dummy/tmp/cache/B06/3F0/da9f60ff5af114f8058d98986d9c2350fd2df114
247
+ - test/dummy/tmp/cache/458/621/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fscaffold.css%3Fbody%3D1
248
+ - test/dummy/tmp/cache/C0F/F10/853eabd960e1d1c97f280dfde98cda31aceda31c
249
+ - test/dummy/tmp/cache/556/F41/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fassignments.js%3Fbody%3D1
250
+ - test/dummy/tmp/cache/A44/EA0/2898ba2093d346f7463a4396e46d4bd73590fd60
251
+ - test/dummy/tmp/cache/AEF/AF0/24b5ae4d0aa3c3e6f7898cc323c8434330bf6c48
252
+ - test/dummy/tmp/cache/9A9/BB0/total_unread_thread_by_6
253
+ - test/dummy/tmp/cache/5C2/331/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fassignments.css%3Fbody%3D1
254
+ - test/dummy/tmp/cache/C41/FC0/b5dff9ef4aa8e34a09fbc8bc024f3ddd59d711ba
255
+ - test/dummy/tmp/cache/53E/311/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fapplication.js%3Fbody%3D1
256
+ - test/dummy/tmp/cache/A1F/311/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fdiscussion%2Fapplication.js%3Fbody%3D1
257
+ - test/dummy/tmp/cache/AF9/0E0/96b52cbbdd9b2500e89198a5d9ac461e490d2d27
258
+ - test/dummy/tmp/cache/9CF/491/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fdiscussion%2Fdiscussion.js%3Fbody%3D1
259
+ - test/dummy/tmp/cache/BDA/810/586d7c0cfc531f2d9bffa4afa518cdde00e640a5
260
+ - test/dummy/tmp/cache/A53/930/8ab0f4219a7b2c19044a090115a45e76e43b268e
261
+ - test/dummy/tmp/cache/B21/980/93de869eb331c65cb1c7a282ae089ee1b9111fd1
262
+ - test/dummy/tmp/cache/34A/041/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fjquery.js%3Fbody%3D1
263
+ - test/dummy/tmp/cache/4FB/6C1/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fjquery_ujs.js%3Fbody%3D1
264
+ - test/dummy/tmp/cache/assets/D92/C00/sprockets%2Fdd4af168d08e874f3d9c8e2d1f7d9898
265
+ - test/dummy/tmp/cache/assets/D6C/290/sprockets%2Fedf363ea932d74107ecad71304e3c69d
266
+ - test/dummy/tmp/cache/assets/C80/A60/sprockets%2F3d71727f9a9628e5ea4071de13513523
267
+ - test/dummy/tmp/cache/assets/D69/160/sprockets%2Fd50935d69817529b1cb6e6cadc111aec
268
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
269
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
270
+ - test/dummy/tmp/cache/assets/D40/4E0/sprockets%2F441fdbbb1185dcb64934067f3a64f85e
271
+ - test/dummy/tmp/cache/assets/D59/650/sprockets%2F0e15e6c08b5d2c6fc092a5a804f1a4a2
272
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
273
+ - test/dummy/tmp/cache/assets/D34/9E0/sprockets%2F11dabe8b1273c07cacd98060623de865
274
+ - test/dummy/tmp/cache/assets/CEE/900/sprockets%2Fa62a39d06b7d4de441784b9974f92e52
275
+ - test/dummy/tmp/cache/assets/D81/A20/sprockets%2F7fe1c5ae586747d5bba86892a2df7f42
276
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
277
+ - test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212
278
+ - test/dummy/tmp/cache/assets/CE3/D10/sprockets%2F966d9544f2171c807e5dd194302de1cc
279
+ - test/dummy/tmp/cache/assets/CBB/080/sprockets%2F2d799cd88730be6f8d442356020b671f
280
+ - test/dummy/tmp/cache/assets/D6D/870/sprockets%2F0b22785b6eb9daa3c9480e70771b6bed
281
+ - test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2
282
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
283
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
284
+ - test/dummy/tmp/cache/B8A/9B0/8446a97c4cbd4f1c6650b6dda8f7381cacfe5f31
285
+ - test/dummy/tmp/cache/B72/C30/6c7fd8edb7af04528edf3f4c189f498ef511349e
286
+ - test/dummy/tmp/cache/B1C/810/9e06e1eec0d1350714a34d137eb4e4e93df71d7b
287
+ - test/dummy/tmp/cache/ACB/C60/2d70f6e0b599912c0a0a476f7d1d873d16fc587a
288
+ - test/dummy/tmp/cache/ACB/1C0/61e9711fd55eccdf62882cb8d127b22664f7023f
289
+ - test/dummy/tmp/cache/A9B/580/326f111948a98b94ce79f7ead20a6a8f6134316a
290
+ - test/dummy/tmp/cache/A91/340/3f3d2d8955322f325af6db2238355fa07007ebd9
291
+ - test/dummy/tmp/cache/B69/300/03c05703ee2f7ecbe9331dabc80cb14364ae1cd4
292
+ - test/dummy/tmp/cache/BE1/FA0/cef8de7e145c5aba7808de00a8b78750bfeba3b4
293
+ - test/dummy/tmp/cache/B52/020/723598e1e44b35d4f2dca9ba0d3d1fa86fb63c81
294
+ - test/dummy/tmp/cache/B27/910/da39a3ee5e6b4b0d3255bfef95601890afd80709
295
+ - test/dummy/tmp/cache/B30/970/7c338ed2840d2bf55f9f5e4eed04f66c80840eb3
296
+ - test/dummy/Rakefile
297
+ - test/dummy/README.rdoc
298
+ - test/dummy/db/schema.rb
299
+ - test/dummy/db/development.sqlite3
300
+ - test/dummy/db/seed.rb
301
+ - test/dummy/db/migrate/20130502144148_create_discussion_thread_reads.discussion.rb
302
+ - test/dummy/db/migrate/20130501154800_create_discussion_threads.discussion.rb
303
+ - test/dummy/db/migrate/20120624033524_devise_create_users.rb
304
+ - test/dummy/db/migrate/20130501154802_create_discussion_comments.discussion.rb
305
+ - test/dummy/db/migrate/20130501154803_create_discussion_comment_reads.discussion.rb
306
+ - test/dummy/db/migrate/20130509101334_add_topic_to_threads.discussion.rb
307
+ - test/dummy/db/migrate/20130509101316_create_assignments.rb
308
+ - test/dummy/db/migrate/20130501154801_create_discussion_concerns.discussion.rb
309
+ - test/dummy/db/test.sqlite3
310
+ - test/dummy/app/controllers/assignments_controller.rb
311
+ - test/dummy/app/controllers/application_controller.rb
312
+ - test/dummy/app/models/assignment.rb
313
+ - test/dummy/app/models/user.rb
314
+ - test/dummy/app/views/assignments/edit.html.erb
315
+ - test/dummy/app/views/assignments/new.html.erb
316
+ - test/dummy/app/views/assignments/_form.html.erb
317
+ - test/dummy/app/views/assignments/index.html.erb
318
+ - test/dummy/app/views/assignments/show.html.erb
319
+ - test/dummy/app/views/layouts/discussion/application.html.erb
320
+ - test/dummy/app/views/layouts/application.html.erb
321
+ - test/dummy/app/assets/stylesheets/assignments.css
322
+ - test/dummy/app/assets/stylesheets/scaffold.css
323
+ - test/dummy/app/assets/stylesheets/application.css
324
+ - test/dummy/app/assets/javascripts/application.js
325
+ - test/dummy/app/assets/javascripts/assignments.js
326
+ - test/dummy/app/helpers/assignments_helper.rb
327
+ - test/dummy/app/helpers/application_helper.rb
328
+ - test/dummy/public/404.html
329
+ - test/dummy/public/422.html
330
+ - test/dummy/public/favicon.ico
331
+ - test/dummy/public/500.html
332
+ - test/discussion_test.rb
333
+ - test/test_helper.rb
334
+ - test/integration/navigation_test.rb
335
+ - test/unit/helpers/discussion/threads_helper_test.rb
336
+ - test/unit/discussion/thread_read_test.rb
337
+ - test/unit/discussion/comment_read_test.rb
338
+ - test/unit/discussion/thread_test.rb
339
+ - test/unit/discussion/comment_test.rb
340
+ - test/unit/discussion/concerns_test.rb
341
+ homepage: https://github.com/ashrafuzzaman/discussion
342
+ licenses: []
343
+ post_install_message:
344
+ rdoc_options: []
345
+ require_paths:
346
+ - lib
347
+ required_ruby_version: !ruby/object:Gem::Requirement
348
+ none: false
349
+ requirements:
350
+ - - ! '>='
351
+ - !ruby/object:Gem::Version
352
+ version: '0'
353
+ required_rubygems_version: !ruby/object:Gem::Requirement
354
+ none: false
355
+ requirements:
356
+ - - ! '>='
357
+ - !ruby/object:Gem::Version
358
+ version: '0'
359
+ requirements: []
360
+ rubyforge_project:
361
+ rubygems_version: 1.8.25
362
+ signing_key:
363
+ specification_version: 3
364
+ summary: A gem to manage a thread discussion with ajax support.
365
+ test_files:
366
+ - test/functional/discussion/threads_controller_test.rb
367
+ - test/dummy/zeus.json
368
+ - test/dummy/script/rails
369
+ - test/dummy/spec/requests/assignments_spec.rb
370
+ - test/dummy/spec/controllers/assignments_controller_spec.rb
371
+ - test/dummy/spec/routing/assignments_routing_spec.rb
372
+ - test/dummy/spec/models/assignment_spec.rb
373
+ - test/dummy/spec/views/assignments/new.html.erb_spec.rb
374
+ - test/dummy/spec/views/assignments/edit.html.erb_spec.rb
375
+ - test/dummy/spec/views/assignments/show.html.erb_spec.rb
376
+ - test/dummy/spec/views/assignments/index.html.erb_spec.rb
377
+ - test/dummy/spec/helpers/assignments_helper_spec.rb
378
+ - test/dummy/config/initializers/secret_token.rb
379
+ - test/dummy/config/initializers/session_store.rb
380
+ - test/dummy/config/initializers/backtrace_silencers.rb
381
+ - test/dummy/config/initializers/wrap_parameters.rb
382
+ - test/dummy/config/initializers/inflections.rb
383
+ - test/dummy/config/initializers/mime_types.rb
384
+ - test/dummy/config/database.yml
385
+ - test/dummy/config/environment.rb
386
+ - test/dummy/config/environments/development.rb
387
+ - test/dummy/config/environments/production.rb
388
+ - test/dummy/config/environments/test.rb
389
+ - test/dummy/config/routes.rb
390
+ - test/dummy/config/application.rb
391
+ - test/dummy/config/locales/en.yml
392
+ - test/dummy/config/boot.rb
393
+ - test/dummy/log/development.log
394
+ - test/dummy/config.ru
395
+ - test/dummy/custom_plan.rb
396
+ - test/dummy/tmp/cache/5AA/581/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fapplication.css%3Fbody%3D1
397
+ - test/dummy/tmp/cache/B06/3F0/da9f60ff5af114f8058d98986d9c2350fd2df114
398
+ - test/dummy/tmp/cache/458/621/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fscaffold.css%3Fbody%3D1
399
+ - test/dummy/tmp/cache/C0F/F10/853eabd960e1d1c97f280dfde98cda31aceda31c
400
+ - test/dummy/tmp/cache/556/F41/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fassignments.js%3Fbody%3D1
401
+ - test/dummy/tmp/cache/A44/EA0/2898ba2093d346f7463a4396e46d4bd73590fd60
402
+ - test/dummy/tmp/cache/AEF/AF0/24b5ae4d0aa3c3e6f7898cc323c8434330bf6c48
403
+ - test/dummy/tmp/cache/9A9/BB0/total_unread_thread_by_6
404
+ - test/dummy/tmp/cache/5C2/331/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fassignments.css%3Fbody%3D1
405
+ - test/dummy/tmp/cache/C41/FC0/b5dff9ef4aa8e34a09fbc8bc024f3ddd59d711ba
406
+ - test/dummy/tmp/cache/53E/311/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fapplication.js%3Fbody%3D1
407
+ - test/dummy/tmp/cache/A1F/311/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fdiscussion%2Fapplication.js%3Fbody%3D1
408
+ - test/dummy/tmp/cache/AF9/0E0/96b52cbbdd9b2500e89198a5d9ac461e490d2d27
409
+ - test/dummy/tmp/cache/9CF/491/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fdiscussion%2Fdiscussion.js%3Fbody%3D1
410
+ - test/dummy/tmp/cache/BDA/810/586d7c0cfc531f2d9bffa4afa518cdde00e640a5
411
+ - test/dummy/tmp/cache/A53/930/8ab0f4219a7b2c19044a090115a45e76e43b268e
412
+ - test/dummy/tmp/cache/B21/980/93de869eb331c65cb1c7a282ae089ee1b9111fd1
413
+ - test/dummy/tmp/cache/34A/041/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fjquery.js%3Fbody%3D1
414
+ - test/dummy/tmp/cache/4FB/6C1/http%3A%2F%2Flocalhost%3A3000%2Fassets%2Fjquery_ujs.js%3Fbody%3D1
415
+ - test/dummy/tmp/cache/assets/D92/C00/sprockets%2Fdd4af168d08e874f3d9c8e2d1f7d9898
416
+ - test/dummy/tmp/cache/assets/D6C/290/sprockets%2Fedf363ea932d74107ecad71304e3c69d
417
+ - test/dummy/tmp/cache/assets/C80/A60/sprockets%2F3d71727f9a9628e5ea4071de13513523
418
+ - test/dummy/tmp/cache/assets/D69/160/sprockets%2Fd50935d69817529b1cb6e6cadc111aec
419
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
420
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
421
+ - test/dummy/tmp/cache/assets/D40/4E0/sprockets%2F441fdbbb1185dcb64934067f3a64f85e
422
+ - test/dummy/tmp/cache/assets/D59/650/sprockets%2F0e15e6c08b5d2c6fc092a5a804f1a4a2
423
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
424
+ - test/dummy/tmp/cache/assets/D34/9E0/sprockets%2F11dabe8b1273c07cacd98060623de865
425
+ - test/dummy/tmp/cache/assets/CEE/900/sprockets%2Fa62a39d06b7d4de441784b9974f92e52
426
+ - test/dummy/tmp/cache/assets/D81/A20/sprockets%2F7fe1c5ae586747d5bba86892a2df7f42
427
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
428
+ - test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212
429
+ - test/dummy/tmp/cache/assets/CE3/D10/sprockets%2F966d9544f2171c807e5dd194302de1cc
430
+ - test/dummy/tmp/cache/assets/CBB/080/sprockets%2F2d799cd88730be6f8d442356020b671f
431
+ - test/dummy/tmp/cache/assets/D6D/870/sprockets%2F0b22785b6eb9daa3c9480e70771b6bed
432
+ - test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2
433
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
434
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
435
+ - test/dummy/tmp/cache/B8A/9B0/8446a97c4cbd4f1c6650b6dda8f7381cacfe5f31
436
+ - test/dummy/tmp/cache/B72/C30/6c7fd8edb7af04528edf3f4c189f498ef511349e
437
+ - test/dummy/tmp/cache/B1C/810/9e06e1eec0d1350714a34d137eb4e4e93df71d7b
438
+ - test/dummy/tmp/cache/ACB/C60/2d70f6e0b599912c0a0a476f7d1d873d16fc587a
439
+ - test/dummy/tmp/cache/ACB/1C0/61e9711fd55eccdf62882cb8d127b22664f7023f
440
+ - test/dummy/tmp/cache/A9B/580/326f111948a98b94ce79f7ead20a6a8f6134316a
441
+ - test/dummy/tmp/cache/A91/340/3f3d2d8955322f325af6db2238355fa07007ebd9
442
+ - test/dummy/tmp/cache/B69/300/03c05703ee2f7ecbe9331dabc80cb14364ae1cd4
443
+ - test/dummy/tmp/cache/BE1/FA0/cef8de7e145c5aba7808de00a8b78750bfeba3b4
444
+ - test/dummy/tmp/cache/B52/020/723598e1e44b35d4f2dca9ba0d3d1fa86fb63c81
445
+ - test/dummy/tmp/cache/B27/910/da39a3ee5e6b4b0d3255bfef95601890afd80709
446
+ - test/dummy/tmp/cache/B30/970/7c338ed2840d2bf55f9f5e4eed04f66c80840eb3
447
+ - test/dummy/Rakefile
448
+ - test/dummy/README.rdoc
449
+ - test/dummy/db/schema.rb
450
+ - test/dummy/db/development.sqlite3
451
+ - test/dummy/db/seed.rb
452
+ - test/dummy/db/migrate/20130502144148_create_discussion_thread_reads.discussion.rb
453
+ - test/dummy/db/migrate/20130501154800_create_discussion_threads.discussion.rb
454
+ - test/dummy/db/migrate/20120624033524_devise_create_users.rb
455
+ - test/dummy/db/migrate/20130501154802_create_discussion_comments.discussion.rb
456
+ - test/dummy/db/migrate/20130501154803_create_discussion_comment_reads.discussion.rb
457
+ - test/dummy/db/migrate/20130509101334_add_topic_to_threads.discussion.rb
458
+ - test/dummy/db/migrate/20130509101316_create_assignments.rb
459
+ - test/dummy/db/migrate/20130501154801_create_discussion_concerns.discussion.rb
460
+ - test/dummy/db/test.sqlite3
461
+ - test/dummy/app/controllers/assignments_controller.rb
462
+ - test/dummy/app/controllers/application_controller.rb
463
+ - test/dummy/app/models/assignment.rb
464
+ - test/dummy/app/models/user.rb
465
+ - test/dummy/app/views/assignments/edit.html.erb
466
+ - test/dummy/app/views/assignments/new.html.erb
467
+ - test/dummy/app/views/assignments/_form.html.erb
468
+ - test/dummy/app/views/assignments/index.html.erb
469
+ - test/dummy/app/views/assignments/show.html.erb
470
+ - test/dummy/app/views/layouts/discussion/application.html.erb
471
+ - test/dummy/app/views/layouts/application.html.erb
472
+ - test/dummy/app/assets/stylesheets/assignments.css
473
+ - test/dummy/app/assets/stylesheets/scaffold.css
474
+ - test/dummy/app/assets/stylesheets/application.css
475
+ - test/dummy/app/assets/javascripts/application.js
476
+ - test/dummy/app/assets/javascripts/assignments.js
477
+ - test/dummy/app/helpers/assignments_helper.rb
478
+ - test/dummy/app/helpers/application_helper.rb
479
+ - test/dummy/public/404.html
480
+ - test/dummy/public/422.html
481
+ - test/dummy/public/favicon.ico
482
+ - test/dummy/public/500.html
483
+ - test/discussion_test.rb
484
+ - test/test_helper.rb
485
+ - test/integration/navigation_test.rb
486
+ - test/unit/helpers/discussion/threads_helper_test.rb
487
+ - test/unit/discussion/thread_read_test.rb
488
+ - test/unit/discussion/comment_read_test.rb
489
+ - test/unit/discussion/thread_test.rb
490
+ - test/unit/discussion/comment_test.rb
491
+ - test/unit/discussion/concerns_test.rb