Class: Onoma::Migration::Actions::NomenclatureChange

Inherits:
Base
  • Object
show all
Defined in:
lib/onoma/migration/actions/nomenclature_change.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Base

action_name, #action_name

Constructor Details

#initialize(element) ⇒ NomenclatureChange

Returns a new instance of NomenclatureChange.



7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/onoma/migration/actions/nomenclature_change.rb', line 7

def initialize(element)
  raise 'No given name' unless element.key?('nomenclature')

  @nomenclature = element['nomenclature'].to_s
  @changes = {}
  @changes[:name] = element['name'].to_s if element.key?('name')
  if element.key?('notions')
    @changes[:notions] = element.attr('notions').to_s.split(/\s*\,\s*/).map(&:to_sym)
  end
  if element.key?('translateable')
    @changes[:translateable] = element.attr('translateable').to_s != 'false'
  end
end

Instance Attribute Details

#changesObject (readonly)

Returns the value of attribute changes.



5
6
7
# File 'lib/onoma/migration/actions/nomenclature_change.rb', line 5

def changes
  @changes
end

#nomenclatureObject (readonly)

Returns the value of attribute nomenclature.



5
6
7
# File 'lib/onoma/migration/actions/nomenclature_change.rb', line 5

def nomenclature
  @nomenclature
end

Instance Method Details

#human_nameObject



21
22
23
# File 'lib/onoma/migration/actions/nomenclature_change.rb', line 21

def human_name
  "Update nomenclature #{@name} with " + changes.inspect
end