+++ /dev/null
-Copyright (c) 2008 [name of plugin creator]
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
A small effort in making a plugin which helps you detect the users preferred language, as sent by the HTTP header.
-= Features
+== Features
* Splits the http-header into languages specified by the user
* Returns empty array if header is illformed.
* Gives compatible languages
See also: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html
-= Example
+== Example
class SomeController < ApplicationController
def some_action
request.preferred_language_from(available)
# => 'nl-BE'
- request.user_preferred_language
+ request.user_preferred_languages
# => [ 'en-GB']
available = %w{en-US}
request.compatible_language_from(available)
end
end
-= Changenotes
+== Installation
+
+Install the gem <tt>http_accept_language</tt>, require it in your Rails app.
+
+== Changelog
-2009-03-12: Rails 2.3 compatible
+* 2010-01-05: Gem release
+* 2009-03-12: Rails 2.3 compatible
-Copyright (c) 2008 Iain Hecker, released under the MIT license
+Copyright (c) 2008-2010 Iain Hecker, released under the MIT license
require 'rake'
-require 'rake/testtask'
-require 'rake/rdoctask'
-desc 'Default: run unit tests.'
-task :default => :test
+begin
+ require 'jeweler'
+ Jeweler::Tasks.new do |gem|
+ gem.name = "http_accept_language"
+ gem.summary = %Q{Parse the HTTP Accept Language Header}
+ gem.description = %Q{Find out which locale the user preferes by reading the languages they specified in their browser}
+ gem.email = "iain@iain.nl"
+ gem.homepage = "http://github.com/iain/http_accept_language"
+ gem.authors = ["Iain Hecker"]
+ end
+ Jeweler::GemcutterTasks.new
+rescue LoadError
+ puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
+end
+require 'rake/testtask'
desc 'Test the http_accept_language plugin.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.verbose = true
end
+desc 'Default: run unit tests.'
+task :default => :test
+
+require 'rake/rdoctask'
desc 'Generate documentation for the http_accept_language plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
+++ /dev/null
-# desc "Explaining what the task does"
-# task :http_accept_language do
-# # Task goes here
-# end