inkwell 1.0.4 → 1.0.5

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 (34) hide show
  1. data/db/migrate/20130202130010_change_tables_for_communities.rb +1 -1
  2. data/db/migrate/20130202130020_add_community_ids_to_post.rb +1 -1
  3. data/lib/inkwell/version.rb +1 -1
  4. data/test/dummy/db/development.sqlite3 +0 -0
  5. data/test/dummy/db/migrate/{20130206112225_create_inkwell_timeline_items.inkwell.rb → 20130208134948_create_inkwell_timeline_items.inkwell.rb} +0 -0
  6. data/test/dummy/db/migrate/{20130206112226_add_columns_to_posts.inkwell.rb → 20130208134949_add_columns_to_posts.inkwell.rb} +0 -0
  7. data/test/dummy/db/migrate/{20130206112227_create_inkwell_blog_items.inkwell.rb → 20130208134950_create_inkwell_blog_items.inkwell.rb} +0 -0
  8. data/test/dummy/db/migrate/{20130206112228_create_inkwell_favorite_items.inkwell.rb → 20130208134951_create_inkwell_favorite_items.inkwell.rb} +0 -0
  9. data/test/dummy/db/migrate/{20130206112229_add_columns_to_users.inkwell.rb → 20130208134952_add_columns_to_users.inkwell.rb} +0 -0
  10. data/test/dummy/db/migrate/{20130206112230_create_inkwell_comments.inkwell.rb → 20130208134953_create_inkwell_comments.inkwell.rb} +0 -0
  11. data/test/dummy/db/migrate/{20130206112231_change_tables_for_communities.inkwell.rb → 20130208134954_change_tables_for_communities.inkwell.rb} +1 -1
  12. data/test/dummy/db/migrate/{20130207112455_add_community_ids_to_post.inkwell.rb → 20130208134955_add_community_ids_to_post.inkwell.rb} +1 -1
  13. data/test/dummy/db/schema.rb +1 -1
  14. data/test/dummy/db/test.sqlite3 +0 -0
  15. data/test/dummy/log/development.log +124 -0
  16. data/test/dummy/log/test.log +9287 -0
  17. data/test/dummy_without_community/db/development.sqlite3 +0 -0
  18. data/test/dummy_without_community/db/migrate/{20130120124010_create_inkwell_timeline_items.rb → 20130208134743_create_inkwell_timeline_items.inkwell.rb} +1 -0
  19. data/test/dummy_without_community/db/migrate/{20130120124011_add_columns_to_posts.rb → 20130208134744_add_columns_to_posts.inkwell.rb} +1 -0
  20. data/test/dummy_without_community/db/migrate/{20130120124012_create_inkwell_blog_items.rb → 20130208134745_create_inkwell_blog_items.inkwell.rb} +1 -0
  21. data/test/dummy_without_community/db/migrate/{20130120124013_create_inkwell_favorite_items.rb → 20130208134746_create_inkwell_favorite_items.inkwell.rb} +1 -0
  22. data/test/dummy_without_community/db/migrate/{20130120124014_add_columns_to_users.rb → 20130208134747_add_columns_to_users.inkwell.rb} +1 -0
  23. data/test/dummy_without_community/db/migrate/{20130120124015_create_inkwell_comments.rb → 20130208134748_create_inkwell_comments.inkwell.rb} +1 -0
  24. data/test/dummy_without_community/db/migrate/20130208134749_change_tables_for_communities.inkwell.rb +21 -0
  25. data/test/dummy_without_community/db/migrate/20130208134750_add_community_ids_to_post.inkwell.rb +8 -0
  26. data/test/dummy_without_community/db/schema.rb +19 -18
  27. data/test/dummy_without_community/db/test.sqlite3 +0 -0
  28. data/test/dummy_without_community/log/development.log +194 -0
  29. data/test/dummy_without_community/log/test.log +12555 -0
  30. data/test/dummy_without_community/spec/functional/blogline_spec.rb +4 -3
  31. data/test/dummy_without_community/spec/functional/comments_spec.rb +11 -11
  32. data/test/dummy_without_community/spec/functional/following_spec.rb +10 -0
  33. data/test/dummy_without_community/spec/functional/reblog_spec.rb +4 -4
  34. metadata +45 -41
@@ -9,9 +9,10 @@ describe "BlogLine" do
9
9
  end
10
10
 
11
11
  it "blogitem record should been created for new post" do
12
- @salkar.blog_items.size.should == 1
13
- item = @salkar.blog_items.first
14
- item.user_id.should == @salkar.id
12
+ ::Inkwell::BlogItem.where(:owner_id => @salkar.id, :is_owner_user => true).size.should == 1
13
+ item = ::Inkwell::BlogItem.where(:owner_id => @salkar.id, :is_owner_user => true).first
14
+ item.owner_id.should == @salkar.id
15
+ item.is_owner_user.should be
15
16
  item.item_id.should == @salkar_post.id
16
17
  item.is_reblog.should == false
17
18
  item.is_comment.should == false
@@ -156,8 +156,8 @@ describe "Comments" do
156
156
  users_ids_who_comment_it.should == [{"user_id"=>@salkar.id, "comment_id"=>@comment.id}]
157
157
  ::Inkwell::TimelineItem.create :item_id => @comment.id, :user_id => @morozovm.id, :is_comment => true
158
158
  ::Inkwell::FavoriteItem.create :item_id => @comment.id, :user_id => @salkar.id, :is_comment => true
159
- ::Inkwell::BlogItem.create :item_id => @comment.id, :user_id => @morozovm.id, :is_comment => true
160
- ::Inkwell::BlogItem.create :item_id => @comment.id, :user_id => @salkar.id, :is_comment => true
159
+ ::Inkwell::BlogItem.create :item_id => @comment.id, :owner_id => @morozovm.id, :is_owner_user => true, :is_comment => true
160
+ ::Inkwell::BlogItem.create :item_id => @comment.id, :owner_id => @salkar.id, :is_owner_user => true, :is_comment => true
161
161
  ::Inkwell::FavoriteItem.all.size.should == 1
162
162
  ::Inkwell::TimelineItem.all.size.should == 1
163
163
  ::Inkwell::BlogItem.all.size.should == 3
@@ -183,9 +183,9 @@ describe "Comments" do
183
183
  ::Inkwell::FavoriteItem.create :item_id => @comment_to_delete.id, :user_id => @salkar.id, :is_comment => true
184
184
  ::Inkwell::TimelineItem.create :item_id => @comment.id, :user_id => @morozovm.id, :is_comment => true
185
185
  ::Inkwell::FavoriteItem.create :item_id => @comment.id, :user_id => @salkar.id, :is_comment => true
186
- ::Inkwell::BlogItem.create :item_id => @comment_to_delete.id, :user_id => @morozovm.id, :is_comment => true
187
- ::Inkwell::BlogItem.create :item_id => @comment_to_delete.id, :user_id => @salkar.id, :is_comment => true
188
- ::Inkwell::BlogItem.create :item_id => @comment.id, :user_id => @salkar.id, :is_comment => true
186
+ ::Inkwell::BlogItem.create :item_id => @comment_to_delete.id, :owner_id => @morozovm.id, :is_owner_user => true, :is_comment => true
187
+ ::Inkwell::BlogItem.create :item_id => @comment_to_delete.id, :owner_id => @salkar.id, :is_owner_user => true, :is_comment => true
188
+ ::Inkwell::BlogItem.create :item_id => @comment.id, :owner_id => @salkar.id, :is_owner_user => true, :is_comment => true
189
189
  ::Inkwell::FavoriteItem.all.size.should == 2
190
190
  ::Inkwell::TimelineItem.all.size.should == 2
191
191
  ::Inkwell::BlogItem.all.size.should == 4
@@ -214,9 +214,9 @@ describe "Comments" do
214
214
  ::Inkwell::FavoriteItem.create :item_id => @comment2.id, :user_id => @salkar.id, :is_comment => true
215
215
  ::Inkwell::TimelineItem.create :item_id => @comment.id, :user_id => @morozovm.id, :is_comment => true
216
216
  ::Inkwell::FavoriteItem.create :item_id => @comment.id, :user_id => @salkar.id, :is_comment => true
217
- ::Inkwell::BlogItem.create :item_id => @comment2.id, :user_id => @morozovm.id, :is_comment => true
218
- ::Inkwell::BlogItem.create :item_id => @comment2.id, :user_id => @salkar.id, :is_comment => true
219
- ::Inkwell::BlogItem.create :item_id => @comment.id, :user_id => @salkar.id, :is_comment => true
217
+ ::Inkwell::BlogItem.create :item_id => @comment2.id, :owner_id => @morozovm.id, :is_owner_user => true, :is_comment => true
218
+ ::Inkwell::BlogItem.create :item_id => @comment2.id, :owner_id => @salkar.id, :is_owner_user => true, :is_comment => true
219
+ ::Inkwell::BlogItem.create :item_id => @comment.id, :owner_id => @salkar.id, :is_owner_user => true, :is_comment => true
220
220
  ::Inkwell::FavoriteItem.all.size.should == 2
221
221
  ::Inkwell::TimelineItem.all.size.should == 2
222
222
  ::Inkwell::BlogItem.all.size.should == 4
@@ -245,9 +245,9 @@ describe "Comments" do
245
245
  ::Inkwell::FavoriteItem.create :item_id => @comment2.id, :user_id => @salkar.id, :is_comment => true
246
246
  ::Inkwell::TimelineItem.create :item_id => @comment.id, :user_id => @morozovm.id, :is_comment => true
247
247
  ::Inkwell::FavoriteItem.create :item_id => @comment.id, :user_id => @salkar.id, :is_comment => true
248
- ::Inkwell::BlogItem.create :item_id => @comment2.id, :user_id => @morozovm.id, :is_comment => true
249
- ::Inkwell::BlogItem.create :item_id => @comment2.id, :user_id => @salkar.id, :is_comment => true
250
- ::Inkwell::BlogItem.create :item_id => @comment.id, :user_id => @salkar.id, :is_comment => true
248
+ ::Inkwell::BlogItem.create :item_id => @comment2.id, :owner_id => @morozovm.id, :is_owner_user => true, :is_comment => true
249
+ ::Inkwell::BlogItem.create :item_id => @comment2.id, :owner_id => @salkar.id, :is_owner_user => true, :is_comment => true
250
+ ::Inkwell::BlogItem.create :item_id => @comment.id, :owner_id => @salkar.id, :is_owner_user => true, :is_comment => true
251
251
  ::Inkwell::FavoriteItem.all.size.should == 2
252
252
  ::Inkwell::TimelineItem.all.size.should == 2
253
253
  ::Inkwell::BlogItem.all.size.should == 4
@@ -116,5 +116,15 @@ describe "Following" do
116
116
  item.has_many_sources.should == false
117
117
  end
118
118
 
119
+ it "self reblogs after follow should not transferred to timeline" do
120
+ @talisman = User.create :nick => "Talisman"
121
+ @talisman.reblog @salkar_post
122
+ @salkar.follow @talisman
123
+ @salkar.reload
124
+ @salkar.timeline.size.should == 0
125
+ end
126
+
127
+
128
+
119
129
 
120
130
  end
@@ -13,14 +13,14 @@ describe "Reblog" do
13
13
  it "user should reblog post" do
14
14
  @morozovm.reblog @salkar_post
15
15
  ::Inkwell::BlogItem.where(:item_id => @salkar_post.id, :is_comment => false).size.should == 2
16
- ::Inkwell::BlogItem.where(:item_id => @salkar_post.id, :is_comment => false, :user_id => @morozovm.id, :is_reblog => true).size.should == 1
16
+ ::Inkwell::BlogItem.where(:item_id => @salkar_post.id, :is_comment => false, :owner_id => @morozovm.id, :is_owner_user => true, :is_reblog => true).size.should == 1
17
17
  @salkar_post.reload
18
18
  @salkar_post.users_ids_who_reblog_it.should == "[#{@morozovm.id}]"
19
19
  end
20
20
 
21
21
  it "user should reblog comment" do
22
22
  @morozovm.reblog @salkar_comment
23
- ::Inkwell::BlogItem.where(:item_id => @salkar_comment.id, :is_comment => true, :user_id => @morozovm.id, :is_reblog => true).size.should == 1
23
+ ::Inkwell::BlogItem.where(:item_id => @salkar_comment.id, :is_comment => true, :owner_id => @morozovm.id, :is_owner_user => true, :is_reblog => true).size.should == 1
24
24
  @salkar_comment.reload
25
25
  @salkar_comment.users_ids_who_reblog_it.should == "[#{@morozovm.id}]"
26
26
  end
@@ -92,7 +92,7 @@ describe "Reblog" do
92
92
  @morozovm.reblog @salkar_post
93
93
  @morozovm.unreblog @salkar_post
94
94
  ::Inkwell::BlogItem.where(:item_id => @salkar_post.id, :is_comment => false).size.should == 1
95
- ::Inkwell::BlogItem.where(:item_id => @salkar_post.id, :is_comment => false, :user_id => @morozovm.id, :is_reblog => true).size.should == 0
95
+ ::Inkwell::BlogItem.where(:item_id => @salkar_post.id, :is_comment => false, :owner_id => @morozovm.id, :is_owner_user => true, :is_reblog => true).size.should == 0
96
96
  @salkar_post.reload
97
97
  @salkar_post.users_ids_who_reblog_it.should == "[]"
98
98
  end
@@ -100,7 +100,7 @@ describe "Reblog" do
100
100
  it "user should unreblog comment" do
101
101
  @morozovm.reblog @salkar_comment
102
102
  @morozovm.unreblog @salkar_comment
103
- ::Inkwell::BlogItem.where(:item_id => @salkar_comment.id, :is_comment => true, :user_id => @morozovm.id, :is_reblog => true).size.should == 0
103
+ ::Inkwell::BlogItem.where(:item_id => @salkar_comment.id, :is_comment => true, :owner_id => @morozovm.id, :is_owner_user => true, :is_reblog => true).size.should == 0
104
104
  @salkar_comment.reload
105
105
  @salkar_comment.users_ids_who_reblog_it.should == "[]"
106
106
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inkwell
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2013-02-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: railties
16
- requirement: &73115360 !ruby/object:Gem::Requirement
16
+ requirement: &69687760 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 3.1.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *73115360
24
+ version_requirements: *69687760
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: activerecord
27
- requirement: &73114850 !ruby/object:Gem::Requirement
27
+ requirement: &69687510 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: 3.1.0
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *73114850
35
+ version_requirements: *69687510
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: rspec-rails
38
- requirement: &73114330 !ruby/object:Gem::Requirement
38
+ requirement: &69687320 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: '0'
44
44
  type: :development
45
45
  prerelease: false
46
- version_requirements: *73114330
46
+ version_requirements: *69687320
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: database_cleaner
49
- requirement: &74491890 !ruby/object:Gem::Requirement
49
+ requirement: &69687090 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ! '>='
@@ -54,10 +54,10 @@ dependencies:
54
54
  version: '0'
55
55
  type: :development
56
56
  prerelease: false
57
- version_requirements: *74491890
57
+ version_requirements: *69687090
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: sqlite3
60
- requirement: &74491680 !ruby/object:Gem::Requirement
60
+ requirement: &69686880 !ruby/object:Gem::Requirement
61
61
  none: false
62
62
  requirements:
63
63
  - - ! '>='
@@ -65,10 +65,10 @@ dependencies:
65
65
  version: '0'
66
66
  type: :development
67
67
  prerelease: false
68
- version_requirements: *74491680
68
+ version_requirements: *69686880
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rails
71
- requirement: &74491430 !ruby/object:Gem::Requirement
71
+ requirement: &69686630 !ruby/object:Gem::Requirement
72
72
  none: false
73
73
  requirements:
74
74
  - - ! '>='
@@ -76,7 +76,7 @@ dependencies:
76
76
  version: 3.1.0
77
77
  type: :development
78
78
  prerelease: false
79
- version_requirements: *74491430
79
+ version_requirements: *69686630
80
80
  description: Inkwell provides simple way to add social networking features like comments,
81
81
  reblogs, favorites, following/followers, communities and timelines to your Ruby
82
82
  on Rails application.
@@ -163,14 +163,16 @@ files:
163
163
  - test/dummy_without_community/db/schema.rb
164
164
  - test/dummy_without_community/db/seeds.rb
165
165
  - test/dummy_without_community/db/test.sqlite3
166
- - test/dummy_without_community/db/migrate/20130120124015_create_inkwell_comments.rb
167
- - test/dummy_without_community/db/migrate/20130120124010_create_inkwell_timeline_items.rb
168
- - test/dummy_without_community/db/migrate/20130120124012_create_inkwell_blog_items.rb
169
- - test/dummy_without_community/db/migrate/20130120124011_add_columns_to_posts.rb
166
+ - test/dummy_without_community/db/migrate/20130208134749_change_tables_for_communities.inkwell.rb
167
+ - test/dummy_without_community/db/migrate/20130208134745_create_inkwell_blog_items.inkwell.rb
170
168
  - test/dummy_without_community/db/migrate/20121202112556_create_users.rb
171
- - test/dummy_without_community/db/migrate/20130120124013_create_inkwell_favorite_items.rb
172
- - test/dummy_without_community/db/migrate/20130120124014_add_columns_to_users.rb
169
+ - test/dummy_without_community/db/migrate/20130208134743_create_inkwell_timeline_items.inkwell.rb
170
+ - test/dummy_without_community/db/migrate/20130208134748_create_inkwell_comments.inkwell.rb
171
+ - test/dummy_without_community/db/migrate/20130208134744_add_columns_to_posts.inkwell.rb
172
+ - test/dummy_without_community/db/migrate/20130208134746_create_inkwell_favorite_items.inkwell.rb
173
173
  - test/dummy_without_community/db/migrate/20121202111750_create_posts.rb
174
+ - test/dummy_without_community/db/migrate/20130208134750_add_community_ids_to_post.inkwell.rb
175
+ - test/dummy_without_community/db/migrate/20130208134747_add_columns_to_users.inkwell.rb
174
176
  - test/dummy_without_community/log/development.log
175
177
  - test/dummy_without_community/log/test.log
176
178
  - test/dummy_without_community/public/500.html
@@ -229,17 +231,17 @@ files:
229
231
  - test/dummy/db/schema.rb
230
232
  - test/dummy/db/seeds.rb
231
233
  - test/dummy/db/test.sqlite3
234
+ - test/dummy/db/migrate/20130208134951_create_inkwell_favorite_items.inkwell.rb
235
+ - test/dummy/db/migrate/20130208134949_add_columns_to_posts.inkwell.rb
236
+ - test/dummy/db/migrate/20130208134955_add_community_ids_to_post.inkwell.rb
232
237
  - test/dummy/db/migrate/20121202112556_create_users.rb
233
- - test/dummy/db/migrate/20130206112226_add_columns_to_posts.inkwell.rb
238
+ - test/dummy/db/migrate/20130208134952_add_columns_to_users.inkwell.rb
239
+ - test/dummy/db/migrate/20130208134954_change_tables_for_communities.inkwell.rb
234
240
  - test/dummy/db/migrate/20130201155147_create_communities.rb
235
- - test/dummy/db/migrate/20130206112229_add_columns_to_users.inkwell.rb
241
+ - test/dummy/db/migrate/20130208134950_create_inkwell_blog_items.inkwell.rb
242
+ - test/dummy/db/migrate/20130208134953_create_inkwell_comments.inkwell.rb
243
+ - test/dummy/db/migrate/20130208134948_create_inkwell_timeline_items.inkwell.rb
236
244
  - test/dummy/db/migrate/20121202111750_create_posts.rb
237
- - test/dummy/db/migrate/20130206112227_create_inkwell_blog_items.inkwell.rb
238
- - test/dummy/db/migrate/20130206112225_create_inkwell_timeline_items.inkwell.rb
239
- - test/dummy/db/migrate/20130207112455_add_community_ids_to_post.inkwell.rb
240
- - test/dummy/db/migrate/20130206112228_create_inkwell_favorite_items.inkwell.rb
241
- - test/dummy/db/migrate/20130206112231_change_tables_for_communities.inkwell.rb
242
- - test/dummy/db/migrate/20130206112230_create_inkwell_comments.inkwell.rb
243
245
  - test/dummy/log/development.log
244
246
  - test/dummy/log/test.log
245
247
  - test/dummy/public/500.html
@@ -323,14 +325,16 @@ test_files:
323
325
  - test/dummy_without_community/db/schema.rb
324
326
  - test/dummy_without_community/db/seeds.rb
325
327
  - test/dummy_without_community/db/test.sqlite3
326
- - test/dummy_without_community/db/migrate/20130120124015_create_inkwell_comments.rb
327
- - test/dummy_without_community/db/migrate/20130120124010_create_inkwell_timeline_items.rb
328
- - test/dummy_without_community/db/migrate/20130120124012_create_inkwell_blog_items.rb
329
- - test/dummy_without_community/db/migrate/20130120124011_add_columns_to_posts.rb
328
+ - test/dummy_without_community/db/migrate/20130208134749_change_tables_for_communities.inkwell.rb
329
+ - test/dummy_without_community/db/migrate/20130208134745_create_inkwell_blog_items.inkwell.rb
330
330
  - test/dummy_without_community/db/migrate/20121202112556_create_users.rb
331
- - test/dummy_without_community/db/migrate/20130120124013_create_inkwell_favorite_items.rb
332
- - test/dummy_without_community/db/migrate/20130120124014_add_columns_to_users.rb
331
+ - test/dummy_without_community/db/migrate/20130208134743_create_inkwell_timeline_items.inkwell.rb
332
+ - test/dummy_without_community/db/migrate/20130208134748_create_inkwell_comments.inkwell.rb
333
+ - test/dummy_without_community/db/migrate/20130208134744_add_columns_to_posts.inkwell.rb
334
+ - test/dummy_without_community/db/migrate/20130208134746_create_inkwell_favorite_items.inkwell.rb
333
335
  - test/dummy_without_community/db/migrate/20121202111750_create_posts.rb
336
+ - test/dummy_without_community/db/migrate/20130208134750_add_community_ids_to_post.inkwell.rb
337
+ - test/dummy_without_community/db/migrate/20130208134747_add_columns_to_users.inkwell.rb
334
338
  - test/dummy_without_community/log/development.log
335
339
  - test/dummy_without_community/log/test.log
336
340
  - test/dummy_without_community/public/500.html
@@ -389,17 +393,17 @@ test_files:
389
393
  - test/dummy/db/schema.rb
390
394
  - test/dummy/db/seeds.rb
391
395
  - test/dummy/db/test.sqlite3
396
+ - test/dummy/db/migrate/20130208134951_create_inkwell_favorite_items.inkwell.rb
397
+ - test/dummy/db/migrate/20130208134949_add_columns_to_posts.inkwell.rb
398
+ - test/dummy/db/migrate/20130208134955_add_community_ids_to_post.inkwell.rb
392
399
  - test/dummy/db/migrate/20121202112556_create_users.rb
393
- - test/dummy/db/migrate/20130206112226_add_columns_to_posts.inkwell.rb
400
+ - test/dummy/db/migrate/20130208134952_add_columns_to_users.inkwell.rb
401
+ - test/dummy/db/migrate/20130208134954_change_tables_for_communities.inkwell.rb
394
402
  - test/dummy/db/migrate/20130201155147_create_communities.rb
395
- - test/dummy/db/migrate/20130206112229_add_columns_to_users.inkwell.rb
403
+ - test/dummy/db/migrate/20130208134950_create_inkwell_blog_items.inkwell.rb
404
+ - test/dummy/db/migrate/20130208134953_create_inkwell_comments.inkwell.rb
405
+ - test/dummy/db/migrate/20130208134948_create_inkwell_timeline_items.inkwell.rb
396
406
  - test/dummy/db/migrate/20121202111750_create_posts.rb
397
- - test/dummy/db/migrate/20130206112227_create_inkwell_blog_items.inkwell.rb
398
- - test/dummy/db/migrate/20130206112225_create_inkwell_timeline_items.inkwell.rb
399
- - test/dummy/db/migrate/20130207112455_add_community_ids_to_post.inkwell.rb
400
- - test/dummy/db/migrate/20130206112228_create_inkwell_favorite_items.inkwell.rb
401
- - test/dummy/db/migrate/20130206112231_change_tables_for_communities.inkwell.rb
402
- - test/dummy/db/migrate/20130206112230_create_inkwell_comments.inkwell.rb
403
407
  - test/dummy/log/development.log
404
408
  - test/dummy/log/test.log
405
409
  - test/dummy/public/500.html