beef-articles 0.3.15 → 0.3.16
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/app/views/comments/_form.html.erb +5 -5
- data/articles.gemspec +4 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.16
|
@@ -1,25 +1,25 @@
|
|
1
1
|
<% form_for([commentable, (@comment || Comment.new)], :html => {:id=>"comment-form"} ) do |f| %>
|
2
2
|
<%= f.error_messages %>
|
3
3
|
<p>
|
4
|
-
<%= f.label :name, "Name"
|
4
|
+
<%= f.label :name, "Name*" %>
|
5
5
|
<%= f.text_field :name %>
|
6
6
|
</p>
|
7
7
|
|
8
8
|
<p>
|
9
|
-
<%= f.label :email
|
9
|
+
<%= f.label :email, "Email*" %>
|
10
10
|
<%= f.text_field :email %>
|
11
11
|
</p>
|
12
12
|
|
13
13
|
<p>
|
14
|
-
<%= f.label :website, 'Website'
|
14
|
+
<%= f.label :website, 'Website' %>
|
15
15
|
<%= f.text_field :website %>
|
16
16
|
</p>
|
17
17
|
|
18
18
|
<p>
|
19
|
-
<%= f.label :comment, "Comment"
|
19
|
+
<%= f.label :comment, "Comment*" %>
|
20
20
|
<%= f.text_area :comment, :rows => 5 %>
|
21
21
|
</p>
|
22
22
|
|
23
|
-
<p class="buttons"><%= f.submit 'Submit', :id => 'submit' %></p>
|
23
|
+
<p class="buttons"><%= f.submit 'Submit', :class => 'f-submit', :id => 'submit' %></p>
|
24
24
|
|
25
25
|
<% end -%>
|
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.16"
|
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"]
|