translate_self 0.8.0 → 0.9.0
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/CHANGELOG.md +6 -1
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/translate_self/translation.rb +1 -1
- data/lib/translate_self/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 06cd6e728398f95604296576f5f3712addcaf0f80d35f1ec9a1a0fd85a8f0f12
|
|
4
|
+
data.tar.gz: a0e2990e3b04699338dc65330e8468c126f5b8a06a4aaf8dd858f28307c75b9b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87cd44608ef643c1e449c558cccf36772fed93a6427872ea1741c035e6e43c50c8cb26baca94414fd11910ef867a791860289870a6c6b3d3a439c0d816fadd52
|
|
7
|
+
data.tar.gz: bf6cc3feef26ee424b329ab88ee152fd7004608817fa91b3a5789e62e3fcc77097da98f7efadcf463b011d270c6a158e964ae4803ae7f20fe9c7f25dd56775d9
|
data/CHANGELOG.md
CHANGED
|
@@ -34,4 +34,9 @@ Seems like you need to update it by hand!
|
|
|
34
34
|
|
|
35
35
|
## [0.8.0] - 2021-06-08
|
|
36
36
|
|
|
37
|
-
- Add option to use the shorter `t_to_language_code` alias.
|
|
37
|
+
- Add option to use the shorter `t_to_language_code` alias.
|
|
38
|
+
|
|
39
|
+
## [0.9.0] - 2021-06-08
|
|
40
|
+
|
|
41
|
+
# Breaking change from 0.8!
|
|
42
|
+
- `t_to_language_code` was too much typing, so changed it to `to_language_code`.
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -34,7 +34,7 @@ Now you can translate it to your language of chose with this gem!
|
|
|
34
34
|
What's even better is that you can also save some typing by using the shortened alias such as below:
|
|
35
35
|
|
|
36
36
|
```ruby
|
|
37
|
-
"hello world".
|
|
37
|
+
"hello world".to_ja # or to_fi, to_ru... endless possibilities!
|
|
38
38
|
# 世界よ、ハローだ
|
|
39
39
|
```
|
|
40
40
|
|