beef-articles 0.3.30 → 0.3.32
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/app/views/admin/articles/show.html.erb +1 -1
- data/app/views/admin/categories/index.html.erb +3 -2
- data/articles.gemspec +7 -4
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.32
|
@@ -22,7 +22,7 @@
|
|
22
22
|
<%= f.text_area :description, :rows => 3 %>
|
23
23
|
</p>
|
24
24
|
<p>
|
25
|
-
<%= f.label :tag_list, 'Keywords (used by search engines) & Tags - comma
|
25
|
+
<%= f.label :tag_list, 'Keywords (used by search engines) & Tags - comma separated*' %><br />
|
26
26
|
<%= f.text_field :tag_list, :class => 'long' %>
|
27
27
|
</p>
|
28
28
|
<p>
|
@@ -17,8 +17,8 @@
|
|
17
17
|
<tr id="category-<%= category.id %>">
|
18
18
|
<td><%= link_to category.title, admin_category_path(category) %></td>
|
19
19
|
<td><%=h category.description %></td>
|
20
|
-
<td><%= link_to 'Edit', admin_category_path(category), :class => 'edit' %></td>
|
21
|
-
<td><%= link_to 'Destroy', admin_category_path(category), :confirm => 'Are you sure?', :method => :delete, :class => 'delete' %></td>
|
20
|
+
<td class="action"><%= link_to 'Edit', admin_category_path(category), :class => 'edit' %></td>
|
21
|
+
<td class="action"><%= link_to 'Destroy', admin_category_path(category), :confirm => 'Are you sure?', :method => :delete, :class => 'delete' %></td>
|
22
22
|
</tr>
|
23
23
|
<% end %>
|
24
24
|
</tbody>
|
@@ -26,6 +26,7 @@
|
|
26
26
|
<tr>
|
27
27
|
<%= sortable_table_header :name => "Title", :sort => "title" %>
|
28
28
|
<%= sortable_table_header :name => "Description", :sort => "description" %>
|
29
|
+
<th colspan="2">Actions</th>
|
29
30
|
</tr>
|
30
31
|
</tfoot>
|
31
32
|
</table>
|
data/articles.gemspec
CHANGED
@@ -1,12 +1,15 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
1
4
|
# -*- encoding: utf-8 -*-
|
2
5
|
|
3
6
|
Gem::Specification.new do |s|
|
4
7
|
s.name = %q{articles}
|
5
|
-
s.version = "0.3.
|
8
|
+
s.version = "0.3.32"
|
6
9
|
|
7
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
11
|
s.authors = ["Steve England"]
|
9
|
-
s.date = %q{2009-09-
|
12
|
+
s.date = %q{2009-09-14}
|
10
13
|
s.email = %q{steve@wearebeef.co.uk}
|
11
14
|
s.extra_rdoc_files = [
|
12
15
|
"LICENSE",
|
@@ -60,8 +63,8 @@ Gem::Specification.new do |s|
|
|
60
63
|
s.summary = %q{Article/Blogging engine}
|
61
64
|
s.test_files = [
|
62
65
|
"test/articles_test.rb",
|
63
|
-
"test/
|
64
|
-
"test/
|
66
|
+
"test/test_helper.rb",
|
67
|
+
"test/schema.rb"
|
65
68
|
]
|
66
69
|
|
67
70
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beef-articles
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.32
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steve England
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-09-
|
12
|
+
date: 2009-09-14 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -109,5 +109,5 @@ specification_version: 3
|
|
109
109
|
summary: Article/Blogging engine
|
110
110
|
test_files:
|
111
111
|
- test/articles_test.rb
|
112
|
-
- test/schema.rb
|
113
112
|
- test/test_helper.rb
|
113
|
+
- test/schema.rb
|