spud_blog 0.7.5 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -27,7 +27,7 @@ class Spud::Admin::PostsController < Spud::Admin::ApplicationController
27
27
 
28
28
  def new
29
29
  @categories = SpudPostCategory.grouped
30
- @post = SpudPost.new(:published_at => Date.today, :spud_user_id => current_user.id)
30
+ @post = SpudPost.new(:published_at => Time.now.strftime("%Y-%m-%d %H:%M"), :spud_user_id => current_user.id)
31
31
  respond_with @post
32
32
  end
33
33
 
@@ -1,3 +1,3 @@
1
- <%= form_for @post, :url => spud_admin_news_post_path(@post), :html => {:class => 'right_aligned_form'} do |f| %>
1
+ <%= form_for @post, :url => spud_admin_news_post_path(@post), :html => {:class => 'form-horizontal'} do |f| %>
2
2
  <%= render :partial => '/spud/admin/posts/form', :locals => {:f => f} %>
3
3
  <% end %>
@@ -1,5 +1,5 @@
1
1
  <%= content_for :data_controls do %>
2
- <%= link_to "New Post", new_spud_admin_news_post_path, :class => "button", :title => "New Post" %>
2
+ <%= link_to "New Post", new_spud_admin_news_post_path, :class => "btn btn-primary", :title => "New Post" %>
3
3
  <% end %>
4
4
 
5
5
  <%=content_for :detail do %>
@@ -19,7 +19,7 @@
19
19
  <td><%= post.author.full_name %></td>
20
20
  <td><%= link_to(post.published_at.strftime('%m/%d/%Y'), news_post_path(post.url_name)) %></td>
21
21
  <td align="right">
22
- <%= link_to 'Delete', spud_admin_news_post_path(post), :method => :delete, :confirm => 'Are you sure you want to delete this post?', :class => 'spud_admin_button_delete' %>
22
+ <%= link_to 'Delete', spud_admin_news_post_path(post), :method => :delete, :confirm => 'Are you sure you want to delete this post?', :class => 'btn btn-danger' %>
23
23
  </td>
24
24
  </tr>
25
25
  <%end%>
@@ -1,3 +1,3 @@
1
- <%= form_for @post, :url => spud_admin_news_posts_path, :html => {:class => 'right_aligned_form'} do |f| %>
1
+ <%= form_for @post, :url => spud_admin_news_posts_path, :html => {:class => 'form-horizontal'} do |f| %>
2
2
  <%= render :partial => '/spud/admin/posts/form', :locals => {:f => f} %>
3
3
  <% end %>
@@ -1,36 +1,30 @@
1
- <%= form_for @post_category, :url => path, :html => {:class => 'right_aligned_form'} do |f| %>
2
-
3
- <% if @post_category.errors.any? %>
4
- <div class="spud_admin_form_error_list">
5
- <h4><%= pluralize(@post_category.errors.count, "error") %> prohibited you from saving this post:</h4>
6
- <ul>
7
- <% @post_category.errors.full_messages.each do |msg| %>
8
- <li><%= msg %></li>
9
- <% end %>
10
- </ul>
11
- </div>
12
- <% end %>
1
+ <%= form_for @post_category, :url => path, :html => {:class => 'form-horizontal'} do |f| %>
2
+ <%=error_messages_for(f.object)%>
13
3
 
14
4
  <fieldset>
15
- <legend>Post Category</legend>
16
- <ol>
17
- <li>
18
- <%= f.label :name %>
19
- <%= f.text_field :name %>
20
- </li>
21
- <li>
22
- <%= label_tag 'Parent' %>
23
- <select name="spud_post_category[parent_id]">
24
- <option value="0">No Parent</option>
25
- <%= options_for_select(SpudPostCategory.options_for_categories(:filter => @post_category.id), @post_category.parent_id) %>
26
- </select>
27
- </li>
28
- </ol>
5
+ <legend>Category Info</legend>
6
+
7
+ <div class="control-group">
8
+ <%= f.label :name,"Name",:class => "control-label" %>
9
+ <div class="controls">
10
+ <%= f.text_field :name %>
11
+ </div>
12
+ </div>
13
+ <div class="control-group">
14
+ <%= label_tag :parent,'Parent',:class => "control-label" %>
15
+ <div class="controls">
16
+ <select name="spud_post_category[parent_id]">
17
+ <option value="0">No Parent</option>
18
+ <%= options_for_select(SpudPostCategory.options_for_categories(:filter => @post_category.id), @post_category.parent_id) %>
19
+ </select>
20
+ </div>
21
+ </div>
22
+
29
23
  </fieldset>
30
24
 
31
- <fieldset class="submit">
32
- <%= f.submit 'Save Post Category' %> or <%= link_to "cancel", request.referer %>
33
- </fieldset>
25
+ <div class="form-actions">
26
+ <%=f.submit "Save Post Category", :class=>"btn btn-primary form-btn","data-loading-text"=>"Saving..."%> or <%=link_to "cancel",request.referer,:class => "btn"%>
27
+ </div>
34
28
 
35
29
  <% end %>
36
30
 
@@ -1,5 +1,5 @@
1
1
  <%= content_for :data_controls do %>
2
- <%= link_to "New Post Category", new_spud_admin_post_category_path, :class => "button", :title => "New Post Category" %>
2
+ <%= link_to "New Post Category", new_spud_admin_post_category_path, :class => "btn btn-primary", :title => "New Post Category" %>
3
3
  <% end %>
4
4
 
5
5
  <%=content_for :detail do %>
@@ -17,7 +17,7 @@
17
17
  <td><%= link_to category.name, edit_spud_admin_post_category_path(category) %></td>
18
18
  <td><%= category.posts.size %></td>
19
19
  <td align="right">
20
- <%= link_to 'Delete', spud_admin_post_category_path(category), :method => :delete, :confirm => 'Are you sure you want to delete this category?', :class => 'spud_admin_button_delete' %>
20
+ <%= link_to 'Delete', spud_admin_post_category_path(category), :method => :delete, :confirm => 'Are you sure you want to delete this category?', :class => 'btn btn-danger' %>
21
21
  </td>
22
22
  </tr>
23
23
  <%end%>
@@ -1,24 +1,17 @@
1
- <% if @post.errors.any? %>
2
- <div class="spud_admin_form_error_list">
3
- <h4><%= pluralize(@post.errors.count, "error") %> prohibited you from saving this post:</h4>
4
- <ul>
5
- <% @post.errors.full_messages.each do |msg| %>
6
- <li><%= msg %></li>
7
- <% end %>
8
- </ul>
9
- </div>
10
- <% end %>
1
+ <%=error_messages_for(f.object)%>
11
2
 
12
- <fieldset>
13
- <legend>Post Title</legend>
14
- <p>
15
- <%= f.text_field :title, :class => 'full-width' %>
16
- </p>
17
- </fieldset>
3
+ <fieldset>
4
+ <div class="control-group">
5
+
6
+ <%=f.label :title, :required=>true,:style =>"display:none;", :class=>"control-label"%>
7
+
8
+ <%=f.text_field :title, :class => "full-width",:placeholder=>"Enter title here"%>
9
+
10
+ </div>
11
+ </fieldset>
18
12
 
19
13
  <div>
20
- <%= f.label :content %>
21
- <%= f.text_area :content, :class => 'wysiwym tinymce' %>
14
+ <%= f.text_area :content,:style => "width:100%;", :class => 'tinymce full-width' %>
22
15
  </div>
23
16
 
24
17
  <fieldset>
@@ -31,45 +24,57 @@
31
24
  <% if Spud::Blog.config.has_custom_fields %>
32
25
  <fieldset>
33
26
  <legend>Custom Fields</legend>
34
- <ol>
27
+
35
28
  <%= render :partial => '/spud/admin/posts/custom_fields', :locals => {:f => f} %>
36
- </ol>
29
+
37
30
  </fieldset>
38
31
  <% end %>
39
32
 
40
33
  <fieldset>
41
34
  <legend>Advanced</legend>
42
- <ol>
43
- <li>
44
- <%= f.label :published_at, 'Publish Date' %>
45
- <%= f.text_field :published_at, :class => 'spud_form_date_picker' %>
46
- </li>
47
- <li>
48
- <%= f.label :visible %>
49
- <%= f.check_box :visible %>
50
- </li>
51
- <li>
52
- <%= f.label :meta_keywords, 'Keywords' %>
53
- <%= f.text_field :meta_keywords %>
54
- </li>
55
- <li>
56
- <%= f.label :meta_description, 'Description' %>
57
- <%= f.text_area :meta_description, :rows => 4, :cols => 75 %>
58
- </li>
35
+
36
+ <div class="control-group">
37
+ <%= f.label :published_at, 'Publish Date', :class=>"control-label" %>
38
+ <div class="controls">
39
+ <%= f.text_field :published_at, :class => 'spud_form_date_picker' %>
40
+ </div>
41
+ </div>
42
+ <div class="control-group">
43
+ <%= f.label :visible, :class=>"control-label" %>
44
+ <div class="controls">
45
+ <%= f.check_box :visible %>
46
+ </div>
47
+ </div>
48
+ <div class="control-group">
49
+ <%= f.label :meta_keywords, 'Keywords', :class=>"control-label" %>
50
+ <div class="controls">
51
+ <%= f.text_field :meta_keywords ,:style=>"width:600px;" %>
52
+ <span class="help-block">A Comma seperated list of keywords for search engines. Keep it short (no more than 10 keywords)</span>
53
+ </div>
54
+ </div>
55
+ <div class="control-group">
56
+ <%= f.label :meta_description, 'Description', :class=>"control-label" %>
57
+ <div class="controls">
58
+ <%= f.text_area :meta_description, :style =>"width:600px;height:40px;"%>
59
+ <span class="help-block">A short description of the article. This is what appears on a search engines search result page.</span>
60
+ </div>
61
+ </div>
59
62
  <% unless @post.is_news %>
60
- <li>
61
- <%= f.label :comments_enabled %>
62
- <%= f.check_box :comments_enabled %>
63
- </li>
63
+ <div class="control-group">
64
+ <%= f.label :comments_enabled,"Comments Enabled", :class=>"control-label" %>
65
+ <div class="controls">
66
+ <%= f.check_box :comments_enabled %>
67
+ </div>
68
+ </div>
64
69
  <% end %>
65
70
  </ol>
66
71
  </fieldset>
67
-
68
- <fieldset class="submit">
69
- <%= f.hidden_field :is_news %>
72
+ <%= f.hidden_field :is_news %>
70
73
  <%= f.hidden_field :spud_user_id %>
71
- <%= f.submit 'Save Post', :class => "wymupdate"%> or <%= link_to "cancel",request.referer %>
72
- </fieldset>
74
+ <div class="form-actions">
75
+ <%=f.submit "Save Post", :class=>"btn btn-primary form-btn","data-loading-text"=>"Saving..."%> or <%=link_to "cancel",request.referer,:class => "btn"%>
76
+ </div>
77
+
73
78
 
74
79
  <script type="text/javascript">
75
80
  $(document).ready(Spud.Admin.Posts.edit);
@@ -1,3 +1,3 @@
1
- <%= form_for @post, :url => spud_admin_post_path(@post), :html => {:class => 'right_aligned_form'} do |f| %>
1
+ <%= form_for @post, :url => spud_admin_post_path(@post), :html => {:class => 'form-horizontal'} do |f| %>
2
2
  <%= render :partial => 'form', :locals => {:f => f} %>
3
3
  <% end %>
@@ -1,5 +1,5 @@
1
1
  <%= content_for :data_controls do %>
2
- <%= link_to "New Post", new_spud_admin_post_path, :class => "button", :title => "New Post" %>
2
+ <%= link_to "New Post", new_spud_admin_post_path, :class => "btn btn-primary", :title => "New Post" %>
3
3
  <% end %>
4
4
 
5
5
  <%=content_for :detail do %>
@@ -21,7 +21,7 @@
21
21
  <td><%= link_to(post.published_at.strftime('%m/%d/%Y'), blog_post_path(post.url_name)) %></td>
22
22
  <td><%= post.comments.size %></td>
23
23
  <td align="right">
24
- <%= link_to 'Delete', spud_admin_post_path(post), :method => :delete, :confirm => 'Are you sure you want to delete this post?', :class => 'spud_admin_button_delete' %>
24
+ <%= link_to 'Delete', spud_admin_post_path(post), :method => :delete, :confirm => 'Are you sure you want to delete this post?', :class => 'btn btn-danger' %>
25
25
  </td>
26
26
  </tr>
27
27
  <%end%>
@@ -1,3 +1,3 @@
1
- <%= form_for @post, :url => spud_admin_posts_path, :html => {:class => 'right_aligned_form'} do |f| %>
1
+ <%= form_for @post, :url => spud_admin_posts_path, :html => {:class => 'form-horizontal'} do |f| %>
2
2
  <%= render :partial => 'form', :locals => {:f => f} %>
3
3
  <% end %>
@@ -1,5 +1,5 @@
1
1
  module Spud
2
2
  module Blog
3
- VERSION = "0.7.5"
3
+ VERSION = "0.8.0"
4
4
  end
5
5
  end
@@ -0,0 +1,36 @@
1
+ Mysql2::Error: Table 'spud_blog_development.spud_users' doesn't exist: SHOW FULL FIELDS FROM `spud_users`
2
+ Mysql2::Error: Table 'spud_blog_development.spud_users' doesn't exist: SHOW FULL FIELDS FROM `spud_users`
3
+ Mysql2::Error: Table 'spud_blog_development.spud_users' doesn't exist: SHOW FULL FIELDS FROM `spud_users`
4
+  (153.8ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
5
+  (287.7ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
6
+  (0.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
7
+ Migrating to CreateSpudPosts (20120125180945)
8
+  (163.8ms) CREATE TABLE `spud_posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `spud_user_id` int(11), `title` varchar(255), `content` text, `comments_enabled` tinyint(1) DEFAULT 0, `visible` tinyint(1) DEFAULT 1, `published_at` datetime, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
9
+  (225.6ms) CREATE INDEX `index_spud_posts_on_spud_user_id` ON `spud_posts` (`spud_user_id`)
10
+  (178.6ms) CREATE INDEX `index_spud_posts_on_visible` ON `spud_posts` (`visible`)
11
+  (0.5ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20120125180945')
12
+ Migrating to CreateSpudPostCategories (20120125181022)
13
+  (214.2ms) CREATE TABLE `spud_post_categories` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
14
+  (209.6ms) CREATE TABLE `spud_post_categories_posts` (`spud_post_id` int(11), `spud_post_category_id` int(11)) ENGINE=InnoDB
15
+  (182.2ms) CREATE INDEX `index_spud_post_categories_posts_on_spud_post_category_id` ON `spud_post_categories_posts` (`spud_post_category_id`)
16
+  (0.6ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20120125181022')
17
+ Migrating to CreateSpudPostComments (20120125181359)
18
+  (171.4ms) CREATE TABLE `spud_post_comments` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `spud_post_id` int(11), `author` varchar(255), `content` text, `approved` tinyint(1) DEFAULT 0, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
19
+  (237.9ms) CREATE INDEX `index_spud_post_comments_on_spud_post_id` ON `spud_post_comments` (`spud_post_id`)
20
+  (227.0ms) CREATE INDEX `index_spud_post_comments_on_approved` ON `spud_post_comments` (`approved`)
21
+  (0.5ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20120125181359')
22
+ Migrating to AddUrlToSpudPosts (20120127143054)
23
+  (239.3ms) ALTER TABLE `spud_posts` ADD `url_name` varchar(255)
24
+  (234.5ms) CREATE INDEX `index_spud_posts_on_url_name` ON `spud_posts` (`url_name`)
25
+  (0.6ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20120127143054')
26
+ Migrating to AddUrlToSpudPostCategories (20120127144942)
27
+  (196.9ms) ALTER TABLE `spud_post_categories` ADD `parent_id` int(11) DEFAULT 0
28
+  (220.7ms) ALTER TABLE `spud_post_categories` ADD `url_name` varchar(255)
29
+  (179.0ms) CREATE INDEX `index_spud_post_categories_on_parent_id` ON `spud_post_categories` (`parent_id`)
30
+  (178.4ms) CREATE INDEX `index_spud_post_categories_on_url_name` ON `spud_post_categories` (`url_name`)
31
+  (0.6ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20120127144942')
32
+ Migrating to AddIsNewsToSpudPosts (20120210165540)
33
+  (207.1ms) ALTER TABLE `spud_posts` ADD `is_news` tinyint(1) DEFAULT 0
34
+  (212.3ms) CREATE INDEX `index_spud_posts_on_is_news` ON `spud_posts` (`is_news`)
35
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20120210165540')
36
+  (0.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spud_blog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.5
4
+ version: 0.8.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-03-14 00:00:00.000000000 Z
12
+ date: 2012-03-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
- requirement: &70287430407040 !ruby/object:Gem::Requirement
16
+ requirement: &70171144191680 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,21 +21,24 @@ dependencies:
21
21
  version: 3.2.1
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70287430407040
24
+ version_requirements: *70171144191680
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: spud_core
27
- requirement: &70287430406340 !ruby/object:Gem::Requirement
27
+ requirement: &70171144191160 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
- - - ~>
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: 0.8.0
33
+ - - <
31
34
  - !ruby/object:Gem::Version
32
- version: 0.7.0
35
+ version: 0.9.0
33
36
  type: :runtime
34
37
  prerelease: false
35
- version_requirements: *70287430406340
38
+ version_requirements: *70171144191160
36
39
  - !ruby/object:Gem::Dependency
37
40
  name: spud_permalinks
38
- requirement: &70287430404940 !ruby/object:Gem::Requirement
41
+ requirement: &70171144190440 !ruby/object:Gem::Requirement
39
42
  none: false
40
43
  requirements:
41
44
  - - ~>
@@ -43,10 +46,10 @@ dependencies:
43
46
  version: 0.0.1
44
47
  type: :runtime
45
48
  prerelease: false
46
- version_requirements: *70287430404940
49
+ version_requirements: *70171144190440
47
50
  - !ruby/object:Gem::Dependency
48
51
  name: mysql2
49
- requirement: &70287430400680 !ruby/object:Gem::Requirement
52
+ requirement: &70171144190060 !ruby/object:Gem::Requirement
50
53
  none: false
51
54
  requirements:
52
55
  - - ! '>='
@@ -54,10 +57,10 @@ dependencies:
54
57
  version: '0'
55
58
  type: :development
56
59
  prerelease: false
57
- version_requirements: *70287430400680
60
+ version_requirements: *70171144190060
58
61
  - !ruby/object:Gem::Dependency
59
62
  name: rspec
60
- requirement: &70287430392240 !ruby/object:Gem::Requirement
63
+ requirement: &70171144189580 !ruby/object:Gem::Requirement
61
64
  none: false
62
65
  requirements:
63
66
  - - ! '>='
@@ -65,10 +68,10 @@ dependencies:
65
68
  version: '0'
66
69
  type: :development
67
70
  prerelease: false
68
- version_requirements: *70287430392240
71
+ version_requirements: *70171144189580
69
72
  - !ruby/object:Gem::Dependency
70
73
  name: rspec-rails
71
- requirement: &70287430390220 !ruby/object:Gem::Requirement
74
+ requirement: &70171144189120 !ruby/object:Gem::Requirement
72
75
  none: false
73
76
  requirements:
74
77
  - - ! '>='
@@ -76,10 +79,10 @@ dependencies:
76
79
  version: '0'
77
80
  type: :development
78
81
  prerelease: false
79
- version_requirements: *70287430390220
82
+ version_requirements: *70171144189120
80
83
  - !ruby/object:Gem::Dependency
81
84
  name: factory_girl
82
- requirement: &70287430388980 !ruby/object:Gem::Requirement
85
+ requirement: &70171144188580 !ruby/object:Gem::Requirement
83
86
  none: false
84
87
  requirements:
85
88
  - - =
@@ -87,10 +90,10 @@ dependencies:
87
90
  version: 2.5.0
88
91
  type: :development
89
92
  prerelease: false
90
- version_requirements: *70287430388980
93
+ version_requirements: *70171144188580
91
94
  - !ruby/object:Gem::Dependency
92
95
  name: mocha
93
- requirement: &70287430387680 !ruby/object:Gem::Requirement
96
+ requirement: &70171144188040 !ruby/object:Gem::Requirement
94
97
  none: false
95
98
  requirements:
96
99
  - - =
@@ -98,10 +101,10 @@ dependencies:
98
101
  version: 0.10.3
99
102
  type: :development
100
103
  prerelease: false
101
- version_requirements: *70287430387680
104
+ version_requirements: *70171144188040
102
105
  - !ruby/object:Gem::Dependency
103
106
  name: database_cleaner
104
- requirement: &70287430386520 !ruby/object:Gem::Requirement
107
+ requirement: &70171144187580 !ruby/object:Gem::Requirement
105
108
  none: false
106
109
  requirements:
107
110
  - - =
@@ -109,7 +112,7 @@ dependencies:
109
112
  version: 0.7.1
110
113
  type: :development
111
114
  prerelease: false
112
- version_requirements: *70287430386520
115
+ version_requirements: *70171144187580
113
116
  description: Spud blogging/news and rss engine.
114
117
  email:
115
118
  - greg@westlakedesign.com
@@ -214,6 +217,7 @@ files:
214
217
  - test/dummy/config/routes.rb
215
218
  - test/dummy/config.ru
216
219
  - test/dummy/db/schema.rb
220
+ - test/dummy/log/development.log
217
221
  - test/dummy/public/404.html
218
222
  - test/dummy/public/422.html
219
223
  - test/dummy/public/500.html
@@ -235,7 +239,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
235
239
  version: '0'
236
240
  segments:
237
241
  - 0
238
- hash: 1816796039144768112
242
+ hash: 2775193958016340119
239
243
  required_rubygems_version: !ruby/object:Gem::Requirement
240
244
  none: false
241
245
  requirements:
@@ -244,10 +248,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
244
248
  version: '0'
245
249
  segments:
246
250
  - 0
247
- hash: 1816796039144768112
251
+ hash: 2775193958016340119
248
252
  requirements: []
249
253
  rubyforge_project:
250
- rubygems_version: 1.8.10
254
+ rubygems_version: 1.8.15
251
255
  signing_key:
252
256
  specification_version: 3
253
257
  summary: Spud Blog Engine.
@@ -274,6 +278,7 @@ test_files:
274
278
  - test/dummy/config/routes.rb
275
279
  - test/dummy/config.ru
276
280
  - test/dummy/db/schema.rb
281
+ - test/dummy/log/development.log
277
282
  - test/dummy/public/404.html
278
283
  - test/dummy/public/422.html
279
284
  - test/dummy/public/500.html