refinerycms-dashboard 1.0.0 → 1.0.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/lib/gemspec.rb +3 -1
- data/lib/refinerycms-dashboard.rb +1 -0
- data/refinerycms-dashboard.gemspec +5 -4
- metadata +21 -6
data/lib/gemspec.rb
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
# Encoding: UTF-8
|
|
1
2
|
require 'pathname'
|
|
2
3
|
gempath = Pathname.new(File.expand_path('../../', __FILE__))
|
|
3
4
|
require gempath.join('..', 'base', 'lib', 'base', 'refinery')
|
|
4
5
|
|
|
5
6
|
gemspec = <<EOF
|
|
7
|
+
# Encoding: UTF-8
|
|
6
8
|
# DO NOT EDIT THIS FILE DIRECTLY! Instead, use lib/gemspec.rb to generate it.
|
|
7
9
|
|
|
8
10
|
Gem::Specification.new do |s|
|
|
@@ -14,7 +16,7 @@ Gem::Specification.new do |s|
|
|
|
14
16
|
s.email = %q{info@refinerycms.com}
|
|
15
17
|
s.homepage = %q{http://refinerycms.com}
|
|
16
18
|
s.rubyforge_project = %q{refinerycms}
|
|
17
|
-
s.authors = ['Resolve Digital', 'Philip Arndt', 'David Jones', 'Steven Heidel']
|
|
19
|
+
s.authors = ['Resolve Digital', 'Philip Arndt', 'David Jones', 'Steven Heidel', 'Uģis Ozols']
|
|
18
20
|
s.license = %q{MIT}
|
|
19
21
|
s.require_paths = %w(lib)
|
|
20
22
|
s.executables = %w(#{Pathname.glob(gempath.join('bin/*')).map{|d| d.relative_path_from(gempath)}.sort.join(" ")})
|
|
@@ -15,6 +15,7 @@ module Refinery
|
|
|
15
15
|
|
|
16
16
|
config.after_initialize do
|
|
17
17
|
::Refinery::Plugin.register do |plugin|
|
|
18
|
+
plugin.pathname = root
|
|
18
19
|
plugin.name = 'refinery_dashboard'
|
|
19
20
|
plugin.url = {:controller => '/admin/dashboard', :action => 'index'}
|
|
20
21
|
plugin.menu_match = /(admin|refinery)\/(refinery_)?dashboard$/
|
|
@@ -1,15 +1,16 @@
|
|
|
1
|
+
# Encoding: UTF-8
|
|
1
2
|
# DO NOT EDIT THIS FILE DIRECTLY! Instead, use lib/gemspec.rb to generate it.
|
|
2
3
|
|
|
3
4
|
Gem::Specification.new do |s|
|
|
4
5
|
s.name = %q{refinerycms-dashboard}
|
|
5
|
-
s.version = %q{1.0.
|
|
6
|
+
s.version = %q{1.0.1}
|
|
6
7
|
s.summary = %q{Dashboard engine for Refinery CMS}
|
|
7
8
|
s.description = %q{The dashboard is usually the first engine the user sees in the backend of Refinery CMS. It displays useful information and contains links to common functionality.}
|
|
8
|
-
s.date = %q{2011-
|
|
9
|
+
s.date = %q{2011-06-21}
|
|
9
10
|
s.email = %q{info@refinerycms.com}
|
|
10
11
|
s.homepage = %q{http://refinerycms.com}
|
|
11
12
|
s.rubyforge_project = %q{refinerycms}
|
|
12
|
-
s.authors = ['Resolve Digital', 'Philip Arndt', 'David Jones', 'Steven Heidel']
|
|
13
|
+
s.authors = ['Resolve Digital', 'Philip Arndt', 'David Jones', 'Steven Heidel', 'Uģis Ozols']
|
|
13
14
|
s.license = %q{MIT}
|
|
14
15
|
s.require_paths = %w(lib)
|
|
15
16
|
s.executables = %w()
|
|
@@ -72,5 +73,5 @@ Gem::Specification.new do |s|
|
|
|
72
73
|
'refinerycms-dashboard.gemspec'
|
|
73
74
|
]
|
|
74
75
|
|
|
75
|
-
s.add_dependency 'refinerycms-core', '= 1.0.
|
|
76
|
+
s.add_dependency 'refinerycms-core', '= 1.0.1'
|
|
76
77
|
end
|
metadata
CHANGED
|
@@ -1,20 +1,25 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: refinerycms-dashboard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 21
|
|
4
5
|
prerelease:
|
|
5
|
-
|
|
6
|
+
segments:
|
|
7
|
+
- 1
|
|
8
|
+
- 0
|
|
9
|
+
- 1
|
|
10
|
+
version: 1.0.1
|
|
6
11
|
platform: ruby
|
|
7
12
|
authors:
|
|
8
13
|
- Resolve Digital
|
|
9
14
|
- Philip Arndt
|
|
10
15
|
- David Jones
|
|
11
16
|
- Steven Heidel
|
|
17
|
+
- "U\xC4\xA3is Ozols"
|
|
12
18
|
autorequire:
|
|
13
19
|
bindir: bin
|
|
14
20
|
cert_chain: []
|
|
15
21
|
|
|
16
|
-
date: 2011-
|
|
17
|
-
default_executable:
|
|
22
|
+
date: 2011-06-21 00:00:00 Z
|
|
18
23
|
dependencies:
|
|
19
24
|
- !ruby/object:Gem::Dependency
|
|
20
25
|
name: refinerycms-core
|
|
@@ -24,7 +29,12 @@ dependencies:
|
|
|
24
29
|
requirements:
|
|
25
30
|
- - "="
|
|
26
31
|
- !ruby/object:Gem::Version
|
|
27
|
-
|
|
32
|
+
hash: 21
|
|
33
|
+
segments:
|
|
34
|
+
- 1
|
|
35
|
+
- 0
|
|
36
|
+
- 1
|
|
37
|
+
version: 1.0.1
|
|
28
38
|
type: :runtime
|
|
29
39
|
version_requirements: *id001
|
|
30
40
|
description: The dashboard is usually the first engine the user sees in the backend of Refinery CMS. It displays useful information and contains links to common functionality.
|
|
@@ -77,7 +87,6 @@ files:
|
|
|
77
87
|
- lib/refinerycms-dashboard.rb
|
|
78
88
|
- license.md
|
|
79
89
|
- refinerycms-dashboard.gemspec
|
|
80
|
-
has_rdoc: true
|
|
81
90
|
homepage: http://refinerycms.com
|
|
82
91
|
licenses:
|
|
83
92
|
- MIT
|
|
@@ -91,17 +100,23 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
91
100
|
requirements:
|
|
92
101
|
- - ">="
|
|
93
102
|
- !ruby/object:Gem::Version
|
|
103
|
+
hash: 3
|
|
104
|
+
segments:
|
|
105
|
+
- 0
|
|
94
106
|
version: "0"
|
|
95
107
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
96
108
|
none: false
|
|
97
109
|
requirements:
|
|
98
110
|
- - ">="
|
|
99
111
|
- !ruby/object:Gem::Version
|
|
112
|
+
hash: 3
|
|
113
|
+
segments:
|
|
114
|
+
- 0
|
|
100
115
|
version: "0"
|
|
101
116
|
requirements: []
|
|
102
117
|
|
|
103
118
|
rubyforge_project: refinerycms
|
|
104
|
-
rubygems_version: 1.
|
|
119
|
+
rubygems_version: 1.8.5
|
|
105
120
|
signing_key:
|
|
106
121
|
specification_version: 3
|
|
107
122
|
summary: Dashboard engine for Refinery CMS
|