G-E-N-E
Results
2
comments of
G-E-N-E
I fixed my local server to work with Magby at least. app/helpers/sessions_helper.rb Before `poke_id = i[:pokemon_id].capitalize.to_s` After `if i[:pokemon_id].respond_to?(:capitalize)` ` poke_id = i[:pokemon_id].capitalize.to_s` `else` ` poke_id = @@pokemon_hash[i[:pokemon_id].to_s].capitalize.to_s` `end` ..added...
I've found that using IMAGE_INSTALL as the gate makes usage of the layer as-is impossible in layer environments in which you build multiple images where all images do not wish...