class Applocale::Config::LangPath
Attributes
filepath[RW]
lang[RW]
Public Class Methods
new(lang, filepath)
click to toggle source
# File lib/applocale/Core/setting.rb, line 62 def initialize(lang, filepath) self.lang = lang self.filepath = filepath end
Public Instance Methods
to_s()
click to toggle source
# File lib/applocale/Core/setting.rb, line 67 def to_s return "#{self.lang}: #{self.filepath}" end