rabelyoda 1.0.3 → 1.1.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.
Files changed (3) hide show
  1. data/VERSION +1 -1
  2. data/bin/rabelyoda +3 -1
  3. metadata +2 -2
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.3
1
+ 1.1.0
data/bin/rabelyoda CHANGED
@@ -65,7 +65,9 @@ def save_ymls
65
65
  $locales.keys.each do |locale_name|
66
66
  yml_filename = File.join('config', 'locales.out', "#{locale_name}.yml")
67
67
  File.open(yml_filename, "w") do |file|
68
- file.puts($locales[locale_name].ya2yaml)
68
+ result = {}
69
+ result[locale_name] = $locales[locale_name]
70
+ file.puts(result.ya2yaml)
69
71
  end
70
72
  status yml_filename
71
73
  end
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 1
7
+ - 1
7
8
  - 0
8
- - 3
9
- version: 1.0.3
9
+ version: 1.1.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - Andrey Subbotin