rich_cms 2.1.6 → 2.1.7

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.
Files changed (5) hide show
  1. data/CHANGELOG +4 -0
  2. data/VERSION +1 -1
  3. data/lib/rich_cms.rb +1 -1
  4. data/rich_cms.gemspec +1 -1
  5. metadata +3 -3
data/CHANGELOG CHANGED
@@ -1,5 +1,9 @@
1
1
  = Rich-CMS CHANGELOG
2
2
 
3
+ == Version 2.1.7 (November 24, 2010)
4
+
5
+ * Fixed loading the correct config/routes.rb when using a Rails 2 application with another gem / plugin also containing config/routes.rb
6
+
3
7
  == Version 2.1.6 (November 24, 2010)
4
8
 
5
9
  * Going back to the Haml gem instead of Sass
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.1.6
1
+ 2.1.7
@@ -11,4 +11,4 @@ require "rich/cms/engine"
11
11
  require "rich/cms/content/group"
12
12
  require "rich/cms/content/item"
13
13
 
14
- require "config/routes" if Rails::VERSION::MAJOR < 3
14
+ require File.expand_path("../../config/routes", __FILE__) if Rails::VERSION::MAJOR < 3
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rich_cms}
8
- s.version = "2.1.6"
8
+ s.version = "2.1.7"
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"]
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: 7
4
+ hash: 5
5
5
  prerelease: false
6
6
  segments:
7
7
  - 2
8
8
  - 1
9
- - 6
10
- version: 2.1.6
9
+ - 7
10
+ version: 2.1.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - Paul Engel