beef-admin_area 0.3.2 → 0.3.3
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/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.3
|
data/beef-admin_area.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{beef-admin_area}
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Steve England"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-07-02}
|
|
13
13
|
s.email = %q{steve@wearebeef.co.uk}
|
|
14
14
|
s.extra_rdoc_files = [
|
|
15
15
|
"LICENSE",
|
|
@@ -198,18 +198,18 @@ Gem::Specification.new do |s|
|
|
|
198
198
|
s.homepage = %q{http://github.com/beef/admin}
|
|
199
199
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
200
200
|
s.require_paths = ["lib"]
|
|
201
|
-
s.rubygems_version = %q{1.3.
|
|
201
|
+
s.rubygems_version = %q{1.3.6}
|
|
202
202
|
s.summary = %q{Rails engine that provides a standard admin area with user managament}
|
|
203
203
|
s.test_files = [
|
|
204
|
-
"test/
|
|
205
|
-
"test/
|
|
204
|
+
"test/admin_area_test.rb",
|
|
205
|
+
"test/test_helper.rb"
|
|
206
206
|
]
|
|
207
207
|
|
|
208
208
|
if s.respond_to? :specification_version then
|
|
209
209
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
210
210
|
s.specification_version = 3
|
|
211
211
|
|
|
212
|
-
if Gem::Version.new(Gem::
|
|
212
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
213
213
|
s.add_runtime_dependency(%q<sortable_table>, [">= 0"])
|
|
214
214
|
s.add_runtime_dependency(%q<will_paginate>, [">= 2.3.8"])
|
|
215
215
|
else
|
|
@@ -1,43 +1,36 @@
|
|
|
1
|
+
<h1>Settings</h1>
|
|
2
|
+
<fieldset id="general"><legend>General</legend>
|
|
3
|
+
<%= setting_form [['home_page_title','text'],
|
|
4
|
+
['default_description','text_area'],
|
|
5
|
+
['default_keywords', 'text_area']] %>
|
|
6
|
+
</fieldset>
|
|
1
7
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
['town','text'],
|
|
16
|
-
['county','text'],
|
|
17
|
-
['postcode','text'],
|
|
18
|
-
[],
|
|
19
|
-
['telephone', 'text'],
|
|
20
|
-
['fax', 'text'],
|
|
21
|
-
['default_email','text']]) %>
|
|
22
|
-
|
|
23
|
-
</fieldset>
|
|
8
|
+
<fieldset id="contactdetails"><legend>Contact Details</legend>
|
|
9
|
+
<%= setting_form([['site_name','text'],
|
|
10
|
+
['address_line_1','text'],
|
|
11
|
+
['address_line_2','text'],
|
|
12
|
+
['district','text'],
|
|
13
|
+
['town','text'],
|
|
14
|
+
['county','text'],
|
|
15
|
+
['region','text'],
|
|
16
|
+
['postcode','text'],
|
|
17
|
+
[],
|
|
18
|
+
['telephone', 'text'],
|
|
19
|
+
['fax', 'text'],
|
|
20
|
+
['default_email','text']]) %>
|
|
24
21
|
|
|
25
|
-
|
|
26
|
-
<%= setting_form 'flickr_user_id' %>
|
|
27
|
-
</fieldset>
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
<fieldset id="analytics"><legend>Google Analytics Settings</legend>
|
|
31
|
-
<%= setting_form 'google_analytics_web_property_id' %>
|
|
32
|
-
</fieldset>
|
|
22
|
+
</fieldset>
|
|
33
23
|
|
|
24
|
+
<fieldset id="analytics"><legend>Google Analytics Settings</legend>
|
|
25
|
+
<%= setting_form 'google_analytics_web_property_id' %>
|
|
26
|
+
</fieldset>
|
|
34
27
|
|
|
35
28
|
<% content_for :sub_content do %>
|
|
36
29
|
<h2>Helpful Tips</h2>
|
|
37
|
-
<h3>Default Description</h3>
|
|
38
|
-
<p>The default description describes a page to a search engine. If you do not fill in the description field for a piece of content (e.g. a news item) this will be used instead.</p>
|
|
39
|
-
<h3>Default Keywords</h3>
|
|
40
|
-
<p>The default keywords help promote a page to a search engine. If you do not fill in the keywords field for a piece of content (e.g. a news item) these will be used instead.</p>
|
|
41
|
-
<h3>Default Email</h3>
|
|
42
|
-
<p>This is the email used by the contact and showreel form. All enquiries to the site will be delivered to this email address.</p>
|
|
30
|
+
<h3>Default Description</h3>
|
|
31
|
+
<p>The default description describes a page to a search engine. If you do not fill in the description field for a piece of content (e.g. a news item) this will be used instead.</p>
|
|
32
|
+
<h3>Default Keywords</h3>
|
|
33
|
+
<p>The default keywords help promote a page to a search engine. If you do not fill in the keywords field for a piece of content (e.g. a news item) these will be used instead.</p>
|
|
34
|
+
<h3>Default Email</h3>
|
|
35
|
+
<p>This is the email used by the contact and showreel form. All enquiries to the site will be delivered to this email address.</p>
|
|
43
36
|
<% end %>
|
metadata
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beef-admin_area
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash: 23
|
|
5
4
|
prerelease: false
|
|
6
5
|
segments:
|
|
7
6
|
- 0
|
|
8
7
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 0.3.
|
|
8
|
+
- 3
|
|
9
|
+
version: 0.3.3
|
|
11
10
|
platform: ruby
|
|
12
11
|
authors:
|
|
13
12
|
- Steve England
|
|
@@ -15,18 +14,16 @@ autorequire:
|
|
|
15
14
|
bindir: bin
|
|
16
15
|
cert_chain: []
|
|
17
16
|
|
|
18
|
-
date: 2010-
|
|
17
|
+
date: 2010-07-02 00:00:00 +01:00
|
|
19
18
|
default_executable:
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
22
21
|
name: sortable_table
|
|
23
22
|
prerelease: false
|
|
24
23
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
24
|
requirements:
|
|
27
25
|
- - ">="
|
|
28
26
|
- !ruby/object:Gem::Version
|
|
29
|
-
hash: 3
|
|
30
27
|
segments:
|
|
31
28
|
- 0
|
|
32
29
|
version: "0"
|
|
@@ -36,11 +33,9 @@ dependencies:
|
|
|
36
33
|
name: will_paginate
|
|
37
34
|
prerelease: false
|
|
38
35
|
requirement: &id002 !ruby/object:Gem::Requirement
|
|
39
|
-
none: false
|
|
40
36
|
requirements:
|
|
41
37
|
- - ">="
|
|
42
38
|
- !ruby/object:Gem::Version
|
|
43
|
-
hash: 19
|
|
44
39
|
segments:
|
|
45
40
|
- 2
|
|
46
41
|
- 3
|
|
@@ -246,30 +241,26 @@ rdoc_options:
|
|
|
246
241
|
require_paths:
|
|
247
242
|
- lib
|
|
248
243
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
249
|
-
none: false
|
|
250
244
|
requirements:
|
|
251
245
|
- - ">="
|
|
252
246
|
- !ruby/object:Gem::Version
|
|
253
|
-
hash: 3
|
|
254
247
|
segments:
|
|
255
248
|
- 0
|
|
256
249
|
version: "0"
|
|
257
250
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
258
|
-
none: false
|
|
259
251
|
requirements:
|
|
260
252
|
- - ">="
|
|
261
253
|
- !ruby/object:Gem::Version
|
|
262
|
-
hash: 3
|
|
263
254
|
segments:
|
|
264
255
|
- 0
|
|
265
256
|
version: "0"
|
|
266
257
|
requirements: []
|
|
267
258
|
|
|
268
259
|
rubyforge_project:
|
|
269
|
-
rubygems_version: 1.3.
|
|
260
|
+
rubygems_version: 1.3.6
|
|
270
261
|
signing_key:
|
|
271
262
|
specification_version: 3
|
|
272
263
|
summary: Rails engine that provides a standard admin area with user managament
|
|
273
264
|
test_files:
|
|
274
|
-
- test/test_helper.rb
|
|
275
265
|
- test/admin_area_test.rb
|
|
266
|
+
- test/test_helper.rb
|