i18n-tasks 0.8.1 → 0.8.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ac7538e11e298ebabf1e830a5f15ea1cff8840f2
4
- data.tar.gz: 05f55075453893e51bce68373cf088eb7388ca2c
3
+ metadata.gz: 8a975e29e67305ae1340693c7ccf7d200e605b8c
4
+ data.tar.gz: 3f5eef5b3d41692f1e76acb59afd91da74222397
5
5
  SHA512:
6
- metadata.gz: 8c2cbdfff3303c74416ae6f18e18b5774f0b092202ec457403c0c8794438d54eeb2875ff8e2c05f90cf8ec693190e2e06585fd9cb2b33b286b20737e81a1dcb5
7
- data.tar.gz: abba37a5247bfa46d53dbdfca35d01fd916378a3f5b333b02d7c9a265e148270f63b0c0aaed50bdb6bc9ad2be621e5b38cb84522d9460a7d5b7618d4d1362117
6
+ metadata.gz: 77b01dffd57846ebb998c278e6201e8b5c571a6fa906e42e3be042d21ffb60df6375cde83138dc66cf2c9c7687c0355f13cbe6cc3e211697489bdd3298d084a7
7
+ data.tar.gz: 518755d6b8a5c465a0e0848e4d5a817f253dc8e1c3b17aa2dec24311f340a3d886350dc47593cd3124d6819033fa994d019ab5b66dc0257c5f72cef7e79fb187
data/CHANGES.md CHANGED
@@ -1,6 +1,10 @@
1
+ ## 0.8.2
2
+
3
+ * Fix failure on nil values in the data config [#142](https://github.com/glebm/i18n-tasks/issues/142).
4
+
1
5
  ## 0.8.1
2
6
 
3
- * The default config file now excludes `app/assets/images` and app/assets/fonts`. Add `*.otf` to ignored extensions.
7
+ * The default config file now excludes `app/assets/images` and `app/assets/fonts`. Add `*.otf` to ignored extensions.
4
8
  * If an error message occurs when scanning, the error message now includes the filename [#141](https://github.com/glebm/i18n-tasks/issues/141).
5
9
 
6
10
  ## 0.8.0
data/README.md CHANGED
@@ -22,7 +22,7 @@ i18n-tasks can be used with any project using the ruby [i18n gem][i18n-gem] (def
22
22
  Add i18n-tasks to the Gemfile:
23
23
 
24
24
  ```ruby
25
- gem 'i18n-tasks', '~> 0.8.1'
25
+ gem 'i18n-tasks', '~> 0.8.2'
26
26
  ```
27
27
 
28
28
  Copy the default [configuration file](#configuration):
@@ -110,7 +110,7 @@ module I18n::Tasks
110
110
  end
111
111
 
112
112
  def config=(config)
113
- @config = DEFAULTS.deep_merge((config || {}).with_indifferent_access)
113
+ @config = DEFAULTS.deep_merge((config || {}).reject { |k, v| v.nil? }.with_indifferent_access)
114
114
  reload
115
115
  end
116
116
 
@@ -1,6 +1,6 @@
1
1
  # coding: utf-8
2
2
  module I18n
3
3
  module Tasks
4
- VERSION = '0.8.1'
4
+ VERSION = '0.8.2'
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: i18n-tasks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - glebm