i18n_translation_spawner 0.0.11 → 0.0.12

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.
Files changed (2) hide show
  1. data/lib/i18n_translation_spawner.rb +1 -1
  2. metadata +3 -3
@@ -40,7 +40,7 @@ module I18n
40
40
  end
41
41
 
42
42
  def spawn_translation_key(key, locale, options, exception)
43
- I18n.available_locales.reject { |l| skip_locales.include?(l) }.each do |_locale|
43
+ I18n.available_locales.reject { |l| skip_locales.map(&:to_s).include?(l.to_s) }.each do |_locale|
44
44
  begin
45
45
  decode_file_path(key, _locale).tap do |path|
46
46
  translations_hash = YAML::load_file(path)
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: i18n_translation_spawner
3
3
  version: !ruby/object:Gem::Version
4
- hash: 9
4
+ hash: 7
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 11
10
- version: 0.0.11
9
+ - 12
10
+ version: 0.0.12
11
11
  platform: ruby
12
12
  authors:
13
13
  - "B\xC5\x82a\xC5\xBCej --Stevo-- Kosmowski"