annotate_yaml 0.0.1

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2c14ecac3246987fee264fb6376876b98567fdf2
4
+ data.tar.gz: ba0bc444c4b4e899bfbceffea570ab65d5bd9ce2
5
+ SHA512:
6
+ metadata.gz: 2cea730b137cb0b01262d7f7dcb07becbd0656d3bc327bebb04bf865ac35fb179de1de4df27a0efc10652d1aa1580af2dbff847ad830b421636e8efe05edbb1e
7
+ data.tar.gz: dfa5085ca8ab53dc0f9338326196b98cf9a05fead69ec6b49e20d5c3f4c5f26a0bb81c985f239a06517777cf77387e6258746e28e21487cc691d8960da8b0f3e
data/.gitignore ADDED
@@ -0,0 +1,23 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
23
+ .DS_Store
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in annotate_yaml.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Pierre URBAN
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # AnnotateYaml
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'annotate_yaml'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install annotate_yaml
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( https://github.com/[my-github-username]/annotate_yaml/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'annotate_yaml/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "annotate_yaml"
8
+ spec.version = AnnotateYaml::VERSION
9
+ spec.authors = ["Pierre URBAN"]
10
+ spec.email = ["urban.pierre@gmail.com"]
11
+ spec.summary = %q{Annote YAML to annotate your YAML files.}
12
+ spec.description = %q{Annote YAML to annotate your YAML files}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake"
23
+ end
@@ -0,0 +1,6 @@
1
+ require "annotate_yaml/version"
2
+ require "annotate_yaml/annotate_yaml"
3
+
4
+ module AnnotateYaml
5
+ require 'annotate_yaml/railtie' if defined?(Rails)
6
+ end
@@ -0,0 +1,53 @@
1
+ module AnnotateYaml
2
+ require 'yaml'
3
+
4
+ class << self
5
+ def annotate_locales
6
+
7
+ files = Dir.glob("config/locales/*.yml")
8
+ files.each do |file|
9
+ thing = YAML.load_file(file)
10
+ array_of_hashes_of_values_with_keys = []
11
+ yaml_navigation(thing, [], array_of_hashes_of_values_with_keys)
12
+ # puts array_of_hashes_of_values_with_keys.inspect
13
+
14
+ string_result = ''
15
+
16
+ text = File.open(file).read
17
+ text.gsub!(/\r\n?/, "\n")
18
+ current_hash = array_of_hashes_of_values_with_keys.shift
19
+ text.each_line do |line|
20
+ # puts "#{line}"
21
+
22
+ line_hash = YAML::load line
23
+ if line_hash === false
24
+ string_result += line
25
+ else
26
+ line_key, line_value = line_hash.first
27
+ key, value = current_hash.first
28
+ if line_value == key
29
+ string_result += (line.end_with?(" \# #{value}\n") ? line : line.gsub("\n", '') + " \# #{value}\n")
30
+ current_hash = array_of_hashes_of_values_with_keys.shift
31
+ else
32
+ string_result += line
33
+ end
34
+ end
35
+
36
+ File.open(file, "w+") do |f|
37
+ f.write(string_result)
38
+ end
39
+ end
40
+ end
41
+ end
42
+
43
+ def yaml_navigation(yaml_hash, keys_array_origin = [], result = [])
44
+ yaml_hash.each do |key, value|
45
+ keys_array_updated = keys_array_origin.dup
46
+ keys_array_updated.push(key)
47
+ result.push({ value => keys_array_updated.join('.') }) unless value.nil? || value.is_a?(Hash)
48
+ yaml_navigation value, keys_array_updated, result if value.is_a?(Hash)
49
+ end
50
+ end
51
+ end
52
+
53
+ end
@@ -0,0 +1,7 @@
1
+ module AnnotateYaml
2
+ class Railtie < Rails::Railtie
3
+ rake_tasks do
4
+ load "tasks/annotate_yaml.rake"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ module AnnotateYaml
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,10 @@
1
+ namespace :annotate do
2
+ namespace :yaml do
3
+ desc "Annotate keys of YAML files inside config/locales/*.yml"
4
+ task locales: :environment do
5
+
6
+ AnnotateYaml.annotate_locales
7
+
8
+ end
9
+ end
10
+ end
metadata ADDED
@@ -0,0 +1,83 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: annotate_yaml
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Pierre URBAN
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-07-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Annote YAML to annotate your YAML files
42
+ email:
43
+ - urban.pierre@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - annotate_yaml.gemspec
54
+ - lib/annotate_yaml.rb
55
+ - lib/annotate_yaml/annotate_yaml.rb
56
+ - lib/annotate_yaml/railtie.rb
57
+ - lib/annotate_yaml/version.rb
58
+ - lib/tasks/annotate_yaml.rake
59
+ homepage: ''
60
+ licenses:
61
+ - MIT
62
+ metadata: {}
63
+ post_install_message:
64
+ rdoc_options: []
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ requirements: []
78
+ rubyforge_project:
79
+ rubygems_version: 2.2.2
80
+ signing_key:
81
+ specification_version: 4
82
+ summary: Annote YAML to annotate your YAML files.
83
+ test_files: []