beef-articles 0.4.10 → 0.4.11

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.10
1
+ 0.4.11
@@ -1,7 +1,7 @@
1
1
  <h1>Listing Articles</h1>
2
2
 
3
3
  <ul class="choices">
4
- <li><%= link_to 'New article', new_admin_article_path %></li>
4
+ <li><%= link_to 'New article', new_admin_article_path, :title => 'Create a new article' %></li>
5
5
  </ul>
6
6
 
7
7
  <%= will_paginate %>
@@ -24,7 +24,7 @@
24
24
  <tbody>
25
25
  <% @articles.each do |article| %>
26
26
  <tr id="article-<%= article.id %>">
27
- <td><%= link_to h( article.title ), admin_article_path(article) %></td>
27
+ <td><%= link_to h( article.title ), admin_article_path(article), :title => 'Edit this article' %></td>
28
28
  <td><%= content_status(article) %></td>
29
29
  <td><%= article.author %></td>
30
30
  <td><%= article.editor %></td>
@@ -32,7 +32,7 @@
32
32
  <td><%= article.created_at.to_formatted_s(:short) %></td>
33
33
  <td><%= article.published_at.to_formatted_s(:short) unless article.published_at.nil? %></td>
34
34
  <td><%= article.published_to.to_formatted_s(:short) unless article.published_to.nil? %></td>
35
- <td><%= link_to pluralize(article.comments.count, 'Comment'), admin_article_comments_path(article), :title => 'CLick to view any comments' %></td>
35
+ <td><%= link_to pluralize(article.comments.count, 'Comment'), admin_article_comments_path(article), :title => 'Click to view any comments' %></td>
36
36
  <td><%= link_to 'Show', article_url(article), :class => 'show', :title => 'View this article' if article.published? %></td>
37
37
  <td><%= link_to 'Edit', admin_article_path(article), :class => 'edit', :title => 'Edit this article' %></td>
38
38
  <td><%= link_to 'Delete', admin_article_path(article), :confirm => 'Are you sure?', :method => :delete, :class => 'delete', :title => 'Delete this article' %></td>
@@ -42,7 +42,7 @@
42
42
  <%= preview_link(@article) %>
43
43
  <%= f.submit 'Publish', :name => 'article[publish]' %>
44
44
  <%= f.submit 'Save as draft', :name => 'article[hide]' %>
45
- or <%= link_to 'Cancel', admin_articles_path %>
45
+ or <%= link_to 'Cancel', admin_articles_path, :title => 'Stop editing and return to view all articles' %>
46
46
  </p>
47
47
  <% end %>
48
48
 
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{beef-articles}
8
- s.version = "0.4.10"
8
+ s.version = "0.4.11"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Steve England"]
12
- s.date = %q{2010-03-09}
12
+ s.date = %q{2010-04-15}
13
13
  s.email = %q{steve@wearebeef.co.uk}
14
14
  s.extra_rdoc_files = [
15
15
  "LICENSE",
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.4.10
4
+ version: 0.4.11
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: 2010-03-09 00:00:00 +00:00
12
+ date: 2010-04-15 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency