Class: Lokale::LFile
- Inherits:
-
Object
- Object
- Lokale::LFile
- Defined in:
- lib/lokale/agent.rb,
lib/lokale/model.rb
Instance Attribute Summary collapse
-
#lang ⇒ Object
readonly
Returns the value of attribute lang.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Class Method Summary collapse
Instance Method Summary collapse
- #content ⇒ Object
- #full_name ⇒ Object
-
#initialize(file_path) ⇒ LFile
constructor
A new instance of LFile.
- #inspect ⇒ Object
- #keys ⇒ Object
- #parsed ⇒ Object
- #repeats ⇒ Object
- #strings_file? ⇒ Boolean
- #write(content) ⇒ Object
Constructor Details
#initialize(file_path) ⇒ LFile
Returns a new instance of LFile.
38 39 40 41 42 43 44 45 46 47 |
# File 'lib/lokale/model.rb', line 38 def initialize(file_path) @path = file_path File.basename(file_path) =~ /^(.+)\.([^\.]*?)$/ @name = $1 @type = $2 file_path =~ /\/(.{1,8})\.lproj\// @lang = $1 end |
Instance Attribute Details
#lang ⇒ Object (readonly)
Returns the value of attribute lang.
37 38 39 |
# File 'lib/lokale/model.rb', line 37 def lang @lang end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
37 38 39 |
# File 'lib/lokale/model.rb', line 37 def name @name end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
37 38 39 |
# File 'lib/lokale/model.rb', line 37 def path @path end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
37 38 39 |
# File 'lib/lokale/model.rb', line 37 def type @type end |
Class Method Details
Instance Method Details
#content ⇒ Object
66 67 68 |
# File 'lib/lokale/model.rb', line 66 def content File.read(@path) end |
#full_name ⇒ Object
58 59 60 |
# File 'lib/lokale/model.rb', line 58 def full_name "#{@name}.#{@type}" end |
#inspect ⇒ Object
54 55 56 |
# File 'lib/lokale/model.rb', line 54 def inspect "<LF:#{@lang}/#{full_name}>" end |
#keys ⇒ Object
24 25 26 27 |
# File 'lib/lokale/agent.rb', line 24 def keys return nil if parsed.nil? parsed.map(&:key) end |
#parsed ⇒ Object
74 75 76 77 78 79 80 81 |
# File 'lib/lokale/model.rb', line 74 def parsed return @parsed unless @parsed.nil? @parsed = case type when "strings" then LString.strings_from_file(@path, @lang) when "stringsdict" then [] else nil end end |
#repeats ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/lokale/agent.rb', line 12 def repeats return [] if @parsed.nil? uniq_keys = keys.to_set keys.delete_if do |k| if uniq_keys.include? k uniq_keys.delete k true end end end |
#strings_file? ⇒ Boolean
62 63 64 |
# File 'lib/lokale/model.rb', line 62 def strings_file? @type == "strings" || @type == "stringsdict" end |
#write(content) ⇒ Object
70 71 72 |
# File 'lib/lokale/model.rb', line 70 def write(content) File.write(@path, content) end |