rails_locale_sorter 0.0.2 → 0.0.3
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.
- data/.gitignore +2 -0
- data/lib/rails_locale_sorter.rb +1 -1
- data/lib/rails_locale_sorter/version.rb +1 -1
- data/spec/rls-spec.rb +1 -1
- metadata +3 -7
- data/spec/resources/out/__out.yml +0 -7
- data/spec/resources/out/__src.yml +0 -7
data/.gitignore
CHANGED
data/lib/rails_locale_sorter.rb
CHANGED
data/spec/rls-spec.rb
CHANGED
@@ -19,7 +19,7 @@ describe RailsLocaleSorter::LocaleManager do
|
|
19
19
|
it "writes blank keys for new values" do
|
20
20
|
@lm.parse_to_yaml "src.yml"
|
21
21
|
|
22
|
-
result = File.open("#{OUT_DIR}/
|
22
|
+
result = File.open("#{OUT_DIR}/out.yml").read
|
23
23
|
result.should include "source_only: ~"
|
24
24
|
result.should include "src_only: ~"
|
25
25
|
result.should include "out:"
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_locale_sorter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 3
|
10
|
+
version: 0.0.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Michael Wheeler
|
@@ -87,8 +87,6 @@ files:
|
|
87
87
|
- spec/resources/locale_fixtures/src.yml
|
88
88
|
- spec/resources/locale_tests/source.yml
|
89
89
|
- spec/resources/locale_tests/target.yml
|
90
|
-
- spec/resources/out/__out.yml
|
91
|
-
- spec/resources/out/__src.yml
|
92
90
|
- spec/resources/src/out.yml
|
93
91
|
- spec/resources/src/src.yml
|
94
92
|
- spec/rls-spec.rb
|
@@ -132,8 +130,6 @@ test_files:
|
|
132
130
|
- spec/resources/locale_fixtures/src.yml
|
133
131
|
- spec/resources/locale_tests/source.yml
|
134
132
|
- spec/resources/locale_tests/target.yml
|
135
|
-
- spec/resources/out/__out.yml
|
136
|
-
- spec/resources/out/__src.yml
|
137
133
|
- spec/resources/src/out.yml
|
138
134
|
- spec/resources/src/src.yml
|
139
135
|
- spec/rls-spec.rb
|