Class: Lang

Inherits:
Object
  • Object
show all
Includes:
TextActions
Defined in:
lib/asker/lang/lang.rb

Overview

Lang#lang

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from TextActions

#build_text_from_filtered, #count_words, #do_mistake_to, #hide_text, #text_filter_connectors, #text_for, #text_with_connectors, #text_without_connectors

Constructor Details

#initialize(code = 'en') ⇒ Lang

Returns a new instance of Lang.



13
14
15
16
# File 'lib/asker/lang/lang.rb', line 13

def initialize(code = 'en')
  @code = code.to_s
  load_files
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



11
12
13
# File 'lib/asker/lang/lang.rb', line 11

def code
  @code
end

#mistakesObject (readonly)

Returns the value of attribute mistakes.



11
12
13
# File 'lib/asker/lang/lang.rb', line 11

def mistakes
  @mistakes
end

Instance Method Details

#langObject



18
19
20
# File 'lib/asker/lang/lang.rb', line 18

def lang
  @code
end