Skip to content

Commit

Permalink
Alchemy v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas von Deyen committed Feb 24, 2015
1 parent 8f75282 commit 9fd0372
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 14 deletions.
19 changes: 6 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
[![Gem Version](https://badge.fury.io/rb/alchemy_cms.svg)](http://badge.fury.io/rb/alchemy_cms)
[![Build Status](https://travis-ci.org/AlchemyCMS/alchemy_cms.svg?branch=master)](https://travis-ci.org/AlchemyCMS/alchemy_cms) [![Code Climate](https://codeclimate.com/github/AlchemyCMS/alchemy_cms.svg)](https://codeclimate.com/github/AlchemyCMS/alchemy_cms) [![Coverage Status](https://img.shields.io/coveralls/AlchemyCMS/alchemy_cms.svg)](https://coveralls.io/r/AlchemyCMS/alchemy_cms?branch=master)

**CAUTION: This master branch is a development branch that can contain bugs. For productive environments you should use the [current Ruby gem version](https://rubygems.org/gems/alchemy_cms/versions/3.0.0), or the [latest stable branch (3.0-stable)](https://github.com/AlchemyCMS/alchemy_cms/tree/3.0-stable).**
[![Build Status](https://travis-ci.org/AlchemyCMS/alchemy_cms.svg?branch=3.1-stable)](https://travis-ci.org/AlchemyCMS/alchemy_cms) [![Code Climate](https://codeclimate.com/github/AlchemyCMS/alchemy_cms.svg)](https://codeclimate.com/github/AlchemyCMS/alchemy_cms) [![Coverage Status](https://img.shields.io/coveralls/AlchemyCMS/alchemy_cms.svg)](https://coveralls.io/r/AlchemyCMS/alchemy_cms?branch=3.1-stable)


## About
Expand Down Expand Up @@ -33,8 +31,7 @@ Read more about Alchemy on the [website](http://alchemy-cms.com) and in the [gui

**This version of Alchemy CMS runs with Rails 4 (including 4.1)**

**Rails 4.2 support is coming soon. Watch [this pull request](https://github.com/AlchemyCMS/alchemy_cms/pull/655).**

* For Rails 4.2 support use the current [master branch](https://github.com/AlchemyCMS/alchemy_cms/tree/master).
* For a Rails 3.2 compatible version use the [`2.8-stable` branch](https://github.com/AlchemyCMS/alchemy_cms/tree/2.8-stable).
* For a Rails 3.1 compatible version use the [`2.1-stable` branch](https://github.com/AlchemyCMS/alchemy_cms/tree/2.1-stable).
* For a Rails 3.0 compatible version use the [`2.0-stable` branch](https://github.com/AlchemyCMS/alchemy_cms/tree/2.0-stable).
Expand All @@ -55,7 +52,7 @@ For a Ruby 1.8.7 compatible version use the [`2.3-stable` branch](https://github
Use the installer:

```shell
$ gem install alchemy_cms --pre
$ gem install alchemy_cms
$ alchemy new my_magicpage
```

Expand All @@ -74,11 +71,9 @@ $ alchemy --help
Put this into your `Gemfile`:

```ruby
gem 'alchemy_cms', github: 'AlchemyCMS/alchemy_cms', branch: 'master'
gem 'alchemy_cms', github: 'AlchemyCMS/alchemy_cms', branch: '3.1-stable'
```

**NOTE:** You normally want to use a stable branch, like `3.0-stable`.

If you want to use Russian translation and have better i18n support, you should put:

```ruby
Expand All @@ -103,16 +98,14 @@ the Devise based user model that Alchemy provides and was extracted [into its ow
If you don't have your own user class, you can use the Alchemy user model. Just add the following gem into your `Gemfile`:

```ruby
gem 'alchemy-devise', github: 'AlchemyCMS/alchemy-devise', branch: 'master'
gem 'alchemy-devise', github: 'AlchemyCMS/alchemy-devise', branch: '2.1-stable'
```

**NOTE:** You normally want to use a stable branch, like `2.0-stable`.

Then run:

```shell
$ bundle install
$ bin/rake alchemy_devise:install:migrations
$ bin/rails g alchemy:devise:install
```

##### Use your User model
Expand Down
2 changes: 1 addition & 1 deletion lib/alchemy/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Alchemy
VERSION = "3.1.0.rc3"
VERSION = "3.1.0"

def self.version
VERSION
Expand Down

0 comments on commit 9fd0372

Please sign in to comment.