Method: AutomobileFuel#suffix

Defined in:
lib/earth/automobile/automobile_fuel.rb

#suffixObject

for AutomobileMakeModel.custom_find



88
89
90
91
92
93
94
95
96
97
# File 'lib/earth/automobile/automobile_fuel.rb', line 88

def suffix
  case code
  when 'D', 'BP-B5', 'BP-B20', 'BP-B100'
    'DIESEL'
  when 'E'
    'FFV'
  when 'C'
    'CNG'
  end
end