makeloc 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/VERSION +1 -1
- data/lib/makeloc/generators/do/USAGE +1 -1
- data/lib/makeloc/generators/do/do_generator.rb +1 -1
- data/makeloc.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3c3297d64350000d25e07ec808effc15b32ce49
|
4
|
+
data.tar.gz: 6228dc7c55ea3b39b010c1127de101ecf6acfd6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1fe14e2fda18c9c551a562b6d84cc005916a2787ef50c698a26613a5ddcd8290f168c5dca00717f0aa6f70bf4175a67e5057291825939e64dc2670e77e7acf0
|
7
|
+
data.tar.gz: f522bb692318cd4102469e7e84a7ca9cf3f3a3b3081e46990f4d5fc4d077e5055340693307348efa233ebf945a5ff5e8f890d180a880d5fc890a5f1c46276289
|
data/README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# Makeloc
|
2
|
-
A little generator to tidy locale files along with their
|
2
|
+
A little generator to tidy locale files along with their content for Ruby On Rails
|
3
3
|
|
4
4
|
## Idea
|
5
5
|
Makeloc comes from the necessity to update or create locale files while developing Ruby on Rails application. Often there is a reference language which get manually updated whenever necessary and later all the other locales should follow the same update steps. This last part could be very tedious and prone to errors or missings.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.2
|
@@ -26,7 +26,7 @@ module Makeloc
|
|
26
26
|
target_data.deep_merge!(existing_target_data) if existing_target_data
|
27
27
|
end
|
28
28
|
|
29
|
-
create_file(target_fp){ {target_lang => target_data}.to_yaml }
|
29
|
+
create_file(target_fp){ {target_lang => target_data}.to_yaml(:line_width => -1) } # line_width => -1 to disable indentation
|
30
30
|
|
31
31
|
end
|
32
32
|
|
data/makeloc.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: makeloc 0.1.
|
5
|
+
# stub: makeloc 0.1.2 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "makeloc"
|
9
|
-
s.version = "0.1.
|
9
|
+
s.version = "0.1.2"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|
13
13
|
s.authors = ["masciugo"]
|
14
|
-
s.date = "2014-
|
14
|
+
s.date = "2014-07-08"
|
15
15
|
s.description = ""
|
16
16
|
s.email = "masciugo@gmail.com"
|
17
17
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: makeloc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- masciugo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-07-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|