In my Rails application, I installed the following gems
gem 'countries'
gem 'country_select'
gem 'simple_form'
When a user signs up, they select a country (ex. United Kingdom)
on the User's Show page `
<%= @user.country %>` => Displays GB
My question is, how do I display United Kingdom as full name?
From the countries gem's github page:
Then, from
country_select
's github page