radiant-dashboard-extension 1.2.1 → 1.3.0
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/.gitignore +1 -1
- data/{HELP_developer.md → HELP_designer.md} +0 -0
- data/{README → README.md} +1 -1
- data/app/controllers/admin/dashboard_controller.rb +0 -1
- data/app/views/admin/dashboard/index.html.haml +115 -90
- data/config/routes.rb +3 -0
- data/dashboard_extension.rb +14 -10
- data/lib/radiant-dashboard-extension.rb +2 -0
- data/lib/radiant-dashboard-extension/version.rb +3 -0
- data/public/stylesheets/admin/dashboard.css +38 -6
- data/radiant-dashboard-extension.gemspec +8 -57
- metadata +43 -24
- data/VERSION +0 -1
data/.gitignore
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
|
1
|
+
*.gem
|
2
2
|
.svn
|
File without changes
|
data/{README → README.md}
RENAMED
@@ -1,6 +1,5 @@
|
|
1
1
|
class Admin::DashboardController < ApplicationController
|
2
2
|
def index
|
3
|
-
@template_name = 'index'
|
4
3
|
@current_user_published_pages = current_user.pages.published.recently_updated.find(:all, :limit => 10)
|
5
4
|
@current_user_draft_pages = current_user.pages.drafts.by_updated.find(:all, :limit => 10)
|
6
5
|
|
@@ -1,92 +1,117 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
%
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
1
|
+
.outset
|
2
|
+
.dashboard_column.size1of5
|
3
|
+
|
4
|
+
.standard_column
|
5
|
+
- render_region :info do |info|
|
6
|
+
- info.user do
|
7
|
+
.user_info.box
|
8
|
+
%h1= current_user.name
|
9
|
+
- @user = current_user
|
10
|
+
= render :partial => 'admin/users/avatar'
|
11
|
+
%h2= current_user.email? ? current_user.email : 'no email address'
|
12
|
+
.user_action_list
|
13
|
+
- render_region :user_action_list do |user_action_list|
|
14
|
+
- user_action_list.standard_links do
|
15
|
+
= link_to('Edit your Profile', admin_preferences_path, :class => 'update')
|
16
|
+
= link_to('Manage Users', admin_users_path, :class => 'update') if admin?
|
17
|
+
.dashboard_column.size4of5.line
|
18
|
+
- render_region :main do |main|
|
19
|
+
- main.current_user_draft_pages do
|
20
|
+
- unless @current_user_draft_pages.blank?
|
21
|
+
.size1of2.unit
|
22
|
+
#current_user_draft_pages.dashboard_module
|
23
|
+
%h2 Your Draft Pages
|
24
|
+
= render_region :current_user_draft_pages_top
|
25
|
+
%ul
|
26
|
+
- @current_user_draft_pages.each do |page|
|
27
|
+
%li
|
28
|
+
%span.title{:title => "Updated by #{updater_name_for(page)} #{time_ago_in_words page.updated_at.to_time} ago."}= page.title
|
29
|
+
.modifications
|
30
|
+
= link_to "Edit", edit_admin_page_path(page), :class => 'update'
|
31
|
+
= link_to "Remove", remove_admin_page_path(page), :class => 'delete'
|
32
|
+
= render_region :current_user_draft_pages_bottom
|
33
|
+
- main.current_user_published_pages do
|
34
|
+
- unless @current_user_published_pages.blank?
|
35
|
+
.size1of2.unit
|
36
|
+
#current_user_published_pages_top.dashboard_module
|
37
|
+
%h2 Your Recently Published Pages
|
38
|
+
= render_region :current_user_published_pages_top
|
39
|
+
%ul
|
40
|
+
- @current_user_published_pages.each do |page|
|
41
|
+
%li
|
42
|
+
- html_title = "Updated by #{updater_name_for(page)} #{time_ago_in_words page.updated_at.to_time} ago."
|
43
|
+
- if page.virtual? or !page.published?
|
44
|
+
%span.virtual.title{:title => html_title}= page.title
|
45
|
+
- else
|
46
|
+
%span.title{:title => html_title}= link_to page.title, page.url
|
47
|
+
.modifications
|
48
|
+
= link_to "Edit", edit_admin_page_path(page), :class => 'update'
|
49
|
+
= link_to "Remove", remove_admin_page_path(page), :class => 'delete'
|
50
|
+
= render_region :current_user_published_pages_bottom
|
51
|
+
- main.draft_pages do
|
52
|
+
- unless @draft_pages.blank?
|
53
|
+
.size1of2.unit
|
54
|
+
#draft_pages.dashboard_module
|
55
|
+
%h2 Draft Pages
|
56
|
+
%ul
|
57
|
+
- @draft_pages.each do |page|
|
58
|
+
%li
|
59
|
+
%span.title{:title => "Updated by #{updater_name_for(page)} #{time_ago_in_words page.updated_at.to_time} ago."}= page.title
|
60
|
+
.modifications
|
61
|
+
= link_to "Edit", edit_admin_page_path(page), :class => 'update'
|
62
|
+
= link_to "Remove", remove_admin_page_path(page), :class => 'delete'
|
63
|
+
- main.reviewed_pages do
|
64
|
+
- unless @reviewed_pages.blank?
|
65
|
+
.size1of2.unit
|
66
|
+
#reviewed_pages.dashboard_module
|
67
|
+
%h2 Recently Reviewed Pages
|
68
|
+
%ul
|
69
|
+
- @reviewed_pages.each do |page|
|
70
|
+
%li
|
71
|
+
%span.title{:title => "Updated by #{updater_name_for(page)} #{time_ago_in_words page.updated_at.to_time} ago."}= page.title
|
72
|
+
.modifications
|
73
|
+
= link_to "Edit", edit_admin_page_path(page), :class => 'update'
|
74
|
+
= link_to "Remove", remove_admin_page_path(page), :class => 'delete'
|
75
|
+
- main.updated_pages do
|
76
|
+
- unless @updated_pages.blank?
|
77
|
+
.size1of2.unit
|
78
|
+
#updated_pages.dashboard_module
|
79
|
+
%h2 Recently Updated Pages
|
80
|
+
%ul
|
81
|
+
- @updated_pages.each do |page|
|
82
|
+
%li
|
83
|
+
- if page.virtual? or !page.published?
|
84
|
+
%span.virtual.title= page.title
|
85
|
+
- else
|
86
|
+
%span.title{:title => "Updated by #{updater_name_for(page)} #{time_ago_in_words page.updated_at.to_time} ago."}= link_to page.title, page.url
|
87
|
+
.modifications
|
88
|
+
= link_to "Edit", edit_admin_page_path(page), :class => 'update'
|
89
|
+
= link_to "Remove", remove_admin_page_path(page), :class => 'delete'
|
90
|
+
- main.updated_snippets do
|
91
|
+
- unless @updated_snippets.blank?
|
92
|
+
.size1of2.unit
|
93
|
+
#updated_snippets.dashboard_module
|
94
|
+
%h2 Recently Updated Snippets
|
95
|
+
%ul
|
96
|
+
- @updated_snippets.each do |snippet|
|
97
|
+
%li
|
98
|
+
%span.title{:title => "Updated by #{updater_name_for(snippet)} #{time_ago_in_words snippet.updated_at.to_time} ago."}= snippet.name
|
99
|
+
.modifications
|
100
|
+
= link_to "Edit", edit_admin_snippet_path(snippet), :class => 'update'
|
101
|
+
= link_to "Remove", remove_admin_snippet_path(snippet), :class => 'delete'
|
102
|
+
- main.updated_layouts do
|
103
|
+
- if (designer? or admin?) and !@updated_layouts.blank?
|
104
|
+
.size1of2.unit
|
105
|
+
#updated_layouts.dashboard_module
|
106
|
+
%h2 Recently Updated Layouts
|
107
|
+
%ul
|
108
|
+
- @updated_layouts.each do |layout|
|
109
|
+
%li
|
110
|
+
%span.title{:title => "Updated by #{updater_name_for(layout)} #{time_ago_in_words layout.updated_at.to_time} ago."}= layout.name
|
111
|
+
.modifications
|
112
|
+
= link_to "Edit", edit_admin_layout_path(layout), :class => 'update'
|
113
|
+
= link_to "Remove", remove_admin_layout_path(layout), :class => 'delete'
|
114
|
+
.line
|
115
|
+
= render_region :extensions
|
91
116
|
|
92
117
|
- include_stylesheet 'admin/dashboard'
|
data/config/routes.rb
ADDED
data/dashboard_extension.rb
CHANGED
@@ -1,18 +1,14 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
require File.expand_path("../lib/radiant-dashboard-extension/version", __FILE__)
|
2
|
+
require_dependency 'application_controller'
|
4
3
|
class DashboardExtension < Radiant::Extension
|
5
|
-
version
|
4
|
+
version RadiantDashboardExtension::VERSION
|
6
5
|
description "Dashboard provides a way to view recent activity in Radiant and gives small extensions a place to grow."
|
7
6
|
url "http://saturnflyer.com/"
|
8
7
|
|
9
|
-
define_routes do |map|
|
10
|
-
map.dashboard 'admin/dashboard/:action', :controller => 'admin/dashboard'
|
11
|
-
end
|
12
|
-
|
13
8
|
def activate
|
14
|
-
|
15
|
-
|
9
|
+
admin.nav.unshift(Radiant::AdminUI::NavTab.new('☆'))
|
10
|
+
tab "☆" do
|
11
|
+
add_item 'Activity', "/admin/dashboard"
|
16
12
|
end
|
17
13
|
Radiant::AdminUI.class_eval do
|
18
14
|
attr_accessor :dashboard
|
@@ -34,6 +30,12 @@ class DashboardExtension < Radiant::Extension
|
|
34
30
|
Layout.class_eval {
|
35
31
|
named_scope :recently_updated, lambda{{:conditions => ['updated_at > ?', 1.week.ago ], :order => 'updated_at DESC'}}
|
36
32
|
}
|
33
|
+
Admin::WelcomeController.class_eval {
|
34
|
+
before_filter :go_to_dashboard, :only => [:index]
|
35
|
+
def go_to_dashboard
|
36
|
+
redirect_to dashboard_path
|
37
|
+
end
|
38
|
+
}
|
37
39
|
end
|
38
40
|
|
39
41
|
def deactivate
|
@@ -44,6 +46,8 @@ class DashboardExtension < Radiant::Extension
|
|
44
46
|
def load_default_dashboard_regions
|
45
47
|
returning OpenStruct.new do |dashboard|
|
46
48
|
dashboard.index = Radiant::AdminUI::RegionSet.new do |index|
|
49
|
+
index.info.concat %w{user}
|
50
|
+
index.user_action_list.concat %w{standard_links}
|
47
51
|
index.main.concat %w{current_user_draft_pages current_user_published_pages draft_pages reviewed_pages updated_pages updated_snippets updated_layouts}
|
48
52
|
index.current_user_draft_pages_top.concat %w{}
|
49
53
|
index.current_user_draft_pages_bottom.concat %w{}
|
@@ -1,13 +1,28 @@
|
|
1
|
+
.line:after,.lastUnit:after{clear:both;display:block;visibility:hidden;overflow:hidden;height:0 !important;line-height:0;font-size:xx-large;content:" x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x ";}
|
2
|
+
.line{*zoom:1;}
|
3
|
+
.unit{float:left;}
|
4
|
+
.size1of1{float:none;}
|
5
|
+
.size1of2{width:50%;}
|
6
|
+
.size1of3{width:33.33333%;}
|
7
|
+
.size2of3{width:66.66666%;}
|
8
|
+
.size1of4{width:25%;}
|
9
|
+
.size3of4{width:75%;}
|
10
|
+
.size1of5{width:20%;}
|
11
|
+
.size2of5{width:40%;}
|
12
|
+
.size3of5{width:60%;}
|
13
|
+
.size4of5{width:80%;}
|
14
|
+
.lastUnit{display:table-cell;float:none;width:auto;*display:block;*zoom:1;_position:relative;_left:-3px;_margin-right:-3px;}
|
15
|
+
.dashboard_column { float: left; overflow: hidden; }
|
16
|
+
.standard_column { }
|
1
17
|
.dashboard_module {
|
2
18
|
background: #efefef;
|
3
|
-
|
4
|
-
|
5
|
-
|
19
|
+
margin: 0 10px 20px 10px;
|
20
|
+
min-width: 330px;
|
21
|
+
max-width: 600px;
|
6
22
|
}
|
7
23
|
.dashboard_module h2 {
|
8
24
|
background: #fff;
|
9
25
|
border-bottom: 3px solid #666;
|
10
|
-
color: #000;
|
11
26
|
font-size: 1.2em;
|
12
27
|
font-weight: normal;
|
13
28
|
margin: 0;
|
@@ -16,7 +31,7 @@
|
|
16
31
|
.dashboard_module p {
|
17
32
|
margin: 5px;
|
18
33
|
}
|
19
|
-
.dashboard_module ul, .dashboard_module ul li
|
34
|
+
.dashboard_module ul, .dashboard_module ul li{
|
20
35
|
padding: 0;
|
21
36
|
margin: 0;
|
22
37
|
list-style: none;
|
@@ -43,4 +58,21 @@
|
|
43
58
|
font-size: 0.8em;
|
44
59
|
}
|
45
60
|
.dashboard_module a.addition { color: #393; }
|
46
|
-
.dashboard_module a.subtraction { color: #933; }
|
61
|
+
.dashboard_module a.subtraction { color: #933; }
|
62
|
+
|
63
|
+
.dashboard_module li .modifications { visibility: hidden; }
|
64
|
+
.dashboard_module li:hover .modifications { visibility: visible; }
|
65
|
+
.modifications a {
|
66
|
+
color: #666;
|
67
|
+
font-size: 0.8em;
|
68
|
+
padding: 0.3em;
|
69
|
+
text-decoration: none;
|
70
|
+
}
|
71
|
+
a.create:hover { background: #363; color: #fff; }
|
72
|
+
a.retrieve:hover { background: #cc9; color: #000; }
|
73
|
+
a.update:hover { background: #c63; color: #fff; }
|
74
|
+
a.delete:hover { background: #933; color: #fff; }
|
75
|
+
|
76
|
+
.user_action_list { border-bottom: 1px solid #ccc; margin-top: 1em; }
|
77
|
+
.user_action_list a { border-top: 1px solid #ccc; color: #333; display: block; padding: 3px 0px 3px 3px; text-decoration:none; }
|
78
|
+
.user_action_list a:hover, .user_action_list a:visited:hover { background: #ddf; color: #000;}
|
@@ -1,70 +1,21 @@
|
|
1
|
-
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
-
# -*- encoding: utf-8 -*-
|
1
|
+
require File.expand_path("../lib/radiant-dashboard-extension/version", __FILE__)
|
5
2
|
|
6
3
|
Gem::Specification.new do |s|
|
7
4
|
s.name = %q{radiant-dashboard-extension}
|
8
|
-
s.version =
|
5
|
+
s.version = RadiantDashboardExtension::VERSION
|
6
|
+
s.platform = Gem::Platform::RUBY
|
9
7
|
|
10
|
-
s.required_rubygems_version =
|
8
|
+
s.required_rubygems_version = ">= 1.3.6"
|
11
9
|
s.authors = ["Jim Gay"]
|
12
|
-
s.date = %q{2010-
|
10
|
+
s.date = %q{2010-10-11}
|
13
11
|
s.description = %q{Dashboard provides a way to see recent activity in Radiant, and allows extension developers to add to the interface with Radiant regions.}
|
14
12
|
s.email = %q{jim@saturnflyer.com}
|
15
|
-
s.extra_rdoc_files = [
|
16
|
-
|
17
|
-
]
|
18
|
-
s.files = [
|
19
|
-
".gitignore",
|
20
|
-
"HELP.md",
|
21
|
-
"HELP_developer.md",
|
22
|
-
"README",
|
23
|
-
"Rakefile",
|
24
|
-
"VERSION",
|
25
|
-
"app/controllers/admin/dashboard_controller.rb",
|
26
|
-
"app/helpers/admin/dashboard_helper.rb",
|
27
|
-
"app/views/admin/dashboard/index.html.haml",
|
28
|
-
"cucumber.yml",
|
29
|
-
"dashboard_extension.rb",
|
30
|
-
"features/support/env.rb",
|
31
|
-
"features/support/paths.rb",
|
32
|
-
"lib/tasks/dashboard_extension_tasks.rake",
|
33
|
-
"public/stylesheets/admin/dashboard.css",
|
34
|
-
"radiant-dashboard-extension.gemspec",
|
35
|
-
"spec/controllers/dashboard_controller_spec.rb",
|
36
|
-
"spec/datasets/dashboard_dataset.rb",
|
37
|
-
"spec/helpers/dashboard_helper_spec.rb",
|
38
|
-
"spec/models/page_spec.rb",
|
39
|
-
"spec/spec.opts",
|
40
|
-
"spec/spec_helper.rb",
|
41
|
-
"spec/views/admin/dashboard/index_view_spec.rb"
|
42
|
-
]
|
13
|
+
s.extra_rdoc_files = ["README.md","HELP.md","HELP_designer.md"]
|
14
|
+
s.files = `git ls-files`.split("\n")
|
43
15
|
s.homepage = %q{http://github.com/saturnflyer/radiant-dashboard-extension}
|
44
16
|
s.rdoc_options = ["--charset=UTF-8"]
|
45
17
|
s.require_paths = ["lib"]
|
46
|
-
s.rubygems_version = %q{1.3.6}
|
47
18
|
s.summary = %q{Dashboard Extension for Radiant CMS}
|
48
|
-
s.test_files =
|
49
|
-
"spec/controllers/dashboard_controller_spec.rb",
|
50
|
-
"spec/datasets/dashboard_dataset.rb",
|
51
|
-
"spec/helpers/dashboard_helper_spec.rb",
|
52
|
-
"spec/models/page_spec.rb",
|
53
|
-
"spec/spec_helper.rb",
|
54
|
-
"spec/views/admin/dashboard/index_view_spec.rb"
|
55
|
-
]
|
56
|
-
|
57
|
-
if s.respond_to? :specification_version then
|
58
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
59
|
-
s.specification_version = 3
|
60
|
-
|
61
|
-
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
62
|
-
s.add_development_dependency(%q<radiant>, [">= 0"])
|
63
|
-
else
|
64
|
-
s.add_dependency(%q<radiant>, [">= 0"])
|
65
|
-
end
|
66
|
-
else
|
67
|
-
s.add_dependency(%q<radiant>, [">= 0"])
|
68
|
-
end
|
19
|
+
s.test_files = `git ls-files`.split("\n")
|
69
20
|
end
|
70
21
|
|
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: radiant-dashboard-extension
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 27
|
4
5
|
prerelease: false
|
5
6
|
segments:
|
6
7
|
- 1
|
7
|
-
-
|
8
|
-
-
|
9
|
-
version: 1.
|
8
|
+
- 3
|
9
|
+
- 0
|
10
|
+
version: 1.3.0
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Jim Gay
|
@@ -14,21 +15,10 @@ autorequire:
|
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
17
|
|
17
|
-
date: 2010-
|
18
|
+
date: 2010-10-11 00:00:00 -04:00
|
18
19
|
default_executable:
|
19
|
-
dependencies:
|
20
|
-
|
21
|
-
name: radiant
|
22
|
-
prerelease: false
|
23
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
-
requirements:
|
25
|
-
- - ">="
|
26
|
-
- !ruby/object:Gem::Version
|
27
|
-
segments:
|
28
|
-
- 0
|
29
|
-
version: "0"
|
30
|
-
type: :development
|
31
|
-
version_requirements: *id001
|
20
|
+
dependencies: []
|
21
|
+
|
32
22
|
description: Dashboard provides a way to see recent activity in Radiant, and allows extension developers to add to the interface with Radiant regions.
|
33
23
|
email: jim@saturnflyer.com
|
34
24
|
executables: []
|
@@ -36,21 +26,25 @@ executables: []
|
|
36
26
|
extensions: []
|
37
27
|
|
38
28
|
extra_rdoc_files:
|
39
|
-
- README
|
29
|
+
- README.md
|
30
|
+
- HELP.md
|
31
|
+
- HELP_designer.md
|
40
32
|
files:
|
41
33
|
- .gitignore
|
42
34
|
- HELP.md
|
43
|
-
-
|
44
|
-
- README
|
35
|
+
- HELP_designer.md
|
36
|
+
- README.md
|
45
37
|
- Rakefile
|
46
|
-
- VERSION
|
47
38
|
- app/controllers/admin/dashboard_controller.rb
|
48
39
|
- app/helpers/admin/dashboard_helper.rb
|
49
40
|
- app/views/admin/dashboard/index.html.haml
|
41
|
+
- config/routes.rb
|
50
42
|
- cucumber.yml
|
51
43
|
- dashboard_extension.rb
|
52
44
|
- features/support/env.rb
|
53
45
|
- features/support/paths.rb
|
46
|
+
- lib/radiant-dashboard-extension.rb
|
47
|
+
- lib/radiant-dashboard-extension/version.rb
|
54
48
|
- lib/tasks/dashboard_extension_tasks.rake
|
55
49
|
- public/stylesheets/admin/dashboard.css
|
56
50
|
- radiant-dashboard-extension.gemspec
|
@@ -71,30 +65,55 @@ rdoc_options:
|
|
71
65
|
require_paths:
|
72
66
|
- lib
|
73
67
|
required_ruby_version: !ruby/object:Gem::Requirement
|
68
|
+
none: false
|
74
69
|
requirements:
|
75
70
|
- - ">="
|
76
71
|
- !ruby/object:Gem::Version
|
72
|
+
hash: 3
|
77
73
|
segments:
|
78
74
|
- 0
|
79
75
|
version: "0"
|
80
76
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
+
none: false
|
81
78
|
requirements:
|
82
79
|
- - ">="
|
83
80
|
- !ruby/object:Gem::Version
|
81
|
+
hash: 23
|
84
82
|
segments:
|
85
|
-
-
|
86
|
-
|
83
|
+
- 1
|
84
|
+
- 3
|
85
|
+
- 6
|
86
|
+
version: 1.3.6
|
87
87
|
requirements: []
|
88
88
|
|
89
89
|
rubyforge_project:
|
90
|
-
rubygems_version: 1.3.
|
90
|
+
rubygems_version: 1.3.7
|
91
91
|
signing_key:
|
92
92
|
specification_version: 3
|
93
93
|
summary: Dashboard Extension for Radiant CMS
|
94
94
|
test_files:
|
95
|
+
- .gitignore
|
96
|
+
- HELP.md
|
97
|
+
- HELP_designer.md
|
98
|
+
- README.md
|
99
|
+
- Rakefile
|
100
|
+
- app/controllers/admin/dashboard_controller.rb
|
101
|
+
- app/helpers/admin/dashboard_helper.rb
|
102
|
+
- app/views/admin/dashboard/index.html.haml
|
103
|
+
- config/routes.rb
|
104
|
+
- cucumber.yml
|
105
|
+
- dashboard_extension.rb
|
106
|
+
- features/support/env.rb
|
107
|
+
- features/support/paths.rb
|
108
|
+
- lib/radiant-dashboard-extension.rb
|
109
|
+
- lib/radiant-dashboard-extension/version.rb
|
110
|
+
- lib/tasks/dashboard_extension_tasks.rake
|
111
|
+
- public/stylesheets/admin/dashboard.css
|
112
|
+
- radiant-dashboard-extension.gemspec
|
95
113
|
- spec/controllers/dashboard_controller_spec.rb
|
96
114
|
- spec/datasets/dashboard_dataset.rb
|
97
115
|
- spec/helpers/dashboard_helper_spec.rb
|
98
116
|
- spec/models/page_spec.rb
|
117
|
+
- spec/spec.opts
|
99
118
|
- spec/spec_helper.rb
|
100
119
|
- spec/views/admin/dashboard/index_view_spec.rb
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
1.2.1
|