Class: Twine::Formatters::JQuery

Inherits:
Abstract
  • Object
show all
Defined in:
lib/twine/formatters/jquery.rb

Instance Attribute Summary

Attributes inherited from Abstract

#options, #twine_file

Instance Method Summary collapse

Methods inherited from Abstract

#can_handle_directory?, #escape_quotes, #format_comment, #format_definition, #format_header, #format_key_value, #initialize, #output_path_for_language, #set_comment_for_key, #set_translation_for_key, #should_include_definition

Constructor Details

This class inherits a constructor from Twine::Formatters::Abstract

Instance Method Details

#default_file_nameObject



12
13
14
# File 'lib/twine/formatters/jquery.rb', line 12

def default_file_name
  'localize.json'
end

#determine_language_given_path(path) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
# File 'lib/twine/formatters/jquery.rb', line 16

def determine_language_given_path(path)
  path_arr = path.split(File::SEPARATOR)
  path_arr.each do |segment|
    match = /^((.+)-)?([^-]+)\.json$/.match(segment)
    if match
      return match[3]
    end
  end

  return
end

#extensionObject



8
9
10
# File 'lib/twine/formatters/jquery.rb', line 8

def extension
  '.json'
end

#format_file(lang) ⇒ Object



41
42
43
44
45
# File 'lib/twine/formatters/jquery.rb', line 41

def format_file(lang)
  result = super
  return result unless result
  "{\n#{super}\n}\n"
end

#format_key(key) ⇒ Object



68
69
70
# File 'lib/twine/formatters/jquery.rb', line 68

def format_key(key)
  escape_quotes(key)
end

#format_nameObject



4
5
6
# File 'lib/twine/formatters/jquery.rb', line 4

def format_name
  'jquery'
end

#format_section(section, lang) ⇒ Object



56
57
58
59
60
61
62
# File 'lib/twine/formatters/jquery.rb', line 56

def format_section(section, lang)
  definitions = section.definitions.dup

  definitions.map! { |definition| format_definition(definition, lang) }
  definitions.compact! # remove nil definitions
  definitions.join(",\n")
end

#format_section_header(section) ⇒ Object



53
54
# File 'lib/twine/formatters/jquery.rb', line 53

def format_section_header(section)
end

#format_sections(twine_file, lang) ⇒ Object



47
48
49
50
51
# File 'lib/twine/formatters/jquery.rb', line 47

def format_sections(twine_file, lang)
  sections = twine_file.sections.map { |section| format_section(section, lang) }
  sections.delete_if &:empty?
  sections.join(",\n\n")
end

#format_value(value) ⇒ Object



72
73
74
# File 'lib/twine/formatters/jquery.rb', line 72

def format_value(value)
  escape_quotes(value)
end

#key_value_patternObject



64
65
66
# File 'lib/twine/formatters/jquery.rb', line 64

def key_value_pattern
  "\"%{key}\":\"%{value}\""
end

#read(io, lang) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/twine/formatters/jquery.rb', line 28

def read(io, lang)
  begin
    require "json"
  rescue LoadError
    raise Twine::Error.new "You must run 'gem install json' in order to read or write jquery-localize files."
  end

  json = JSON.load(io)
  json.each do |key, value|
    set_translation_for_key(key, lang, value)
  end
end