radiant-dashboard-extension 1.2.1 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -1,2 +1,2 @@
1
- pkg/*
1
+ *.gem
2
2
  .svn
File without changes
@@ -3,4 +3,4 @@
3
3
  Dashboard provides a way to see recent activity in Radiant, and allows extension
4
4
  developers to add to the interface with Radiant regions.
5
5
 
6
- Built by Saturn Flyer http://www.saturnflyer.com
6
+ Built by [Saturn Flyer](http://www.saturnflyer.com)
@@ -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
- - render_region :main do |main|
2
- - main.header
3
- - main.current_user_draft_pages do
4
- - unless @current_user_draft_pages.blank?
5
- #current_user_draft_pages.dashboard_module
6
- %h2 Your Draft Pages
7
- = render_region :current_user_draft_pages_top
8
- %ul
9
- - @current_user_draft_pages.each do |page|
10
- %li
11
- %span.title= page.title
12
- %span.details
13
- = "Updated by #{updater_name_for(page)} #{time_ago_in_words page.updated_at.to_time} ago."
14
- = link_to "Edit", edit_admin_page_path(page)
15
- = render_region :current_user_draft_pages_bottom
16
- - main.current_user_published_pages do
17
- - unless @current_user_published_pages.blank?
18
- #current_user_published_pages_top.dashboard_module
19
- %h2 Your Recently Published Pages
20
- = render_region :current_user_published_pages_top
21
- %ul
22
- - @current_user_published_pages.each do |page|
23
- %li
24
- - if page.virtual? or !page.published?
25
- %span.virtual.title= page.title
26
- - else
27
- %span.title= link_to page.title, page.url
28
- %span.details
29
- = "Updated by #{updater_name_for(page)} #{time_ago_in_words page.updated_at.to_time} ago."
30
- = link_to "Edit", edit_admin_page_path(page)
31
- = render_region :current_user_published_pages_bottom
32
- - main.draft_pages do
33
- - unless @draft_pages.blank?
34
- #draft_pages.dashboard_module
35
- %h2 Draft Pages
36
- %ul
37
- - @draft_pages.each do |page|
38
- %li
39
- %span.title= page.title
40
- %span.details
41
- = "Updated by #{updater_name_for(page)} #{time_ago_in_words page.updated_at.to_time} ago."
42
- = link_to "Edit", edit_admin_page_path(page)
43
- - main.reviewed_pages do
44
- - unless @reviewed_pages.blank?
45
- #reviewed_pages.dashboard_module
46
- %h2 Recently Reviewed Pages
47
- %ul
48
- - @reviewed_pages.each do |page|
49
- %li
50
- %span.title= page.title
51
- %span.details
52
- = "Updated by #{updater_name_for(page)} #{time_ago_in_words page.updated_at.to_time} ago."
53
- = link_to "Edit", page_edit_path(page)
54
- - main.updated_pages do
55
- - unless @updated_pages.blank?
56
- #updated_pages.dashboard_module
57
- %h2 Recently Updated Pages
58
- %ul
59
- - @updated_pages.each do |page|
60
- %li
61
- - if page.virtual? or !page.published?
62
- %span.virtual.title= page.title
63
- - else
64
- %span.title= link_to page.title, page.url
65
- %span.details
66
- = "Updated by #{updater_name_for(page)} #{time_ago_in_words page.updated_at.to_time} ago."
67
- = link_to "Edit", edit_admin_page_path(page)
68
- - main.updated_snippets do
69
- - unless @updated_snippets.blank?
70
- #updated_snippets.dashboard_module
71
- %h2 Recently Updated Snippets
72
- %ul
73
- - @updated_snippets.each do |snippet|
74
- %li
75
- %span.title= snippet.name
76
- %span.details
77
- = "Updated by #{updater_name_for(snippet)} #{time_ago_in_words snippet.updated_at.to_time} ago."
78
- = link_to "Edit", edit_admin_snippet_path(snippet)
79
- - main.updated_layouts do
80
- - if (designer? or admin?) and !@updated_layouts.blank?
81
- #updated_layouts.dashboard_module
82
- %h2 Recently Updated Layouts
83
- %ul
84
- - @updated_layouts.each do |layout|
85
- %li
86
- %span.title= layout.name
87
- %span.details
88
- = "Updated by #{updater_name_for(layout)} #{time_ago_in_words layout.updated_at.to_time} ago."
89
- = link_to "Edit", edit_admin_layout_path(layout)
90
- = render_region :extensions
1
+ .outset
2
+ .dashboard_column.size1of5
3
+ &nbsp;
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
@@ -0,0 +1,3 @@
1
+ ActionController::Routing::Routes.draw do |map|
2
+ map.dashboard 'admin/dashboard/:action', :controller => 'admin/dashboard'
3
+ end
@@ -1,18 +1,14 @@
1
- # Uncomment this if you reference any of your controllers in activate
2
- # require_dependency 'application'
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 "#{File.read(File.expand_path(File.dirname(__FILE__)) + '/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
- tab "Content" do
15
- add_item 'Dashboard', "/admin/dashboard", :before => 'Pages'
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{}
@@ -0,0 +1,2 @@
1
+ module RadiantDashboardExtension
2
+ end
@@ -0,0 +1,3 @@
1
+ module RadiantDashboardExtension
2
+ VERSION = '1.3.0'
3
+ end
@@ -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
- float: left;
4
- margin: 0 20px 20px 0;
5
- width: 450px;
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
- # Generated by jeweler
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 = "1.2.1"
5
+ s.version = RadiantDashboardExtension::VERSION
6
+ s.platform = Gem::Platform::RUBY
9
7
 
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.required_rubygems_version = ">= 1.3.6"
11
9
  s.authors = ["Jim Gay"]
12
- s.date = %q{2010-03-05}
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
- "README"
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
- - 2
8
- - 1
9
- version: 1.2.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-03-05 00:00:00 -05:00
18
+ date: 2010-10-11 00:00:00 -04:00
18
19
  default_executable:
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
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
- - HELP_developer.md
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
- - 0
86
- version: "0"
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.6
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