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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bdb1551cf52782393df61fe7a9e3030f1afd3d75
4
- data.tar.gz: 6b5faa4fc45c96d471fb20336c625b309221b725
3
+ metadata.gz: a3c3297d64350000d25e07ec808effc15b32ce49
4
+ data.tar.gz: 6228dc7c55ea3b39b010c1127de101ecf6acfd6d
5
5
  SHA512:
6
- metadata.gz: aed2bea2495ab47d716bc10c8e6c1c2d5d77406232cd1dd00f02c70eb96a090785e14d705a8220e2a45e4406fa462ec0045827ebbb9bf5b502888511c715ca70
7
- data.tar.gz: fedd1115e3ff5076e525963c133bd43ba0b599aaf38c115111b1d3705c21d0dc030ce25e2108438de1a4ebce621a1e127ba0d4c8c00b909ff6320502589c25a4
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 contents for Ruby On Rails
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
1
+ 0.1.2
@@ -1,5 +1,5 @@
1
1
  Description:
2
- A little generator to tidy locale file contents for Ruby On Rails
2
+ A little generator to tidy locale files along with their content for Ruby On Rails
3
3
 
4
4
  Example:
5
5
  rails g makeloc:do it config/locales/activerecord.en.yml
@@ -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
 
@@ -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.1 ruby lib
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.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-06-09"
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.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-06-09 00:00:00.000000000 Z
11
+ date: 2014-07-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails