Class: Rabbit::ThemeConfiguration

Inherits:
Object
  • Object
show all
Includes:
GetText, PathManipulatable
Defined in:
lib/rabbit/theme-configuration.rb

Constant Summary collapse

GEM_NAME_PREFIX =
"rabbit-theme"

Constants included from GetText

GetText::DOMAIN

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from GetText

included

Constructor Details

#initialize(logger = nil) ⇒ ThemeConfiguration

Returns a new instance of ThemeConfiguration.



34
35
36
37
38
39
40
41
# File 'lib/rabbit/theme-configuration.rb', line 34

def initialize(logger=nil)
  @logger = logger || Logger.default
  @id = nil
  @tags = []
  @version = nil
  @licenses = []
  @author = nil
end

Instance Attribute Details

#authorObject

Returns the value of attribute author.



33
34
35
# File 'lib/rabbit/theme-configuration.rb', line 33

def author
  @author
end

#idObject

Returns the value of attribute id.



31
32
33
# File 'lib/rabbit/theme-configuration.rb', line 31

def id
  @id
end

#licensesObject

Returns the value of attribute licenses.



31
32
33
# File 'lib/rabbit/theme-configuration.rb', line 31

def licenses
  @licenses
end

#loggerObject

Returns the value of attribute logger.



30
31
32
# File 'lib/rabbit/theme-configuration.rb', line 30

def logger
  @logger
end

#tagsObject

Returns the value of attribute tags.



31
32
33
# File 'lib/rabbit/theme-configuration.rb', line 31

def tags
  @tags
end

#versionObject



87
88
89
# File 'lib/rabbit/theme-configuration.rb', line 87

def version
  @version || default_version
end

Instance Method Details

#gem_nameObject



91
92
93
# File 'lib/rabbit/theme-configuration.rb', line 91

def gem_name
  "#{GEM_NAME_PREFIX}-#{@id}"
end

#loadObject



43
44
45
46
47
48
49
50
# File 'lib/rabbit/theme-configuration.rb', line 43

def load
  return unless File.exist?(path)
  conf = YAML.load(File.read(path))
  merge!(conf)
rescue
  format = _("Failed to read slide configuration: %s: %s")
  @logger.error(format % [path, $!.message])
end

#merge!(conf) ⇒ Object



62
63
64
65
66
67
68
69
70
# File 'lib/rabbit/theme-configuration.rb', line 62

def merge!(conf)
  @id                = conf["id"]
  @tags              = conf["tags"]
  @version           = conf["version"]
  @licenses          = conf["licenses"]

  @author = AuthorConfiguration.new(@logger)
  @author.merge!(conf["author"] || {})
end

#pathObject



95
96
97
# File 'lib/rabbit/theme-configuration.rb', line 95

def path
  "config.yaml"
end

#save(base_dir) ⇒ Object



52
53
54
55
56
57
58
59
60
# File 'lib/rabbit/theme-configuration.rb', line 52

def save(base_dir)
  config_path = File.join(base_dir, path)
  create_file(config_path) do |conf_file|
    conf_file.print(to_yaml)
  end
rescue
  format = _("Failed to write slide configuration: %s: %s")
  @logger.error(format % [config_path, $!.message])
end

#to_hashObject



72
73
74
75
76
77
78
79
80
81
# File 'lib/rabbit/theme-configuration.rb', line 72

def to_hash
  config = {
    "id"                => @id,
    "tags"              => @tags,
    "version"           => version,
    "licenses"          => @licenses,
  }
  config["author"] = @author.to_hash if @author
  config
end

#to_yamlObject



83
84
85
# File 'lib/rabbit/theme-configuration.rb', line 83

def to_yaml
  to_hash.to_yaml
end