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 +4 -4
- data/CHANGES.md +5 -1
- data/README.md +1 -1
- data/lib/i18n/tasks/data/file_system_base.rb +1 -1
- data/lib/i18n/tasks/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8a975e29e67305ae1340693c7ccf7d200e605b8c
|
|
4
|
+
data.tar.gz: 3f5eef5b3d41692f1e76acb59afd91da74222397
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
25
|
+
gem 'i18n-tasks', '~> 0.8.2'
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
Copy the default [configuration file](#configuration):
|
data/lib/i18n/tasks/version.rb
CHANGED