Skip to content

Commit cf74d29

Browse files
committed
Update README for 2.0.0
1 parent fd97e15 commit cf74d29

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Tolaria is a [content management system](https://en.wikipedia.org/wiki/Content_m
2121
- Easily overridable on a case-by-case basis.
2222
- Designed for use on Heroku, in containers, and on websites with TLS.
2323
- Modest dependencies.
24+
- Compatible with Rails 5 and Rails 4.2.
2425

2526
### Browser Support
2627

@@ -31,10 +32,14 @@ Tolaria supports IE10+, Edge, Safari, Chrome, Firefox, iOS, and Chrome for Andro
3132
Add Tolaria to your project's `Gemfile`:
3233

3334
```ruby
34-
gem "tolaria"
35+
# If you are running Rails 5, use Tolaria 2
36+
gem "tolaria", "~> 2.0"
37+
38+
# If you are running Rails 4.2, use Tolaria 1.2
39+
gem "tolaria", "~> 1.2"
3540
```
3641

37-
Then update your bundle.
42+
Then update your bundle with `bundle update`
3843

3944
Now run the installation generator. This will create an initializer for Tolaria plus a migration to set up an `administrators` table. Migrate your database.
4045

0 commit comments

Comments
 (0)