rails_locale_detection 2.0.0.pre3 → 2.0.0.pre4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +7 -0
- data/Gemfile.lock +1 -1
- data/gemfiles/rails3.gemfile.lock +2 -2
- data/gemfiles/rails4.gemfile.lock +2 -2
- data/lib/rails_locale_detection/version.rb +1 -1
- data/rails_locale_detection.gemspec +2 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cdb3b948bbed5917988dec654d1f8772090111d9
|
|
4
|
+
data.tar.gz: 6acebc0ba0c2efc4fe06e06cd9caa0307f9f3009
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be1f305e9d8d64f19d66709b80b4d478591fc9a3aec1c21d453fd11b7c8932d9f9f12d19e62ef2f1f1cf5864be302b61bef457c4c2853193923b7969537c98d8
|
|
7
|
+
data.tar.gz: a5aaebfca2edca369aeeb4cfafd3354235457808bb71626483ac7299c87b918fe678b6f37c071acc618737d1121c8b9fb6a1b81930277e866a7b9591a6422205
|
data/.travis.yml
ADDED
data/Gemfile.lock
CHANGED
|
@@ -11,7 +11,8 @@ Gem::Specification.new do |gem|
|
|
|
11
11
|
gem.description = "Sets the current locale of a request using a combination of params, cookies, and http headers"
|
|
12
12
|
gem.summary = "Locale setting for rails project"
|
|
13
13
|
gem.homepage = "https://github.com/mateomurphy/rails_locale_detection"
|
|
14
|
-
|
|
14
|
+
gem.license = 'MIT'
|
|
15
|
+
|
|
15
16
|
gem.files = `git ls-files`.split($/)
|
|
16
17
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
17
18
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails_locale_detection
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.0.
|
|
4
|
+
version: 2.0.0.pre4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mateo Murphy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-07-
|
|
11
|
+
date: 2013-07-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: http_accept_language
|
|
@@ -147,6 +147,7 @@ files:
|
|
|
147
147
|
- .document
|
|
148
148
|
- .gitignore
|
|
149
149
|
- .rspec
|
|
150
|
+
- .travis.yml
|
|
150
151
|
- Appraisals
|
|
151
152
|
- Gemfile
|
|
152
153
|
- Gemfile.lock
|
|
@@ -174,7 +175,8 @@ files:
|
|
|
174
175
|
- spec/support/mocks.rb
|
|
175
176
|
- spec/support/rails.rb
|
|
176
177
|
homepage: https://github.com/mateomurphy/rails_locale_detection
|
|
177
|
-
licenses:
|
|
178
|
+
licenses:
|
|
179
|
+
- MIT
|
|
178
180
|
metadata: {}
|
|
179
181
|
post_install_message:
|
|
180
182
|
rdoc_options: []
|