spud_blog 0.7.5 → 0.8.0
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.
- data/app/controllers/spud/admin/posts_controller.rb +1 -1
- data/app/views/spud/admin/news_posts/edit.html.erb +1 -1
- data/app/views/spud/admin/news_posts/index.html.erb +2 -2
- data/app/views/spud/admin/news_posts/new.html.erb +1 -1
- data/app/views/spud/admin/post_categories/_form.html.erb +23 -29
- data/app/views/spud/admin/post_categories/index.html.erb +2 -2
- data/app/views/spud/admin/posts/_form.html.erb +51 -46
- data/app/views/spud/admin/posts/edit.html.erb +1 -1
- data/app/views/spud/admin/posts/index.html.erb +2 -2
- data/app/views/spud/admin/posts/new.html.erb +1 -1
- data/lib/spud_blog/version.rb +1 -1
- data/test/dummy/log/development.log +36 -0
- metadata +30 -25
@@ -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 =>
|
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 => '
|
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 => "
|
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 => '
|
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 => '
|
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 => '
|
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>
|
16
|
-
|
17
|
-
<
|
18
|
-
<%= f.label :name %>
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
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
|
-
<
|
32
|
-
|
33
|
-
|
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 => "
|
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 => '
|
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
|
-
|
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
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
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.
|
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
|
-
|
27
|
+
|
35
28
|
<%= render :partial => '/spud/admin/posts/custom_fields', :locals => {:f => f} %>
|
36
|
-
|
29
|
+
|
37
30
|
</fieldset>
|
38
31
|
<% end %>
|
39
32
|
|
40
33
|
<fieldset>
|
41
34
|
<legend>Advanced</legend>
|
42
|
-
|
43
|
-
<
|
44
|
-
<%= f.label :published_at, 'Publish Date' %>
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
</
|
55
|
-
<
|
56
|
-
<%= f.label :
|
57
|
-
|
58
|
-
|
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
|
-
<
|
61
|
-
<%= f.label :comments_enabled %>
|
62
|
-
|
63
|
-
|
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
|
-
|
72
|
-
|
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 => '
|
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 => "
|
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 => '
|
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%>
|
data/lib/spud_blog/version.rb
CHANGED
@@ -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
|
+
[1m[36m (153.8ms)[0m [1mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB[0m
|
5
|
+
[1m[35m (287.7ms)[0m CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
|
6
|
+
[1m[36m (0.2ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
7
|
+
Migrating to CreateSpudPosts (20120125180945)
|
8
|
+
[1m[35m (163.8ms)[0m 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
|
+
[1m[36m (225.6ms)[0m [1mCREATE INDEX `index_spud_posts_on_spud_user_id` ON `spud_posts` (`spud_user_id`)[0m
|
10
|
+
[1m[35m (178.6ms)[0m CREATE INDEX `index_spud_posts_on_visible` ON `spud_posts` (`visible`)
|
11
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120125180945')[0m
|
12
|
+
Migrating to CreateSpudPostCategories (20120125181022)
|
13
|
+
[1m[35m (214.2ms)[0m 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
|
+
[1m[36m (209.6ms)[0m [1mCREATE TABLE `spud_post_categories_posts` (`spud_post_id` int(11), `spud_post_category_id` int(11)) ENGINE=InnoDB[0m
|
15
|
+
[1m[35m (182.2ms)[0m CREATE INDEX `index_spud_post_categories_posts_on_spud_post_category_id` ON `spud_post_categories_posts` (`spud_post_category_id`)
|
16
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120125181022')[0m
|
17
|
+
Migrating to CreateSpudPostComments (20120125181359)
|
18
|
+
[1m[35m (171.4ms)[0m 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
|
+
[1m[36m (237.9ms)[0m [1mCREATE INDEX `index_spud_post_comments_on_spud_post_id` ON `spud_post_comments` (`spud_post_id`)[0m
|
20
|
+
[1m[35m (227.0ms)[0m CREATE INDEX `index_spud_post_comments_on_approved` ON `spud_post_comments` (`approved`)
|
21
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120125181359')[0m
|
22
|
+
Migrating to AddUrlToSpudPosts (20120127143054)
|
23
|
+
[1m[35m (239.3ms)[0m ALTER TABLE `spud_posts` ADD `url_name` varchar(255)
|
24
|
+
[1m[36m (234.5ms)[0m [1mCREATE INDEX `index_spud_posts_on_url_name` ON `spud_posts` (`url_name`)[0m
|
25
|
+
[1m[35m (0.6ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20120127143054')
|
26
|
+
Migrating to AddUrlToSpudPostCategories (20120127144942)
|
27
|
+
[1m[36m (196.9ms)[0m [1mALTER TABLE `spud_post_categories` ADD `parent_id` int(11) DEFAULT 0[0m
|
28
|
+
[1m[35m (220.7ms)[0m ALTER TABLE `spud_post_categories` ADD `url_name` varchar(255)
|
29
|
+
[1m[36m (179.0ms)[0m [1mCREATE INDEX `index_spud_post_categories_on_parent_id` ON `spud_post_categories` (`parent_id`)[0m
|
30
|
+
[1m[35m (178.4ms)[0m CREATE INDEX `index_spud_post_categories_on_url_name` ON `spud_post_categories` (`url_name`)
|
31
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20120127144942')[0m
|
32
|
+
Migrating to AddIsNewsToSpudPosts (20120210165540)
|
33
|
+
[1m[35m (207.1ms)[0m ALTER TABLE `spud_posts` ADD `is_news` tinyint(1) DEFAULT 0
|
34
|
+
[1m[36m (212.3ms)[0m [1mCREATE INDEX `index_spud_posts_on_is_news` ON `spud_posts` (`is_news`)[0m
|
35
|
+
[1m[35m (0.8ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20120210165540')
|
36
|
+
[1m[36m (0.2ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
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.
|
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-
|
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: &
|
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: *
|
24
|
+
version_requirements: *70171144191680
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: spud_core
|
27
|
-
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.
|
35
|
+
version: 0.9.0
|
33
36
|
type: :runtime
|
34
37
|
prerelease: false
|
35
|
-
version_requirements: *
|
38
|
+
version_requirements: *70171144191160
|
36
39
|
- !ruby/object:Gem::Dependency
|
37
40
|
name: spud_permalinks
|
38
|
-
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: *
|
49
|
+
version_requirements: *70171144190440
|
47
50
|
- !ruby/object:Gem::Dependency
|
48
51
|
name: mysql2
|
49
|
-
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: *
|
60
|
+
version_requirements: *70171144190060
|
58
61
|
- !ruby/object:Gem::Dependency
|
59
62
|
name: rspec
|
60
|
-
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: *
|
71
|
+
version_requirements: *70171144189580
|
69
72
|
- !ruby/object:Gem::Dependency
|
70
73
|
name: rspec-rails
|
71
|
-
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: *
|
82
|
+
version_requirements: *70171144189120
|
80
83
|
- !ruby/object:Gem::Dependency
|
81
84
|
name: factory_girl
|
82
|
-
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: *
|
93
|
+
version_requirements: *70171144188580
|
91
94
|
- !ruby/object:Gem::Dependency
|
92
95
|
name: mocha
|
93
|
-
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: *
|
104
|
+
version_requirements: *70171144188040
|
102
105
|
- !ruby/object:Gem::Dependency
|
103
106
|
name: database_cleaner
|
104
|
-
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: *
|
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:
|
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:
|
251
|
+
hash: 2775193958016340119
|
248
252
|
requirements: []
|
249
253
|
rubyforge_project:
|
250
|
-
rubygems_version: 1.8.
|
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
|