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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/lib/yamlook/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d8d60c103a1ccc580ea4ef6e0d3e2f5f053caae8a43cf43938faa120b953a5c6
4
- data.tar.gz: 7056f0a884fd99fc881360bd6c2945554699995546e2de3e81c73187613d4994
3
+ metadata.gz: aebec4bd618402d42523186b686d7ccb4de1ca0b5f8e42b7c7bafbe999692ce3
4
+ data.tar.gz: f4340d4cc1f9f35d897dd78e88aff278339361db7e87cc058cd6edac2f9363d6
5
5
  SHA512:
6
- metadata.gz: 1589f85031a782dc1e269d857f77f4b2ef686fb34823334cc0bf0a722bfc48545b69f8b121822e20855948bfd34180394743c691286bc63574ef47f9ff6bafdb
7
- data.tar.gz: 76fedaacd5a13e16ef5d1feab2604c91b275047873e80e303242c9444cced2b04e2a51e3c77d3ddd9e1f8af8dac8b774122d0aecdd2e084edbd0aeb804026a9b
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/[sl4vr]/yamlook.
29
+ Bug reports and pull requests are welcome on GitHub at https://github.com/sl4vr/yamlook.
30
30
 
31
31
 
32
32
  ## License
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Yamlook
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yamlook
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Viacheslav Mefodin