Class: Lokale::LFile

Inherits:
Object
  • Object
show all
Defined in:
lib/lokale/agent.rb,
lib/lokale/model.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(file_path) ⇒ LFile

Returns a new instance of LFile.



24
25
26
27
28
29
30
31
32
33
# File 'lib/lokale/model.rb', line 24

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

#langObject (readonly)

Returns the value of attribute lang.



23
24
25
# File 'lib/lokale/model.rb', line 23

def lang
  @lang
end

#nameObject (readonly)

Returns the value of attribute name.



23
24
25
# File 'lib/lokale/model.rb', line 23

def name
  @name
end

#pathObject (readonly)

Returns the value of attribute path.



23
24
25
# File 'lib/lokale/model.rb', line 23

def path
  @path
end

#typeObject (readonly)

Returns the value of attribute type.



23
24
25
# File 'lib/lokale/model.rb', line 23

def type
  @type
end

Class Method Details

.localization_file?(path) ⇒ Boolean

Returns:

  • (Boolean)


35
36
37
38
39
40
# File 'lib/lokale/model.rb', line 35

def self.localization_file?(path)
  File.directory?(path) == false &&
     (path =~ /\/Pods\//) == nil &&
     (path =~ /\.bundle\//) == nil &&
     (path =~ /\/(.{1,8})\.lproj\//)
end

.try_to_read(file_path) ⇒ Object



42
43
44
45
# File 'lib/lokale/model.rb', line 42

def self.try_to_read(file_path)
  return nil unless localization_file? file_path
  LFile.new(file_path)
end

Instance Method Details

#contentObject



59
60
61
# File 'lib/lokale/model.rb', line 59

def content
	File.read(@path)
end

#full_nameObject



51
52
53
# File 'lib/lokale/model.rb', line 51

def full_name
  "#{@name}.#{@type}"
end

#inspectObject



47
48
49
# File 'lib/lokale/model.rb', line 47

def inspect
  "<LF:#{@lang}/#{full_name}>"
end

#keysObject



50
51
52
53
# File 'lib/lokale/agent.rb', line 50

def keys 
  return nil if parsed.nil?
  parsed.map(&:key)
end

#parsedObject



67
68
69
70
71
72
73
74
# File 'lib/lokale/model.rb', line 67

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

#repeatsObject



38
39
40
41
42
43
44
45
46
47
48
# File 'lib/lokale/agent.rb', line 38

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

Returns:

  • (Boolean)


55
56
57
# File 'lib/lokale/model.rb', line 55

def strings_file?
  @type == "strings" || @type == "stringsdict"
end

#write(content) ⇒ Object



63
64
65
# File 'lib/lokale/model.rb', line 63

def write(content)
	File.write(@path, content)
end