beef-pages 0.3.0 → 0.3.1
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/pages/_page.html.erb +2 -4
- data/app/views/admin/pages/index.html.erb +2 -2
- data/pages.gemspec +5 -2
- metadata +4 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.1
|
@@ -10,8 +10,6 @@
|
|
10
10
|
<td><%= link_to 'Add page', new_admin_page_page_path(page), :class => 'add', :title => "Add a sub-page under #{page.title}" %></td>
|
11
11
|
<td><%= link_to 'Edit', [:admin, page], :class => 'edit' %></td>
|
12
12
|
<td><%= link_to('Destroy', admin_page_path(page), :confirm => 'Are you sure?', :method => :delete, :class => 'delete') unless page.lock_level >=1 || !current_user.admin? %></td>
|
13
|
-
<td>
|
14
|
-
|
15
|
-
<%= link_to 'down', move_down_admin_page_path(page), { :class => 'page_down' } if current_user.admin? && !page.last? %>
|
16
|
-
</td>
|
13
|
+
<td><%= link_to 'up', move_up_admin_page_path(page), { :class => "page_up" } if current_user.admin? && !page.first? %></td>
|
14
|
+
<td><%= link_to 'down', move_down_admin_page_path(page), { :class => 'page_down' } if current_user.admin? && !page.last? %></td>
|
17
15
|
</tr>
|
@@ -23,7 +23,7 @@
|
|
23
23
|
<th>Updater</th>
|
24
24
|
<th>Published At</th>
|
25
25
|
<th>Published To</th>
|
26
|
-
<th colspan="
|
26
|
+
<th colspan="7">Actions</th>
|
27
27
|
</tr>
|
28
28
|
</thead>
|
29
29
|
<tbody>
|
@@ -38,7 +38,7 @@
|
|
38
38
|
<th>Updater</th>
|
39
39
|
<th>Published At</th>
|
40
40
|
<th>Published To</th>
|
41
|
-
<th colspan="
|
41
|
+
<th colspan="7">Actions</th>
|
42
42
|
</tr>
|
43
43
|
</tfoot>
|
44
44
|
</table>
|
data/pages.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{pages}
|
5
|
-
s.version = "0.3.
|
8
|
+
s.version = "0.3.1"
|
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",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beef-pages
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
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
|
|
@@ -49,6 +49,7 @@ files:
|
|
49
49
|
- test/test_helper.rb
|
50
50
|
has_rdoc: false
|
51
51
|
homepage: http://github.com/stengland/pages
|
52
|
+
licenses:
|
52
53
|
post_install_message:
|
53
54
|
rdoc_options:
|
54
55
|
- --charset=UTF-8
|
@@ -69,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
70
|
requirements: []
|
70
71
|
|
71
72
|
rubyforge_project:
|
72
|
-
rubygems_version: 1.
|
73
|
+
rubygems_version: 1.3.5
|
73
74
|
signing_key:
|
74
75
|
specification_version: 3
|
75
76
|
summary: Pages engine
|