rack-accept_language 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.gemtest ADDED
File without changes
data/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ group :development do
9
+ gem "bundler", "~> 1.0.0"
10
+ gem "jeweler", "~> 1.5.2"
11
+ gem "rcov", ">= 0"
12
+ gem "rack"
13
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,20 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ git (1.2.5)
5
+ jeweler (1.5.2)
6
+ bundler (~> 1.0.0)
7
+ git (>= 1.2.5)
8
+ rake
9
+ rack (1.2.1)
10
+ rake (0.8.7)
11
+ rcov (0.9.9)
12
+
13
+ PLATFORMS
14
+ ruby
15
+
16
+ DEPENDENCIES
17
+ bundler (~> 1.0.0)
18
+ jeweler (~> 1.5.2)
19
+ rack
20
+ rcov
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 miyucy
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,19 @@
1
+ = rack-accept_language
2
+
3
+ Description goes here.
4
+
5
+ == Contributing to rack-accept_language
6
+
7
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
8
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
9
+ * Fork the project
10
+ * Start a feature/bugfix branch
11
+ * Commit and push until you are happy with your contribution
12
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2011 miyucy. See LICENSE.txt for
18
+ further details.
19
+
data/Rakefile ADDED
@@ -0,0 +1,53 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'rake'
11
+
12
+ require 'jeweler'
13
+ Jeweler::Tasks.new do |gem|
14
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
15
+ gem.name = "rack-accept_language"
16
+ gem.homepage = "http://github.com/miyucy/rack-accept_language"
17
+ gem.license = "MIT"
18
+ gem.summary = %Q{HTTP_ACCEPT_LANGUAGE parser}
19
+ gem.description = %Q{HTTP_ACCEPT_LANGUAGE parser}
20
+ gem.email = "miyucy@gmail.com"
21
+ gem.authors = ["miyucy"]
22
+ # Include your dependencies below. Runtime dependencies are required when using your gem,
23
+ # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
24
+ # gem.add_runtime_dependency 'jabber4r', '> 0.1'
25
+ # gem.add_development_dependency 'rspec', '> 1.2.3'
26
+ end
27
+ Jeweler::RubygemsDotOrgTasks.new
28
+
29
+ require 'rake/testtask'
30
+ Rake::TestTask.new(:test) do |test|
31
+ test.libs << 'lib' << 'test'
32
+ test.pattern = 'test/**/test_*.rb'
33
+ test.verbose = true
34
+ end
35
+
36
+ require 'rcov/rcovtask'
37
+ Rcov::RcovTask.new do |test|
38
+ test.libs << 'test'
39
+ test.pattern = 'test/**/test_*.rb'
40
+ test.verbose = true
41
+ end
42
+
43
+ task :default => :test
44
+
45
+ require 'rake/rdoctask'
46
+ Rake::RDocTask.new do |rdoc|
47
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
48
+
49
+ rdoc.rdoc_dir = 'rdoc'
50
+ rdoc.title = "rack-accept_language #{version}"
51
+ rdoc.rdoc_files.include('README*')
52
+ rdoc.rdoc_files.include('lib/**/*.rb')
53
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.0
@@ -0,0 +1,27 @@
1
+ class Rack::AcceptLanguage
2
+ QVALUE = /(?:0(?:\.\d{0,3})?)|(?:1(?:\.0{0,3})?)/
3
+ ALPHABET = /[a-z]/i
4
+ LANGUAGE_TAG = /(?:#{ALPHABET}{1,8}(?:-#{ALPHABET}{1,8})*)|\*/o
5
+ LANGUAGE_RANGE = /(#{LANGUAGE_TAG})(?:;q=(#{QVALUE}))?/o
6
+
7
+ def initialize(app, *args, &block)
8
+ @app = app
9
+ end
10
+
11
+ def call(env)
12
+ @app.call(accept_language env)
13
+ end
14
+
15
+ def accept_language(env)
16
+ env.tap{ |e| e['rack.accept_language'] = parse env['HTTP_ACCEPT_LANGUAGE'] }
17
+ end
18
+
19
+ def parse(hal)
20
+ hal.to_s.scan(LANGUAGE_RANGE).inject([]) { |r, (l, q)|
21
+ r << [l, [1 - (q || 1).to_f, -l.size, r.size]]
22
+ }.sort_by{ |e| e[1] }.map{ |e|
23
+ l, c = e[0].split(/-/, 2)
24
+ c ? "#{l.downcase}-#{c.upcase}" : l.downcase
25
+ }
26
+ end
27
+ end
data/test/helper.rb ADDED
@@ -0,0 +1,18 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'test/unit'
11
+
12
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
13
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
14
+ require 'rack'
15
+ require 'rack/accept_language'
16
+
17
+ class Test::Unit::TestCase
18
+ end
@@ -0,0 +1,50 @@
1
+ require 'helper'
2
+
3
+ class TestRackAcceptLanguage < Test::Unit::TestCase
4
+ def setup
5
+ @app = lambda { |env| [200, {"Content-Type" => "text/plain"}, env['rack.accept_language']] }
6
+ @mdl = Rack::AcceptLanguage.new(@app)
7
+ @env = {'HTTP_ACCEPT_LANGUAGE' => 'it;q=0.4,en-us, en-gb;q=0.8,en;q=0.6, de;q=2, invalid;q=1, xx;q=30,, ., .'}
8
+ end
9
+
10
+ def test_initialize
11
+ assert_nothing_raised do
12
+ Rack::AcceptLanguage.new(@app)
13
+ end
14
+ end
15
+
16
+ def test_accept_language
17
+ assert @mdl.accept_language({}).has_key? 'rack.accept_language'
18
+ end
19
+
20
+ def tets_app
21
+ status, header, body = @mdl.call(@env)
22
+ assert_equal %w[en-US en-GB en it], body
23
+ end
24
+
25
+ def test_parse
26
+ assert_equal %w[da fr-FR en-GB en],
27
+ @mdl.parse('da, en-gb;q=0.8, en;q=0.7, FR-FR;q=0.9')
28
+ end
29
+
30
+ def test_parse_blank_string
31
+ assert_equal [], @mdl.parse('')
32
+ assert_equal [], @mdl.parse(nil)
33
+ end
34
+
35
+ def test_parse_sort_by_quality_value
36
+ assert_equal %w[a b c d e f], @mdl.parse('c;q=0.7 a;q=0.9 f;q=0.4 e;q=0.5 d;q=0.6 b;q=0.8')
37
+ end
38
+
39
+ def test_parse_sort_by_langtag_size
40
+ assert_equal %w[aaa bb c], @mdl.parse('c;q=0.5 bb;q=0.5 aaa;q=0.5')
41
+ end
42
+
43
+ def test_parse_stable_sort
44
+ assert_equal %w[c b a x y z v], @mdl.parse('x;q=0.1 c y;q=0.1 z;q=0.1 b v;q=0.1 a')
45
+ end
46
+
47
+ def test_parse_sorted
48
+ assert_equal %w[e aa bb c d], @mdl.parse('c;q=0.5, aa;q=0.5, d;q=0.4, bb;q=0.5, e')
49
+ end
50
+ end
metadata ADDED
@@ -0,0 +1,138 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rack-accept_language
3
+ version: !ruby/object:Gem::Version
4
+ hash: 31
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 0
10
+ version: 0.0.0
11
+ platform: ruby
12
+ authors:
13
+ - miyucy
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-02-22 00:00:00 +09:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ type: :development
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ hash: 23
29
+ segments:
30
+ - 1
31
+ - 0
32
+ - 0
33
+ version: 1.0.0
34
+ name: bundler
35
+ version_requirements: *id001
36
+ prerelease: false
37
+ - !ruby/object:Gem::Dependency
38
+ type: :development
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ~>
43
+ - !ruby/object:Gem::Version
44
+ hash: 7
45
+ segments:
46
+ - 1
47
+ - 5
48
+ - 2
49
+ version: 1.5.2
50
+ name: jeweler
51
+ version_requirements: *id002
52
+ prerelease: false
53
+ - !ruby/object:Gem::Dependency
54
+ type: :development
55
+ requirement: &id003 !ruby/object:Gem::Requirement
56
+ none: false
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ hash: 3
61
+ segments:
62
+ - 0
63
+ version: "0"
64
+ name: rcov
65
+ version_requirements: *id003
66
+ prerelease: false
67
+ - !ruby/object:Gem::Dependency
68
+ type: :development
69
+ requirement: &id004 !ruby/object:Gem::Requirement
70
+ none: false
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ hash: 3
75
+ segments:
76
+ - 0
77
+ version: "0"
78
+ name: rack
79
+ version_requirements: *id004
80
+ prerelease: false
81
+ description: HTTP_ACCEPT_LANGUAGE parser
82
+ email: miyucy@gmail.com
83
+ executables: []
84
+
85
+ extensions: []
86
+
87
+ extra_rdoc_files:
88
+ - LICENSE.txt
89
+ - README.rdoc
90
+ files:
91
+ - .document
92
+ - .gemtest
93
+ - Gemfile
94
+ - Gemfile.lock
95
+ - LICENSE.txt
96
+ - README.rdoc
97
+ - Rakefile
98
+ - VERSION
99
+ - lib/rack/accept_language.rb
100
+ - test/helper.rb
101
+ - test/test_rack-accept_language.rb
102
+ has_rdoc: true
103
+ homepage: http://github.com/miyucy/rack-accept_language
104
+ licenses:
105
+ - MIT
106
+ post_install_message:
107
+ rdoc_options: []
108
+
109
+ require_paths:
110
+ - lib
111
+ required_ruby_version: !ruby/object:Gem::Requirement
112
+ none: false
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ hash: 3
117
+ segments:
118
+ - 0
119
+ version: "0"
120
+ required_rubygems_version: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ">="
124
+ - !ruby/object:Gem::Version
125
+ hash: 3
126
+ segments:
127
+ - 0
128
+ version: "0"
129
+ requirements: []
130
+
131
+ rubyforge_project:
132
+ rubygems_version: 1.5.2
133
+ signing_key:
134
+ specification_version: 3
135
+ summary: HTTP_ACCEPT_LANGUAGE parser
136
+ test_files:
137
+ - test/helper.rb
138
+ - test/test_rack-accept_language.rb