yamlook 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.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/yamlook/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: aebec4bd618402d42523186b686d7ccb4de1ca0b5f8e42b7c7bafbe999692ce3
|
4
|
+
data.tar.gz: f4340d4cc1f9f35d897dd78e88aff278339361db7e87cc058cd6edac2f9363d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21a8e45883a890fdfb1d054f3029f53cd8dae4841f1baf3f8a4fa09145721d1e1ec71abdc8f137fe004314260403df199016f29c1ce11e07d22fb9803415ca90
|
7
|
+
data.tar.gz: d095774554d7022fed685a86f532a6fc9b45eebd899fb8e4f8d5347a0e2deb16e9c3324c4875c6f4896eb116054de9a386b5e35eced0bdaf694c80fe3f0816a4
|
data/README.md
CHANGED
@@ -5,7 +5,7 @@ or deep configs and you don't know where one or another value comes from.
|
|
5
5
|
|
6
6
|
For instance you have such code:
|
7
7
|
```
|
8
|
-
t("admin.marketing.reports.some_report.title"), some_report_path(format: "csv")
|
8
|
+
<%= link_to t("admin.marketing.reports.some_report.title"), some_report_path(format: "csv") %>
|
9
9
|
```
|
10
10
|
Run `yamlook admin.marketing.reports.some_report.title` in terminal and it will show up all occurrences of that value
|
11
11
|
in your internationalization yaml files. If you have all the internationalization in one yaml file, you will likely
|
@@ -26,7 +26,7 @@ $ yamlook some.deep.key.in.you.yaml.file
|
|
26
26
|
|
27
27
|
## Contributing
|
28
28
|
|
29
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
29
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/sl4vr/yamlook.
|
30
30
|
|
31
31
|
|
32
32
|
## License
|
data/lib/yamlook/version.rb
CHANGED