phrase 0.4.23 → 0.4.24

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/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- phrase (0.4.23)
4
+ phrase (0.4.24)
5
5
  colorize
6
6
  i18n
7
7
  json
data/README.md CHANGED
@@ -49,6 +49,7 @@ You can manage your locale files with PhraseApp if they match one of the followi
49
49
  * CSV
50
50
  * PHP Array
51
51
  * Laravel PHP Array
52
+ * Mozilla Properties
52
53
 
53
54
  ### Supported platforms ###
54
55
 
@@ -29,6 +29,7 @@ module Phrase
29
29
  autoload :PhpArray, 'phrase/formats/php_array'
30
30
  autoload :Laravel, 'phrase/formats/laravel'
31
31
  autoload :AngularTranslate, 'phrase/formats/angular_translate'
32
+ autoload :MozillaProperties, 'phrase/formats/mozilla_properties'
32
33
 
33
34
  class Base
34
35
  def self.supports_extension?(extension)
@@ -97,6 +98,7 @@ module Phrase
97
98
  php_array: Phrase::Formats::PhpArray,
98
99
  laravel: Phrase::Formats::Laravel,
99
100
  angular_translate: Phrase::Formats::AngularTranslate,
101
+ mozilla_properties: Phrase::Formats::MozillaProperties,
100
102
  }
101
103
 
102
104
  def self.config
@@ -0,0 +1,8 @@
1
+ # -*- encoding : utf-8 -*-
2
+
3
+ module Phrase
4
+ module Formats
5
+ class MozillaProperties < Phrase::Formats::Properties
6
+ end
7
+ end
8
+ end
@@ -1,3 +1,3 @@
1
1
  module Phrase
2
- VERSION = "0.4.23"
2
+ VERSION = "0.4.24"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phrase
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.23
4
+ version: 0.4.24
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-03-28 00:00:00.000000000 Z
12
+ date: 2014-04-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: colorize
@@ -223,6 +223,7 @@ files:
223
223
  - lib/phrase/formats/ini.rb
224
224
  - lib/phrase/formats/json.rb
225
225
  - lib/phrase/formats/laravel.rb
226
+ - lib/phrase/formats/mozilla_properties.rb
226
227
  - lib/phrase/formats/nested_json.rb
227
228
  - lib/phrase/formats/node_json.rb
228
229
  - lib/phrase/formats/php_array.rb