discussion 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
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,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,160 @@
1
+ require 'spec_helper'
2
+
3
+ # This spec was generated by rspec-rails when you ran the scaffold generator.
4
+ # It demonstrates how one might use RSpec to specify the controller code that
5
+ # was generated by Rails when you ran the scaffold generator.
6
+ #
7
+ # It assumes that the implementation code is generated by the rails scaffold
8
+ # generator. If you are using any extension libraries to generate different
9
+ # controller code, this generated spec may or may not pass.
10
+ #
11
+ # It only uses APIs available in rails and/or rspec-rails. There are a number
12
+ # of tools you can use to make these specs even more expressive, but we're
13
+ # sticking to rails and rspec-rails APIs to keep things simple and stable.
14
+ #
15
+ # Compared to earlier versions of this generator, there is very limited use of
16
+ # stubs and comment expectations in this spec. Stubs are only used when there
17
+ # is no simpler way to get a handle on the object needed for the example.
18
+ # Message expectations are only used when there is no simpler way to specify
19
+ # that an instance is receiving a specific comment.
20
+
21
+ describe AssignmentsController do
22
+
23
+ # This should return the minimal set of attributes required to create a valid
24
+ # Assignment. As you add validations to Assignment, be sure to
25
+ # adjust the attributes here as well.
26
+ let(:valid_attributes) { { "title" => "MyString" } }
27
+
28
+ # This should return the minimal set of values that should be in the session
29
+ # in order to pass any filters (e.g. authentication) defined in
30
+ # AssignmentsController. Be sure to keep this updated too.
31
+ let(:valid_session) { {} }
32
+
33
+ describe "GET index" do
34
+ it "assigns all assignments as @assignments" do
35
+ assignment = Assignment.create! valid_attributes
36
+ get :index, {}, valid_session
37
+ assigns(:assignments).should eq([assignment])
38
+ end
39
+ end
40
+
41
+ describe "GET show" do
42
+ it "assigns the requested assignment as @assignment" do
43
+ assignment = Assignment.create! valid_attributes
44
+ get :show, {:id => assignment.to_param}, valid_session
45
+ assigns(:assignment).should eq(assignment)
46
+ end
47
+ end
48
+
49
+ describe "GET new" do
50
+ it "assigns a new assignment as @assignment" do
51
+ get :new, {}, valid_session
52
+ assigns(:assignment).should be_a_new(Assignment)
53
+ end
54
+ end
55
+
56
+ describe "GET edit" do
57
+ it "assigns the requested assignment as @assignment" do
58
+ assignment = Assignment.create! valid_attributes
59
+ get :edit, {:id => assignment.to_param}, valid_session
60
+ assigns(:assignment).should eq(assignment)
61
+ end
62
+ end
63
+
64
+ describe "POST create" do
65
+ describe "with valid params" do
66
+ it "creates a new Assignment" do
67
+ expect {
68
+ post :create, {:assignment => valid_attributes}, valid_session
69
+ }.to change(Assignment, :count).by(1)
70
+ end
71
+
72
+ it "assigns a newly created assignment as @assignment" do
73
+ post :create, {:assignment => valid_attributes}, valid_session
74
+ assigns(:assignment).should be_a(Assignment)
75
+ assigns(:assignment).should be_persisted
76
+ end
77
+
78
+ it "redirects to the created assignment" do
79
+ post :create, {:assignment => valid_attributes}, valid_session
80
+ response.should redirect_to(Assignment.last)
81
+ end
82
+ end
83
+
84
+ describe "with invalid params" do
85
+ it "assigns a newly created but unsaved assignment as @assignment" do
86
+ # Trigger the behavior that occurs when invalid params are submitted
87
+ Assignment.any_instance.stub(:save).and_return(false)
88
+ post :create, {:assignment => { "title" => "invalid value" }}, valid_session
89
+ assigns(:assignment).should be_a_new(Assignment)
90
+ end
91
+
92
+ it "re-renders the 'new' template" do
93
+ # Trigger the behavior that occurs when invalid params are submitted
94
+ Assignment.any_instance.stub(:save).and_return(false)
95
+ post :create, {:assignment => { "title" => "invalid value" }}, valid_session
96
+ response.should render_template("new")
97
+ end
98
+ end
99
+ end
100
+
101
+ describe "PUT update" do
102
+ describe "with valid params" do
103
+ it "updates the requested assignment" do
104
+ assignment = Assignment.create! valid_attributes
105
+ # Assuming there are no other assignments in the database, this
106
+ # specifies that the Assignment created on the previous line
107
+ # receives the :update_attributes comment with whatever params are
108
+ # submitted in the request.
109
+ Assignment.any_instance.should_receive(:update_attributes).with({ "title" => "MyString" })
110
+ put :update, {:id => assignment.to_param, :assignment => { "title" => "MyString" }}, valid_session
111
+ end
112
+
113
+ it "assigns the requested assignment as @assignment" do
114
+ assignment = Assignment.create! valid_attributes
115
+ put :update, {:id => assignment.to_param, :assignment => valid_attributes}, valid_session
116
+ assigns(:assignment).should eq(assignment)
117
+ end
118
+
119
+ it "redirects to the assignment" do
120
+ assignment = Assignment.create! valid_attributes
121
+ put :update, {:id => assignment.to_param, :assignment => valid_attributes}, valid_session
122
+ response.should redirect_to(assignment)
123
+ end
124
+ end
125
+
126
+ describe "with invalid params" do
127
+ it "assigns the assignment as @assignment" do
128
+ assignment = Assignment.create! valid_attributes
129
+ # Trigger the behavior that occurs when invalid params are submitted
130
+ Assignment.any_instance.stub(:save).and_return(false)
131
+ put :update, {:id => assignment.to_param, :assignment => { "title" => "invalid value" }}, valid_session
132
+ assigns(:assignment).should eq(assignment)
133
+ end
134
+
135
+ it "re-renders the 'edit' template" do
136
+ assignment = Assignment.create! valid_attributes
137
+ # Trigger the behavior that occurs when invalid params are submitted
138
+ Assignment.any_instance.stub(:save).and_return(false)
139
+ put :update, {:id => assignment.to_param, :assignment => { "title" => "invalid value" }}, valid_session
140
+ response.should render_template("edit")
141
+ end
142
+ end
143
+ end
144
+
145
+ describe "DELETE destroy" do
146
+ it "destroys the requested assignment" do
147
+ assignment = Assignment.create! valid_attributes
148
+ expect {
149
+ delete :destroy, {:id => assignment.to_param}, valid_session
150
+ }.to change(Assignment, :count).by(-1)
151
+ end
152
+
153
+ it "redirects to the assignments list" do
154
+ assignment = Assignment.create! valid_attributes
155
+ delete :destroy, {:id => assignment.to_param}, valid_session
156
+ response.should redirect_to(assignments_url)
157
+ end
158
+ end
159
+
160
+ end
@@ -0,0 +1,15 @@
1
+ require 'spec_helper'
2
+
3
+ # Specs in this file have access to a helper object that includes
4
+ # the AssignmentsHelper. For example:
5
+ #
6
+ # describe AssignmentsHelper do
7
+ # describe "string concat" do
8
+ # it "concats two strings with spaces" do
9
+ # helper.concat_strings("this","that").should == "this that"
10
+ # end
11
+ # end
12
+ # end
13
+ describe AssignmentsHelper do
14
+ pending "add some examples to (or delete) #{__FILE__}"
15
+ end
@@ -0,0 +1,5 @@
1
+ require 'spec_helper'
2
+
3
+ describe Assignment do
4
+ pending "add some examples to (or delete) #{__FILE__}"
5
+ end
@@ -0,0 +1,11 @@
1
+ require 'spec_helper'
2
+
3
+ describe "Assignments" do
4
+ describe "GET /assignments" do
5
+ it "works! (now write some real specs)" do
6
+ # Run the generator again with the --webrat flag if you want to use webrat methods/matchers
7
+ get assignments_path
8
+ response.status.should be(200)
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,35 @@
1
+ require "spec_helper"
2
+
3
+ describe AssignmentsController do
4
+ describe "routing" do
5
+
6
+ it "routes to #index" do
7
+ get("/assignments").should route_to("assignments#index")
8
+ end
9
+
10
+ it "routes to #new" do
11
+ get("/assignments/new").should route_to("assignments#new")
12
+ end
13
+
14
+ it "routes to #show" do
15
+ get("/assignments/1").should route_to("assignments#show", :id => "1")
16
+ end
17
+
18
+ it "routes to #edit" do
19
+ get("/assignments/1/edit").should route_to("assignments#edit", :id => "1")
20
+ end
21
+
22
+ it "routes to #create" do
23
+ post("/assignments").should route_to("assignments#create")
24
+ end
25
+
26
+ it "routes to #update" do
27
+ put("/assignments/1").should route_to("assignments#update", :id => "1")
28
+ end
29
+
30
+ it "routes to #destroy" do
31
+ delete("/assignments/1").should route_to("assignments#destroy", :id => "1")
32
+ end
33
+
34
+ end
35
+ end
@@ -0,0 +1,22 @@
1
+ require 'spec_helper'
2
+
3
+ describe "assignments/edit" do
4
+ before(:each) do
5
+ @assignment = assign(:assignment, stub_model(Assignment,
6
+ :title => "MyString",
7
+ :description => "MyString",
8
+ :text => "MyString"
9
+ ))
10
+ end
11
+
12
+ it "renders the edit assignment form" do
13
+ render
14
+
15
+ # Run the generator again with the --webrat flag if you want to use webrat matchers
16
+ assert_select "form[action=?][method=?]", assignment_path(@assignment), "post" do
17
+ assert_select "input#assignment_title[name=?]", "assignment[title]"
18
+ assert_select "input#assignment_description[name=?]", "assignment[description]"
19
+ assert_select "input#assignment_text[name=?]", "assignment[text]"
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,26 @@
1
+ require 'spec_helper'
2
+
3
+ describe "assignments/index" do
4
+ before(:each) do
5
+ assign(:assignments, [
6
+ stub_model(Assignment,
7
+ :title => "Title",
8
+ :description => "Description",
9
+ :text => "Text"
10
+ ),
11
+ stub_model(Assignment,
12
+ :title => "Title",
13
+ :description => "Description",
14
+ :text => "Text"
15
+ )
16
+ ])
17
+ end
18
+
19
+ it "renders a list of assignments" do
20
+ render
21
+ # Run the generator again with the --webrat flag if you want to use webrat matchers
22
+ assert_select "tr>td", :text => "Title".to_s, :count => 2
23
+ assert_select "tr>td", :text => "Description".to_s, :count => 2
24
+ assert_select "tr>td", :text => "Text".to_s, :count => 2
25
+ end
26
+ end
@@ -0,0 +1,22 @@
1
+ require 'spec_helper'
2
+
3
+ describe "assignments/new" do
4
+ before(:each) do
5
+ assign(:assignment, stub_model(Assignment,
6
+ :title => "MyString",
7
+ :description => "MyString",
8
+ :text => "MyString"
9
+ ).as_new_record)
10
+ end
11
+
12
+ it "renders new assignment form" do
13
+ render
14
+
15
+ # Run the generator again with the --webrat flag if you want to use webrat matchers
16
+ assert_select "form[action=?][method=?]", assignments_path, "post" do
17
+ assert_select "input#assignment_title[name=?]", "assignment[title]"
18
+ assert_select "input#assignment_description[name=?]", "assignment[description]"
19
+ assert_select "input#assignment_text[name=?]", "assignment[text]"
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,19 @@
1
+ require 'spec_helper'
2
+
3
+ describe "assignments/show" do
4
+ before(:each) do
5
+ @assignment = assign(:assignment, stub_model(Assignment,
6
+ :title => "Title",
7
+ :description => "Description",
8
+ :text => "Text"
9
+ ))
10
+ end
11
+
12
+ it "renders attributes in <p>" do
13
+ render
14
+ # Run the generator again with the --webrat flag if you want to use webrat matchers
15
+ rendered.should match(/Title/)
16
+ rendered.should match(/Description/)
17
+ rendered.should match(/Text/)
18
+ end
19
+ end
@@ -0,0 +1 @@
1
+ o: ActiveSupport::Cache::Entry :@compressedF:@expires_inf6e2:@created_atf1369713613.5660377: @value" i
@@ -0,0 +1,25 @@
1
+ o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1369712555.3349955: @value"�[I"�var Disussion = {
2
+ loadComments: function (url, contrinerId) {
3
+ $ = jQuery;
4
+
5
+ $('#' + contrinerId).trigger('loading_comments');
6
+
7
+ $('body').on('loading_comments', '.comments_container', function (e) {
8
+ alert('loading_comments');
9
+ });
10
+
11
+ $('body').trigger('loading_comments');
12
+ console.log($('#' + contrinerId));
13
+ $.ajax({
14
+ url: url,
15
+ dataType: 'script',
16
+ data: {contrinerId: contrinerId},
17
+ type: 'GET'
18
+ }).done(function () {
19
+ $('#' + contrinerId).trigger('loaded_comments');
20
+ console.log($('#' + contrinerId));
21
+ });
22
+ }
23
+ }
24
+ ;
25
+ :EF