rich_cms 3.0.1 → 3.0.2
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/CHANGELOG.rdoc +4 -0
- data/VERSION +1 -1
- data/lib/rich/cms/content/item.rb +1 -1
- data/lib/rich/cms/version.rb +1 -1
- data/rich_cms.gemspec +2 -2
- metadata +4 -4
data/CHANGELOG.rdoc
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
= Rich-CMS CHANGELOG
|
|
2
2
|
|
|
3
|
+
== Version 3.0.2 (April 7, 2011)
|
|
4
|
+
|
|
5
|
+
* Bugfix: fixed undefined method 'can_edit?' for Rich::Cms::Auth:Module error. Thanks Cameron Priest (@cameronpriest) for mentioning
|
|
6
|
+
|
|
3
7
|
== Version 3.0.1 (April 6, 2011)
|
|
4
8
|
|
|
5
9
|
* Bugfix: Corrected contains operator into equals within Rich.Cms.afterUpdate function. Thanks Chris Obdam (@chrisobdam) for contributing
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.2
|
|
@@ -66,7 +66,7 @@ module Rich
|
|
|
66
66
|
|
|
67
67
|
tag = options[:tag] || @group.tag || (%w(text html).include?(options[:as].to_s.downcase) ? :div : :span)
|
|
68
68
|
|
|
69
|
-
if options[:tag] == :none
|
|
69
|
+
if options[:tag] == :none
|
|
70
70
|
"#{value.blank? ? default : value}"
|
|
71
71
|
else
|
|
72
72
|
# Make default for editable
|
data/lib/rich/cms/version.rb
CHANGED
data/rich_cms.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{rich_cms}
|
|
8
|
-
s.version = "3.0.
|
|
8
|
+
s.version = "3.0.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Paul Engel"]
|
|
12
|
-
s.date = %q{2011-04-
|
|
12
|
+
s.date = %q{2011-04-07}
|
|
13
13
|
s.description = %q{Rich-CMS is a module of E9s (http://github.com/archan937/e9s) which provides a frontend for your CMS content. You can use this gem to manage CMS content or translations (in an internationalized application). The installation and setup process is very easily done. You will have to register content at the Rich-CMS engine and also you will have to specify the authentication mechanism. Both are one-liners.}
|
|
14
14
|
s.email = %q{paul.engel@holder.nl}
|
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rich_cms
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 3
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 3
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 3.0.
|
|
9
|
+
- 2
|
|
10
|
+
version: 3.0.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Paul Engel
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-04-
|
|
18
|
+
date: 2011-04-07 00:00:00 +02:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|