Sha256: 10c9d3fae058af943176f11218aca6d21bb3ea7078763aab4019f8fdfe851684

Contents?: true

Size: 725 Bytes

Versions: 4

Compression:

Stored size: 725 Bytes

Contents

# -*- encoding: utf-8 -*-

#names = %w(Unknown Walking Bicycle Train Bus Car Metro)

#names.each do |name|
#	Gaku::CommuteMethodType.where(name: name).first_or_create!
#end

# -*- encoding: utf-8 -*-
# Array format ['en commute_method_type', 'ja commute_method_type', 'active?']
commute_method_types = [
  ['Unknown',  '不明'],
  ['Walking',  '歩行'],
  ['Bicycle',  '自転車'],
  ['Train',    '列車'],
  ['Bus',      'バス'],
  ['Car',      '車'],
  ['Metro',    '地下鉄']
]

commute_method_types.each do |type|
  I18n.locale = :en
  commute_method_type = Gaku::CommuteMethodType.find_or_create_by_name(type[0])

  I18n.locale = :ja
  commute_method_type.update_attributes(name: type[1])
end

I18n.locale = nil

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
gaku-0.0.2 core/db/default/gaku/commute_method_types.rb
gaku_core-0.0.2 db/default/gaku/commute_method_types.rb
gaku-0.0.1 core/db/default/gaku/commute_method_types.rb
gaku_core-0.0.1 db/default/gaku/commute_method_types.rb