makeloc 0.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.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/Gemfile +15 -0
- data/Gemfile.lock +156 -0
- data/LICENSE.txt +20 -0
- data/README.md +28 -0
- data/Rakefile +56 -0
- data/VERSION +1 -0
- data/lib/makeloc/core_extensions.rb +65 -0
- data/lib/makeloc/generators/do/USAGE +8 -0
- data/lib/makeloc/generators/do/do_generator.rb +40 -0
- data/lib/makeloc/railtie.rb +9 -0
- data/lib/makeloc.rb +7 -0
- data/makeloc.gemspec +80 -0
- data/spec/generators/test_generator_spec.rb +74 -0
- data/spec/generators/tmp/test.en.yml +185 -0
- data/spec/generators/tmp/test.en.yml.bk +226 -0
- data/spec/generators/tmp/test.it.yml +229 -0
- data/spec/generators/tmp/test_incomplete.en.yml.bk +226 -0
- data/spec/spec_helper.rb +42 -0
- metadata +177 -0
| @@ -0,0 +1,226 @@ | |
| 1 | 
            +
            en:
         | 
| 2 | 
            +
              date:
         | 
| 3 | 
            +
                # abbr_day_names:
         | 
| 4 | 
            +
                # - Sun
         | 
| 5 | 
            +
                # - Mon
         | 
| 6 | 
            +
                # - Tue
         | 
| 7 | 
            +
                # - Wed
         | 
| 8 | 
            +
                # - Thu
         | 
| 9 | 
            +
                # - Fri
         | 
| 10 | 
            +
                # - Sat
         | 
| 11 | 
            +
                abbr_month_names:
         | 
| 12 | 
            +
                - 
         | 
| 13 | 
            +
                - Jan
         | 
| 14 | 
            +
                - Feb
         | 
| 15 | 
            +
                - Mar
         | 
| 16 | 
            +
                - Apr
         | 
| 17 | 
            +
                - May
         | 
| 18 | 
            +
                - Jun
         | 
| 19 | 
            +
                - Jul
         | 
| 20 | 
            +
                - Aug
         | 
| 21 | 
            +
                - Sep
         | 
| 22 | 
            +
                - Oct
         | 
| 23 | 
            +
                - Nov
         | 
| 24 | 
            +
                - Dec
         | 
| 25 | 
            +
                day_names:
         | 
| 26 | 
            +
                - Sunday
         | 
| 27 | 
            +
                - Monday
         | 
| 28 | 
            +
                - Tuesday
         | 
| 29 | 
            +
                - Wednesday
         | 
| 30 | 
            +
                - Thursday
         | 
| 31 | 
            +
                - Friday
         | 
| 32 | 
            +
                - Saturday
         | 
| 33 | 
            +
                formats:
         | 
| 34 | 
            +
                  default: ! '%Y-%m-%d'
         | 
| 35 | 
            +
                  long: ! '%B %d, %Y'
         | 
| 36 | 
            +
                  short: ! '%b %d'
         | 
| 37 | 
            +
                month_names:
         | 
| 38 | 
            +
                - 
         | 
| 39 | 
            +
                - January
         | 
| 40 | 
            +
                - February
         | 
| 41 | 
            +
                - March
         | 
| 42 | 
            +
                - April
         | 
| 43 | 
            +
                - May
         | 
| 44 | 
            +
                - June
         | 
| 45 | 
            +
                - July
         | 
| 46 | 
            +
                - August
         | 
| 47 | 
            +
                - September
         | 
| 48 | 
            +
                - October
         | 
| 49 | 
            +
                - November
         | 
| 50 | 
            +
                - December
         | 
| 51 | 
            +
                order:
         | 
| 52 | 
            +
                - :year
         | 
| 53 | 
            +
                - :month
         | 
| 54 | 
            +
                - :day
         | 
| 55 | 
            +
              datetime:
         | 
| 56 | 
            +
                distance_in_words:
         | 
| 57 | 
            +
                  about_x_hours:
         | 
| 58 | 
            +
                    one: about 1 hour
         | 
| 59 | 
            +
                    # other: about %{count} hours
         | 
| 60 | 
            +
                  about_x_months:
         | 
| 61 | 
            +
                    one: about 1 month
         | 
| 62 | 
            +
                    other: about %{count} months
         | 
| 63 | 
            +
                  about_x_years:
         | 
| 64 | 
            +
                    one: about 1 year
         | 
| 65 | 
            +
                    other: about %{count} years
         | 
| 66 | 
            +
                  almost_x_years:
         | 
| 67 | 
            +
                    one: almost 1 year
         | 
| 68 | 
            +
                    other: almost %{count} years
         | 
| 69 | 
            +
                  half_a_minute: half a minute
         | 
| 70 | 
            +
                  less_than_x_minutes:
         | 
| 71 | 
            +
                    one: less than a minute
         | 
| 72 | 
            +
                    other: less than %{count} minutes
         | 
| 73 | 
            +
                  less_than_x_seconds:
         | 
| 74 | 
            +
                    one: less than 1 second
         | 
| 75 | 
            +
                    other: less than %{count} seconds
         | 
| 76 | 
            +
                  over_x_years:
         | 
| 77 | 
            +
                    one: over 1 year
         | 
| 78 | 
            +
                    other: over %{count} years
         | 
| 79 | 
            +
                  x_days:
         | 
| 80 | 
            +
                    one: 1 day
         | 
| 81 | 
            +
                    other: ! '%{count} days'
         | 
| 82 | 
            +
                  x_minutes:
         | 
| 83 | 
            +
                    one: 1 minute
         | 
| 84 | 
            +
                    other: ! '%{count} minutes'
         | 
| 85 | 
            +
                  x_months:
         | 
| 86 | 
            +
                    one: 1 month
         | 
| 87 | 
            +
                    other: ! '%{count} months'
         | 
| 88 | 
            +
                  x_seconds:
         | 
| 89 | 
            +
                    one: 1 second
         | 
| 90 | 
            +
                    other: ! '%{count} seconds'
         | 
| 91 | 
            +
                prompts:
         | 
| 92 | 
            +
                  day: Day
         | 
| 93 | 
            +
                  hour: Hour
         | 
| 94 | 
            +
                  minute: Minute
         | 
| 95 | 
            +
                  month: Month
         | 
| 96 | 
            +
                  second: Seconds
         | 
| 97 | 
            +
                  year: Year
         | 
| 98 | 
            +
              errors: &errors
         | 
| 99 | 
            +
                format: ! '%{attribute} %{message}'
         | 
| 100 | 
            +
                messages:
         | 
| 101 | 
            +
                  accepted: must be accepted
         | 
| 102 | 
            +
                  blank: can't be blank
         | 
| 103 | 
            +
                  confirmation: doesn't match confirmation
         | 
| 104 | 
            +
                  empty: can't be empty
         | 
| 105 | 
            +
                  equal_to: must be equal to %{count}
         | 
| 106 | 
            +
                  even: must be even
         | 
| 107 | 
            +
                  exclusion: is reserved
         | 
| 108 | 
            +
                  greater_than: must be greater than %{count}
         | 
| 109 | 
            +
                  greater_than_or_equal_to: must be greater than or equal to %{count}
         | 
| 110 | 
            +
                  inclusion: is not included in the list
         | 
| 111 | 
            +
                  invalid: is invalid
         | 
| 112 | 
            +
                  less_than: must be less than %{count}
         | 
| 113 | 
            +
                  less_than_or_equal_to: must be less than or equal to %{count}
         | 
| 114 | 
            +
                  not_a_number: is not a number
         | 
| 115 | 
            +
                  not_an_integer: must be an integer
         | 
| 116 | 
            +
                  odd: must be odd
         | 
| 117 | 
            +
                  record_invalid: ! 'Validation failed: %{errors}'
         | 
| 118 | 
            +
                  taken: has already been taken
         | 
| 119 | 
            +
                  too_long:
         | 
| 120 | 
            +
                    one: is too long (maximum is 1 character)
         | 
| 121 | 
            +
                    other: is too long (maximum is %{count} characters)
         | 
| 122 | 
            +
                  too_short:
         | 
| 123 | 
            +
                    one: is too short (minimum is 1 character)
         | 
| 124 | 
            +
                    other: is too short (minimum is %{count} characters)
         | 
| 125 | 
            +
                  wrong_length:
         | 
| 126 | 
            +
                    one: is the wrong length (should be 1 character)
         | 
| 127 | 
            +
                    other: is the wrong length (should be %{count} characters)
         | 
| 128 | 
            +
                template:
         | 
| 129 | 
            +
                  body: ! 'There were problems with the following fields:'
         | 
| 130 | 
            +
                  header:
         | 
| 131 | 
            +
                    one: 1 error prohibited this %{model} from being saved
         | 
| 132 | 
            +
                    other: ! '%{count} errors prohibited this %{model} from being saved'
         | 
| 133 | 
            +
              helpers:
         | 
| 134 | 
            +
                select:
         | 
| 135 | 
            +
                  prompt: Please select
         | 
| 136 | 
            +
                  prompt_allow_nil: Please select or leave blank
         | 
| 137 | 
            +
                submit:
         | 
| 138 | 
            +
                  create: Create %{model}
         | 
| 139 | 
            +
                  submit: Save %{model}
         | 
| 140 | 
            +
                  update: Update %{model}
         | 
| 141 | 
            +
                  reset: Reset %{model}
         | 
| 142 | 
            +
                  add: Add %{model}
         | 
| 143 | 
            +
                links:
         | 
| 144 | 
            +
                  new: New %{model}
         | 
| 145 | 
            +
                  add: Add %{model}
         | 
| 146 | 
            +
                  edit: Edit %{model}
         | 
| 147 | 
            +
                  reset: Reset
         | 
| 148 | 
            +
                  back: Back
         | 
| 149 | 
            +
                  cancel: Cancel
         | 
| 150 | 
            +
                  confirm: Are you sure?
         | 
| 151 | 
            +
                  destroy: Delete %{model}
         | 
| 152 | 
            +
                  show: "Show %{model}"
         | 
| 153 | 
            +
                titles:
         | 
| 154 | 
            +
                  index: Listing %{model}
         | 
| 155 | 
            +
                  edit: Edit %{model}
         | 
| 156 | 
            +
                  new: New %{model}
         | 
| 157 | 
            +
                  show: "%{model} summary"
         | 
| 158 | 
            +
                tooltips:
         | 
| 159 | 
            +
                  edit: Edit this %{model}
         | 
| 160 | 
            +
                  save: Save this %{model}
         | 
| 161 | 
            +
                  new: Create a new %{model}
         | 
| 162 | 
            +
                  destroy: Delete this %{model}
         | 
| 163 | 
            +
                  back: Back to the list
         | 
| 164 | 
            +
                  show: Show this %{model}
         | 
| 165 | 
            +
                  add: Add a new %{model}
         | 
| 166 | 
            +
              sign_out: Sign out    
         | 
| 167 | 
            +
              number:
         | 
| 168 | 
            +
                currency:
         | 
| 169 | 
            +
                  format:
         | 
| 170 | 
            +
                    delimiter: ! ','
         | 
| 171 | 
            +
                    format: ! '%u%n'
         | 
| 172 | 
            +
                    precision: 2
         | 
| 173 | 
            +
                    separator: .
         | 
| 174 | 
            +
                    significant: false
         | 
| 175 | 
            +
                    strip_insignificant_zeros: false
         | 
| 176 | 
            +
                    unit: $
         | 
| 177 | 
            +
                format:
         | 
| 178 | 
            +
                  delimiter: ! ','
         | 
| 179 | 
            +
                  precision: 3
         | 
| 180 | 
            +
                  separator: .
         | 
| 181 | 
            +
                  significant: false
         | 
| 182 | 
            +
                  strip_insignificant_zeros: false
         | 
| 183 | 
            +
                human:
         | 
| 184 | 
            +
                  decimal_units:
         | 
| 185 | 
            +
                    format: ! '%n %u'
         | 
| 186 | 
            +
                    units:
         | 
| 187 | 
            +
                      billion: Billion
         | 
| 188 | 
            +
                      million: Million
         | 
| 189 | 
            +
                      quadrillion: Quadrillion
         | 
| 190 | 
            +
                      thousand: Thousand
         | 
| 191 | 
            +
                      trillion: Trillion
         | 
| 192 | 
            +
                      unit: ''
         | 
| 193 | 
            +
                  format:
         | 
| 194 | 
            +
                    delimiter: ''
         | 
| 195 | 
            +
                    precision: 3
         | 
| 196 | 
            +
                    significant: true
         | 
| 197 | 
            +
                    strip_insignificant_zeros: true
         | 
| 198 | 
            +
                  storage_units:
         | 
| 199 | 
            +
                    format: ! '%n %u'
         | 
| 200 | 
            +
                    units:
         | 
| 201 | 
            +
                      byte:
         | 
| 202 | 
            +
                        one: Byte
         | 
| 203 | 
            +
                        other: Bytes
         | 
| 204 | 
            +
                      gb: GB
         | 
| 205 | 
            +
                      kb: KB
         | 
| 206 | 
            +
                      mb: MB
         | 
| 207 | 
            +
                      tb: TB
         | 
| 208 | 
            +
                percentage:
         | 
| 209 | 
            +
                  format:
         | 
| 210 | 
            +
                    delimiter: ''
         | 
| 211 | 
            +
                precision:
         | 
| 212 | 
            +
                  format:
         | 
| 213 | 
            +
                    delimiter: ''
         | 
| 214 | 
            +
              support:
         | 
| 215 | 
            +
                array:
         | 
| 216 | 
            +
                  last_word_connector: ! ', and '
         | 
| 217 | 
            +
                  two_words_connector: ! ' and '
         | 
| 218 | 
            +
                  words_connector: ! ', '
         | 
| 219 | 
            +
              time:
         | 
| 220 | 
            +
                am: am
         | 
| 221 | 
            +
                formats:
         | 
| 222 | 
            +
                  default: ! '%a, %d %b %Y %H:%M:%S %z'
         | 
| 223 | 
            +
                  long: ! '%B %d, %Y %H:%M'
         | 
| 224 | 
            +
                  short: ! '%d %b %H:%M'
         | 
| 225 | 
            +
                pm: pm
         | 
| 226 | 
            +
             
         | 
    
        data/spec/spec_helper.rb
    ADDED
    
    | @@ -0,0 +1,42 @@ | |
| 1 | 
            +
            require 'simplecov'
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module SimpleCov::Configuration
         | 
| 4 | 
            +
              def clean_filters
         | 
| 5 | 
            +
                @filters = []
         | 
| 6 | 
            +
              end
         | 
| 7 | 
            +
            end
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            SimpleCov.configure do
         | 
| 10 | 
            +
              clean_filters
         | 
| 11 | 
            +
              load_adapter 'test_frameworks'
         | 
| 12 | 
            +
            end
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            ENV["COVERAGE"] && SimpleCov.start do
         | 
| 15 | 
            +
              add_filter "/.rvm/"
         | 
| 16 | 
            +
            end
         | 
| 17 | 
            +
            $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
         | 
| 18 | 
            +
            $LOAD_PATH.unshift(File.dirname(__FILE__))
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            require 'rspec'
         | 
| 21 | 
            +
            require "genspec"
         | 
| 22 | 
            +
            require 'byebug'
         | 
| 23 | 
            +
            require 'makeloc'
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            # Requires supporting files with custom matchers and macros, etc,
         | 
| 26 | 
            +
            # in ./support/ and its subdirectories.
         | 
| 27 | 
            +
            Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
         | 
| 28 | 
            +
             | 
| 29 | 
            +
            RSpec.configure do |config|
         | 
| 30 | 
            +
              # config.raise_errors_for_deprecations!
         | 
| 31 | 
            +
              config.treat_symbols_as_metadata_keys_with_true_values = true
         | 
| 32 | 
            +
            end
         | 
| 33 | 
            +
             | 
| 34 | 
            +
            TMP_FOLDER = Pathname.new(File.expand_path File.join(File.dirname(__FILE__),'generators','tmp'))
         | 
| 35 | 
            +
            TARGET_LANG = 'en'
         | 
| 36 | 
            +
            REF_LANG = 'it'
         | 
| 37 | 
            +
             | 
| 38 | 
            +
            REF_LANG_FP = Pathname.new(File.join(TMP_FOLDER,"test.#{REF_LANG}.yml"))
         | 
| 39 | 
            +
            TARGET_LANG_FP = Pathname.new(File.join(TMP_FOLDER,"test.#{TARGET_LANG}.yml"))
         | 
| 40 | 
            +
             | 
| 41 | 
            +
            TARGET_LANG_BK_FP = Pathname.new(File.join(TMP_FOLDER,"test.#{TARGET_LANG}.yml.bk"))
         | 
| 42 | 
            +
            TARGET_INCOMPLETE_BK_FP = Pathname.new(File.join(TMP_FOLDER,"test_incomplete.#{TARGET_LANG}.yml.bk"))
         | 
    
        metadata
    ADDED
    
    | @@ -0,0 +1,177 @@ | |
| 1 | 
            +
            --- !ruby/object:Gem::Specification
         | 
| 2 | 
            +
            name: makeloc
         | 
| 3 | 
            +
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            +
              version: 0.1.0
         | 
| 5 | 
            +
            platform: ruby
         | 
| 6 | 
            +
            authors:
         | 
| 7 | 
            +
            - masciugo
         | 
| 8 | 
            +
            autorequire: 
         | 
| 9 | 
            +
            bindir: bin
         | 
| 10 | 
            +
            cert_chain: []
         | 
| 11 | 
            +
            date: 2014-06-09 00:00:00.000000000 Z
         | 
| 12 | 
            +
            dependencies:
         | 
| 13 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 14 | 
            +
              name: rails
         | 
| 15 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 16 | 
            +
                requirements:
         | 
| 17 | 
            +
                - - ">="
         | 
| 18 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            +
                    version: '2.2'
         | 
| 20 | 
            +
              type: :runtime
         | 
| 21 | 
            +
              prerelease: false
         | 
| 22 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 23 | 
            +
                requirements:
         | 
| 24 | 
            +
                - - ">="
         | 
| 25 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 26 | 
            +
                    version: '2.2'
         | 
| 27 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 28 | 
            +
              name: rdoc
         | 
| 29 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 30 | 
            +
                requirements:
         | 
| 31 | 
            +
                - - "~>"
         | 
| 32 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 33 | 
            +
                    version: '3.12'
         | 
| 34 | 
            +
              type: :development
         | 
| 35 | 
            +
              prerelease: false
         | 
| 36 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 37 | 
            +
                requirements:
         | 
| 38 | 
            +
                - - "~>"
         | 
| 39 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 40 | 
            +
                    version: '3.12'
         | 
| 41 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 42 | 
            +
              name: bundler
         | 
| 43 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 44 | 
            +
                requirements:
         | 
| 45 | 
            +
                - - "~>"
         | 
| 46 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 47 | 
            +
                    version: '1.0'
         | 
| 48 | 
            +
              type: :development
         | 
| 49 | 
            +
              prerelease: false
         | 
| 50 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 51 | 
            +
                requirements:
         | 
| 52 | 
            +
                - - "~>"
         | 
| 53 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 54 | 
            +
                    version: '1.0'
         | 
| 55 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 56 | 
            +
              name: jeweler
         | 
| 57 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 58 | 
            +
                requirements:
         | 
| 59 | 
            +
                - - "~>"
         | 
| 60 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 61 | 
            +
                    version: '2.0'
         | 
| 62 | 
            +
              type: :development
         | 
| 63 | 
            +
              prerelease: false
         | 
| 64 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 65 | 
            +
                requirements:
         | 
| 66 | 
            +
                - - "~>"
         | 
| 67 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 68 | 
            +
                    version: '2.0'
         | 
| 69 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 70 | 
            +
              name: simplecov
         | 
| 71 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 72 | 
            +
                requirements:
         | 
| 73 | 
            +
                - - "~>"
         | 
| 74 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 75 | 
            +
                    version: '0.8'
         | 
| 76 | 
            +
              type: :development
         | 
| 77 | 
            +
              prerelease: false
         | 
| 78 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 79 | 
            +
                requirements:
         | 
| 80 | 
            +
                - - "~>"
         | 
| 81 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 82 | 
            +
                    version: '0.8'
         | 
| 83 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 84 | 
            +
              name: rspec
         | 
| 85 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 86 | 
            +
                requirements:
         | 
| 87 | 
            +
                - - "~>"
         | 
| 88 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 89 | 
            +
                    version: '2.8'
         | 
| 90 | 
            +
              type: :development
         | 
| 91 | 
            +
              prerelease: false
         | 
| 92 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 93 | 
            +
                requirements:
         | 
| 94 | 
            +
                - - "~>"
         | 
| 95 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 96 | 
            +
                    version: '2.8'
         | 
| 97 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 98 | 
            +
              name: genspec
         | 
| 99 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 100 | 
            +
                requirements:
         | 
| 101 | 
            +
                - - "~>"
         | 
| 102 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 103 | 
            +
                    version: '0.2'
         | 
| 104 | 
            +
              type: :development
         | 
| 105 | 
            +
              prerelease: false
         | 
| 106 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 107 | 
            +
                requirements:
         | 
| 108 | 
            +
                - - "~>"
         | 
| 109 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 110 | 
            +
                    version: '0.2'
         | 
| 111 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 112 | 
            +
              name: byebug
         | 
| 113 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 114 | 
            +
                requirements:
         | 
| 115 | 
            +
                - - "~>"
         | 
| 116 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 117 | 
            +
                    version: '3.1'
         | 
| 118 | 
            +
              type: :development
         | 
| 119 | 
            +
              prerelease: false
         | 
| 120 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 121 | 
            +
                requirements:
         | 
| 122 | 
            +
                - - "~>"
         | 
| 123 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 124 | 
            +
                    version: '3.1'
         | 
| 125 | 
            +
            description: ''
         | 
| 126 | 
            +
            email: masciugo@gmail.com
         | 
| 127 | 
            +
            executables: []
         | 
| 128 | 
            +
            extensions: []
         | 
| 129 | 
            +
            extra_rdoc_files:
         | 
| 130 | 
            +
            - LICENSE.txt
         | 
| 131 | 
            +
            - README.md
         | 
| 132 | 
            +
            files:
         | 
| 133 | 
            +
            - ".document"
         | 
| 134 | 
            +
            - Gemfile
         | 
| 135 | 
            +
            - Gemfile.lock
         | 
| 136 | 
            +
            - LICENSE.txt
         | 
| 137 | 
            +
            - README.md
         | 
| 138 | 
            +
            - Rakefile
         | 
| 139 | 
            +
            - VERSION
         | 
| 140 | 
            +
            - lib/makeloc.rb
         | 
| 141 | 
            +
            - lib/makeloc/core_extensions.rb
         | 
| 142 | 
            +
            - lib/makeloc/generators/do/USAGE
         | 
| 143 | 
            +
            - lib/makeloc/generators/do/do_generator.rb
         | 
| 144 | 
            +
            - lib/makeloc/railtie.rb
         | 
| 145 | 
            +
            - makeloc.gemspec
         | 
| 146 | 
            +
            - spec/generators/test_generator_spec.rb
         | 
| 147 | 
            +
            - spec/generators/tmp/test.en.yml
         | 
| 148 | 
            +
            - spec/generators/tmp/test.en.yml.bk
         | 
| 149 | 
            +
            - spec/generators/tmp/test.it.yml
         | 
| 150 | 
            +
            - spec/generators/tmp/test_incomplete.en.yml.bk
         | 
| 151 | 
            +
            - spec/spec_helper.rb
         | 
| 152 | 
            +
            homepage: http://github.com/masciugo/makeloc
         | 
| 153 | 
            +
            licenses:
         | 
| 154 | 
            +
            - MIT
         | 
| 155 | 
            +
            metadata: {}
         | 
| 156 | 
            +
            post_install_message: 
         | 
| 157 | 
            +
            rdoc_options: []
         | 
| 158 | 
            +
            require_paths:
         | 
| 159 | 
            +
            - lib
         | 
| 160 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 161 | 
            +
              requirements:
         | 
| 162 | 
            +
              - - ">="
         | 
| 163 | 
            +
                - !ruby/object:Gem::Version
         | 
| 164 | 
            +
                  version: '0'
         | 
| 165 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 166 | 
            +
              requirements:
         | 
| 167 | 
            +
              - - ">="
         | 
| 168 | 
            +
                - !ruby/object:Gem::Version
         | 
| 169 | 
            +
                  version: '0'
         | 
| 170 | 
            +
            requirements: []
         | 
| 171 | 
            +
            rubyforge_project: 
         | 
| 172 | 
            +
            rubygems_version: 2.2.2
         | 
| 173 | 
            +
            signing_key: 
         | 
| 174 | 
            +
            specification_version: 4
         | 
| 175 | 
            +
            summary: A generator to updates, or creates if not exists, the locale file for the
         | 
| 176 | 
            +
              provided target language
         | 
| 177 | 
            +
            test_files: []
         |