Skip to content

Commit

Permalink
Bump Rails requirement to >= 4.2.3
Browse files Browse the repository at this point in the history
Brice Sanchez committed Aug 11, 2015
1 parent dc13db2 commit 5bc9ecb
Showing 5 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -18,6 +18,7 @@
* Added ability to customize and translate filename. [#2966](https://github.com/refinery/refinerycms/pull/2966). [Brice Sanchez](https://github.com/bricesanchez)
* Added ability to translate images title and alt attributes. [#2965](https://github.com/refinery/refinerycms/pull/2965). [Brice Sanchez](https://github.com/bricesanchez)
* Decouple Refinery CMS from Devise. [#2940](https://github.com/refinery/refinerycms/pull/2940). [Philip Arndt](https://github.com/parndt)
* Refinery CMS Core now requires Rails >= 4.2.3. [#3034](https://github.com/refinery/refinerycms/pull/3034). [Brice Sanchez](https://github.com/bricesanchez)

* [See full list](https://github.com/refinery/refinerycms/compare/2-1-stable...master)

2 changes: 1 addition & 1 deletion core/refinerycms-core.gemspec
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
require File.expand_path('../../core/lib/refinery/version', __FILE__)

version = Refinery::Version.to_s
rails_version = ['>= 4.1.5', '< 5.0']
rails_version = ['>= 4.2.3', '< 5.0']

Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
2 changes: 1 addition & 1 deletion doc/guides/1 - Getting Started/2 - Getting Started.textile
Original file line number Diff line number Diff line change
@@ -101,7 +101,7 @@ TIP. As *the latest stable version of Refinery CMS is not compatible with Rails
$ rails _3.2.15_ new rickrockstar -m http://refinerycms.com/t/2.1.0
</shell>

TIP. If you want to create a Rails 4 application with refinerycms, you'll have to use the edge version. This works with Rails 4.1.10, 4.2.0 and 4.2.1:
TIP. If you want to create a Rails 4 application with refinerycms, you'll have to use the edge version. This works with Rails 4.2.3:

<shell>
$ rails new rickrockstar -m http://refinerycms.com/t/edge
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Refinery CMS

__An open source content management system for Rails 4.1+__
__An open source content management system for Rails 4.2+__

More information at [http://refinerycms.com](http://refinerycms.com)

@@ -28,7 +28,7 @@ If you're new to Refinery, start with this guide:

* __[Getting Started](http://refinerycms.com/guides/getting-started)__

If you want to use Rails 4.1.x with Refinery now, install using this template:
If you want to use Rails 4.2.x with Refinery now, install using this template:

rails new app_name -m http://refinerycms.com/t/edge

@@ -45,7 +45,7 @@ Unlike other content managers, Refinery is truly __aimed at the end user__ makin
* Sticks to __"the Rails way"__ as much as possible; we don't force you to learn new templating languages.
* Uses [jQuery](http://jquery.com/) for fast and concise Javascript.

![Refinery Pages UI](http://refinerycms.com/system/images/0000/0576/dashboard.png)
### Demo

Wanna see Refinery for yourself? [Try the demo](http://demo.refinerycms.com/refinery).

4 changes: 2 additions & 2 deletions refinerycms.gemspec
Original file line number Diff line number Diff line change
@@ -7,8 +7,8 @@ Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = %q{refinerycms}
s.version = version
s.description = %q{A Ruby on Rails CMS that supports Rails 4.1. It's easy to extend and sticks to 'the Rails way' where possible.}
s.summary = %q{A Ruby on Rails CMS that supports Rails 4.1}
s.description = %q{A Ruby on Rails CMS that supports Rails 4.2. It's easy to extend and sticks to 'the Rails way' where possible.}
s.summary = %q{A Ruby on Rails CMS that supports Rails 4.2}
s.email = %q{[email protected]}
s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms}

1 comment on commit 5bc9ecb

@railsfactory-bhaskararao

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have used 3534c48 and going cool.

Please sign in to comment.