beef-articles 0.3.28 → 0.3.29
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 +4 -4
- data/app/views/admin/categories/show.html.erb +1 -1
- data/articles.gemspec +4 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.29
|
@@ -9,20 +9,20 @@
|
|
9
9
|
<%= f.error_messages %>
|
10
10
|
|
11
11
|
<p>
|
12
|
-
<%= f.label :title %><br/>
|
12
|
+
<%= f.label :title, 'Title*' %><br/>
|
13
13
|
<%= f.text_field :title, :class => 'title' %>
|
14
14
|
</p>
|
15
15
|
|
16
16
|
<p>
|
17
|
-
<%= f.label :body %><br />
|
17
|
+
<%= f.label :body, 'Body*' %><br />
|
18
18
|
<%= f.text_area :body, :class => 'editor' %>
|
19
19
|
</p>
|
20
20
|
<p>
|
21
|
-
<%= f.label :description %><br />
|
21
|
+
<%= f.label :description, 'Description*' %><br />
|
22
22
|
<%= f.text_area :description, :rows => 3 %>
|
23
23
|
</p>
|
24
24
|
<p>
|
25
|
-
<%= f.label :tag_list %><br />
|
25
|
+
<%= f.label :tag_list, 'Keywords (used by search engines) & Tags - comma seperated*' %><br />
|
26
26
|
<%= f.text_field :tag_list, :class => 'long' %>
|
27
27
|
</p>
|
28
28
|
<p>
|
data/articles.gemspec
CHANGED
@@ -1,8 +1,11 @@
|
|
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.29"
|
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"]
|