Skip to content

Commit

Permalink
Released v2.1.6
Browse files Browse the repository at this point in the history
Going back to the Haml gem instead of Sass
  • Loading branch information
Paul Engel committed Nov 24, 2010
1 parent e725cf9 commit bef6899
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
= Rich-CMS CHANGELOG

== Version 2.1.6 (November 24, 2010)

* Going back to the Haml gem instead of Sass

== Version 2.1.5 (November 16, 2010)

* Not requiring 'sass/plugin' explicitly which fixes the 'Rails.root is nil!' error
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ begin

gemspec.add_dependency "authlogic" , ">= 2.1.2"
gemspec.add_dependency "formtastic", ">= 1.1.0"
gemspec.add_dependency "sass"
gemspec.add_dependency "haml" , ">= 3"
gemspec.add_dependency "jzip" , ">= 1.0.11"
end
Jeweler::GemcutterTasks.new
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.5
2.1.6
2 changes: 1 addition & 1 deletion lib/rich_cms.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require "authlogic"
require "formtastic"
require "jzip"
require "sass"
require "haml"

require "rich/cms/core"
require "rich/cms/activesupport"
Expand Down
10 changes: 5 additions & 5 deletions rich_cms.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{rich_cms}
s.version = "2.1.5"
s.version = "2.1.6"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Paul Engel"]
s.date = %q{2010-11-16}
s.date = %q{2010-11-24}
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.}
s.email = %q{paul.engel@holder.nl}
s.extra_rdoc_files = [
Expand Down Expand Up @@ -119,18 +119,18 @@ Gem::Specification.new do |s|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<authlogic>, [">= 2.1.2"])
s.add_runtime_dependency(%q<formtastic>, [">= 1.1.0"])
s.add_runtime_dependency(%q<sass>, [">= 0"])
s.add_runtime_dependency(%q<haml>, [">= 3"])
s.add_runtime_dependency(%q<jzip>, [">= 1.0.11"])
else
s.add_dependency(%q<authlogic>, [">= 2.1.2"])
s.add_dependency(%q<formtastic>, [">= 1.1.0"])
s.add_dependency(%q<sass>, [">= 0"])
s.add_dependency(%q<haml>, [">= 3"])
s.add_dependency(%q<jzip>, [">= 1.0.11"])
end
else
s.add_dependency(%q<authlogic>, [">= 2.1.2"])
s.add_dependency(%q<formtastic>, [">= 1.1.0"])
s.add_dependency(%q<sass>, [">= 0"])
s.add_dependency(%q<haml>, [">= 3"])
s.add_dependency(%q<jzip>, [">= 1.0.11"])
end
end
Expand Down

0 comments on commit bef6899

Please sign in to comment.