i18n-backend-http 0.1.1 → 0.1.2

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.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- i18n-backend-http (0.1.1)
4
+ i18n-backend-http (0.1.2)
5
5
  faraday
6
6
  gem_of_thrones
7
7
  i18n
data/Readme.md CHANGED
@@ -52,7 +52,7 @@ I18n.t('some.key') == "New value"
52
52
  ### :cache
53
53
  If you pass `:cache => Rails.cache`, translations will be loaded from cache and updated in the cache.<br/>
54
54
  The cache **MUST** support :unless_exist, so [gem_of_thrones](https://github.com/grosser/gem_of_thrones) can do its job,<br/>
55
- MemCacheStore + LibMemCacheStore + ActiveSupport::Cache::MemoryStore (edge) work.
55
+ MemCacheStore + LibmemcachedStore + ActiveSupport::Cache::MemoryStore (edge) work.
56
56
 
57
57
  ### Exceptions
58
58
  To handle http exceptions provide e.g. `:exception_handler => lambda{|e| puts e }` (prints to stderr by default).
@@ -1,7 +1,7 @@
1
1
  module I18n
2
2
  module Backend
3
3
  class Http
4
- VERSION = Version = "0.1.1"
4
+ VERSION = Version = "0.1.2"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: i18n-backend-http
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 31
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 1
10
- version: 0.1.1
9
+ - 2
10
+ version: 0.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Michael Grosser
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-06-14 00:00:00 Z
18
+ date: 2012-08-02 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: i18n