README.md in rack-http-accept-language-0.1.0 vs README.md in rack-http-accept-language-0.1.1
- old
+ new
@@ -1,7 +1,8 @@
# RackHttpAcceptLanguage
[![Build Status](https://travis-ci.org/kaeuferportal/rack-http-accept-language.svg?branch=master)](https://travis-ci.org/kaeuferportal/rack-http-accept-language)
+[![Gem Version](https://badge.fury.io/rb/rack-http-accept-language.svg)](https://badge.fury.io/rb/rack-http-accept-language)
## Possible Methods
You have two methods on the ``env`` object:
```
@@ -12,25 +13,35 @@
rack_http_accept_lanugages
```
## How you can use it with Sinatra
-```
+``` ruby
class App < Sinatra::Base
use RackHttpAcceptLanguage::Middleware
post '/' do
I18n.locale = request.env.rack_http_accept_language
end
end
```
+## How you use it with Rails
+Add the following line to your ``application.rb``
+``` ruby
+config.middleware.use RackHttpAcceptLanguage::Middleware
+```
+
## Installation
Add the gem to your Gemfile:
``` ruby
gem 'rack-http-accept-language'
```
Run `bundle install` to install it.
+
+## License
+
+RackHttpAcceptLanguage is released under the [MIT License](http://www.opensource.org/licenses/MIT).