README.md in concen-0.1.7 vs README.md in concen-0.2.0

- old
+ new

@@ -2,20 +2,26 @@ Concen is a Rails Engine for controlling and monitoring a Rails application from a web interface. It includes content capturing system, real-time traffic monitoring, and real-time performance monitoring. It's built to be flexible and customizable to fit custom needs. ## Requirements -- **Rails 3.0.x**. Concen only supports Rails 3.0 application. Support for Rails 3.1 is planned to be added in near future. +- **Rails 3.1. Concen only supports Rails 3.1 application. - **MongoDB 1.8.x**. All data are stored in MongoDB database, including all of the files uploaded (stored in GridFS). - **Typekit** (optional). Concen uses [Proxima Nova](http://typekit.com/fonts/proxima-nova) font. This font can be obtained from Typekit. ## Installation Add the following to the Gemfile of a Rails application. gem "concen", "~> 0.1" +Concen uses Compass to generate its stylesheets so include Compass' gem in assets group in the Gemfile. If you face a problem when precompiling the assets it's most likely because Compass' gem isn't included in the Gemfile. + + group :assets do + gem "compass", "~> 0.12.alpha" + end + Run the rake task to setup Concen. rake concen:setup Follow the brief guide upon completion of the rake task. @@ -126,30 +132,34 @@ If you have used Concen for any of your websites and would like to be listed here. Please send me a message. ## Version History -- **0.1.7** (24 August 2011): +- **0.2.0**: + - Rails 3.1 compatibility. + +- **0.1.7**: + - Fix installation error when using Ruby 1.8.7. -- **0.1.6** (24 August 2011): +- **0.1.6**: - Fix gemspec encoding issue. -- **0.1.5** (23 August 2011): +- **0.1.5**: - A better approach of handling slug. Slug by default is generated from title. It can then be overwritten by specifying "Slug" in metadata declaration (from the text editor). -- **0.1.4** (22 August 2011): +- **0.1.4**: - Simpler setup process (only in 2 steps). - Brief guide is available upon the completion of setup. - Fix a bug in file path drag and drop function. -- **0.1.3** (21 August 2011): Minor bug fixes. +- **0.1.3**: Minor bug fixes. -- **0.1.2** (19 August 2011): Minor bug fixes. +- **0.1.2**: Minor bug fixes. -- **0.1.1** (19 August 2011): Minor bug fixes. +- **0.1.1**: Minor bug fixes. -- **0.1** (19 August 2011): Initial release. +- **0.1**: Initial release.