radiant-dashboard-extension 1.2.0 → 1.2.1
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 -0
- data/Rakefile +2 -1
- data/VERSION +1 -1
- data/radiant-dashboard-extension.gemspec +70 -0
- metadata +17 -5
data/.gitignore
CHANGED
data/Rakefile
CHANGED
|
@@ -3,10 +3,11 @@ begin
|
|
|
3
3
|
Jeweler::Tasks.new do |gem|
|
|
4
4
|
gem.name = "radiant-dashboard-extension"
|
|
5
5
|
gem.summary = %Q{Dashboard Extension for Radiant CMS}
|
|
6
|
-
gem.description = %Q{
|
|
6
|
+
gem.description = %Q{Dashboard provides a way to see recent activity in Radiant, and allows extension developers to add to the interface with Radiant regions.}
|
|
7
7
|
gem.email = "jim@saturnflyer.com"
|
|
8
8
|
gem.homepage = "http://github.com/saturnflyer/radiant-dashboard-extension"
|
|
9
9
|
gem.authors = ["Jim Gay"]
|
|
10
|
+
gem.add_development_dependency "radiant"
|
|
10
11
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
11
12
|
end
|
|
12
13
|
rescue LoadError
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.1
|
|
@@ -0,0 +1,70 @@
|
|
|
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 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{radiant-dashboard-extension}
|
|
8
|
+
s.version = "1.2.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Jim Gay"]
|
|
12
|
+
s.date = %q{2010-03-05}
|
|
13
|
+
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
|
+
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
|
+
]
|
|
43
|
+
s.homepage = %q{http://github.com/saturnflyer/radiant-dashboard-extension}
|
|
44
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
45
|
+
s.require_paths = ["lib"]
|
|
46
|
+
s.rubygems_version = %q{1.3.6}
|
|
47
|
+
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
|
|
69
|
+
end
|
|
70
|
+
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 2
|
|
8
|
-
-
|
|
9
|
-
version: 1.2.
|
|
8
|
+
- 1
|
|
9
|
+
version: 1.2.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Jim Gay
|
|
@@ -16,9 +16,20 @@ cert_chain: []
|
|
|
16
16
|
|
|
17
17
|
date: 2010-03-05 00:00:00 -05:00
|
|
18
18
|
default_executable:
|
|
19
|
-
dependencies:
|
|
20
|
-
|
|
21
|
-
|
|
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
|
|
32
|
+
description: Dashboard provides a way to see recent activity in Radiant, and allows extension developers to add to the interface with Radiant regions.
|
|
22
33
|
email: jim@saturnflyer.com
|
|
23
34
|
executables: []
|
|
24
35
|
|
|
@@ -42,6 +53,7 @@ files:
|
|
|
42
53
|
- features/support/paths.rb
|
|
43
54
|
- lib/tasks/dashboard_extension_tasks.rake
|
|
44
55
|
- public/stylesheets/admin/dashboard.css
|
|
56
|
+
- radiant-dashboard-extension.gemspec
|
|
45
57
|
- spec/controllers/dashboard_controller_spec.rb
|
|
46
58
|
- spec/datasets/dashboard_dataset.rb
|
|
47
59
|
- spec/helpers/dashboard_helper_spec.rb
|