Migrated countries to use country_select gem and reworked how flags get displayed
2
Gemfile
|
@ -19,7 +19,7 @@ gem 'bluecloth', '~> 2.2.0'
|
||||||
gem 'newrelic_rpm', '~> 3.13.0.299'
|
gem 'newrelic_rpm', '~> 3.13.0.299'
|
||||||
gem 'will_paginate', '~> 3.0.5'
|
gem 'will_paginate', '~> 3.0.5'
|
||||||
gem 'dynamic_form', '~> 1.1.4'
|
gem 'dynamic_form', '~> 1.1.4'
|
||||||
gem 'country_code_select', '~> 1.0.1'
|
gem 'country_select', require: 'country_select_without_sort_alphabetical'
|
||||||
gem 'active_link_to', '~> 1.0.2'
|
gem 'active_link_to', '~> 1.0.2'
|
||||||
gem 'rmagick', '~> 2.13.4', require: false
|
gem 'rmagick', '~> 2.13.4', require: false
|
||||||
gem 'steam-condenser', github: 'koraktor/steam-condenser-ruby'
|
gem 'steam-condenser', github: 'koraktor/steam-condenser-ruby'
|
||||||
|
|
21
Gemfile.lock
|
@ -96,8 +96,14 @@ GEM
|
||||||
execjs
|
execjs
|
||||||
coffee-script-source (1.7.0)
|
coffee-script-source (1.7.0)
|
||||||
columnize (0.8.9)
|
columnize (0.8.9)
|
||||||
country_code_select (1.0.1)
|
countries (2.1.2)
|
||||||
activesupport (>= 3.0)
|
i18n_data (~> 0.8.0)
|
||||||
|
money (~> 6.9)
|
||||||
|
sixarm_ruby_unaccent (~> 1.1)
|
||||||
|
unicode_utils (~> 1.4)
|
||||||
|
country_select (3.1.0)
|
||||||
|
countries (~> 2.0)
|
||||||
|
sort_alphabetical (~> 1.0)
|
||||||
dalli (2.7.1)
|
dalli (2.7.1)
|
||||||
database_cleaner (1.2.0)
|
database_cleaner (1.2.0)
|
||||||
debug_inspector (0.0.2)
|
debug_inspector (0.0.2)
|
||||||
|
@ -146,6 +152,7 @@ GEM
|
||||||
httpclient (2.8.3)
|
httpclient (2.8.3)
|
||||||
hurley (0.2)
|
hurley (0.2)
|
||||||
i18n (0.7.0)
|
i18n (0.7.0)
|
||||||
|
i18n_data (0.8.0)
|
||||||
journey (1.0.4)
|
journey (1.0.4)
|
||||||
jquery-rails (2.0.3)
|
jquery-rails (2.0.3)
|
||||||
railties (>= 3.1.0, < 5.0)
|
railties (>= 3.1.0, < 5.0)
|
||||||
|
@ -164,6 +171,8 @@ GEM
|
||||||
method_source (0.8.2)
|
method_source (0.8.2)
|
||||||
mime-types (1.25.1)
|
mime-types (1.25.1)
|
||||||
mini_portile (0.6.2)
|
mini_portile (0.6.2)
|
||||||
|
money (6.9.0)
|
||||||
|
i18n (>= 0.6.4, < 0.9)
|
||||||
multi_json (1.11.2)
|
multi_json (1.11.2)
|
||||||
multi_xml (0.5.5)
|
multi_xml (0.5.5)
|
||||||
multipart-post (2.0.0)
|
multipart-post (2.0.0)
|
||||||
|
@ -271,7 +280,10 @@ GEM
|
||||||
multi_json (~> 1.0)
|
multi_json (~> 1.0)
|
||||||
simplecov-html (~> 0.7.1)
|
simplecov-html (~> 0.7.1)
|
||||||
simplecov-html (0.7.1)
|
simplecov-html (0.7.1)
|
||||||
|
sixarm_ruby_unaccent (1.2.0)
|
||||||
slop (3.5.0)
|
slop (3.5.0)
|
||||||
|
sort_alphabetical (1.1.0)
|
||||||
|
unicode_utils (>= 1.2.2)
|
||||||
sprockets (2.2.3)
|
sprockets (2.2.3)
|
||||||
hike (~> 1.2)
|
hike (~> 1.2)
|
||||||
multi_json (~> 1.0)
|
multi_json (~> 1.0)
|
||||||
|
@ -302,6 +314,7 @@ GEM
|
||||||
uglifier (2.5.0)
|
uglifier (2.5.0)
|
||||||
execjs (>= 0.3.0)
|
execjs (>= 0.3.0)
|
||||||
json (>= 1.8.0)
|
json (>= 1.8.0)
|
||||||
|
unicode_utils (1.4.0)
|
||||||
websocket (1.0.7)
|
websocket (1.0.7)
|
||||||
websocket-driver (0.5.4)
|
websocket-driver (0.5.4)
|
||||||
websocket-extensions (>= 0.1.0)
|
websocket-extensions (>= 0.1.0)
|
||||||
|
@ -329,7 +342,7 @@ DEPENDENCIES
|
||||||
carrierwave (~> 0.10.0)
|
carrierwave (~> 0.10.0)
|
||||||
codeclimate-test-reporter (~> 0.3.0)
|
codeclimate-test-reporter (~> 0.3.0)
|
||||||
coffee-rails (~> 3.2.2)
|
coffee-rails (~> 3.2.2)
|
||||||
country_code_select (~> 1.0.1)
|
country_select
|
||||||
dalli (~> 2.7.0)
|
dalli (~> 2.7.0)
|
||||||
database_cleaner (~> 1.2.0)
|
database_cleaner (~> 1.2.0)
|
||||||
dotenv-rails (~> 0.10.0)
|
dotenv-rails (~> 0.10.0)
|
||||||
|
@ -372,4 +385,4 @@ RUBY VERSION
|
||||||
ruby 2.2.2p95
|
ruby 2.2.2p95
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
1.14.6
|
1.15.1
|
||||||
|
|
Before Width: | Height: | Size: 809 B |
Before Width: | Height: | Size: 806 B |
Before Width: | Height: | Size: 742 B |
Before Width: | Height: | Size: 691 B |
Before Width: | Height: | Size: 936 B |
Before Width: | Height: | Size: 825 B |
Before Width: | Height: | Size: 509 B |
Before Width: | Height: | Size: 609 B |
Before Width: | Height: | Size: 788 B |
Before Width: | Height: | Size: 892 B |
Before Width: | Height: | Size: 622 B |
Before Width: | Height: | Size: 1,004 B |
Before Width: | Height: | Size: 509 B |
Before Width: | Height: | Size: 879 B |
Before Width: | Height: | Size: 643 B |
Before Width: | Height: | Size: 620 B |
Before Width: | Height: | Size: 693 B |
Before Width: | Height: | Size: 977 B |
Before Width: | Height: | Size: 635 B |
Before Width: | Height: | Size: 673 B |
Before Width: | Height: | Size: 850 B |
Before Width: | Height: | Size: 560 B |
Before Width: | Height: | Size: 520 B |
Before Width: | Height: | Size: 697 B |
Before Width: | Height: | Size: 846 B |
Before Width: | Height: | Size: 812 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 902 B |
Before Width: | Height: | Size: 1 KiB |
Before Width: | Height: | Size: 654 B |
Before Width: | Height: | Size: 1,004 B |
Before Width: | Height: | Size: 809 B |
Before Width: | Height: | Size: 958 B |
Before Width: | Height: | Size: 509 B |
Before Width: | Height: | Size: 843 B |
Before Width: | Height: | Size: 906 B |
Before Width: | Height: | Size: 632 B |
Before Width: | Height: | Size: 824 B |
Before Width: | Height: | Size: 973 B |
Before Width: | Height: | Size: 614 B |
Before Width: | Height: | Size: 915 B |
Before Width: | Height: | Size: 507 B |
Before Width: | Height: | Size: 851 B |
Before Width: | Height: | Size: 965 B |
Before Width: | Height: | Size: 698 B |
Before Width: | Height: | Size: 906 B |
Before Width: | Height: | Size: 845 B |
Before Width: | Height: | Size: 509 B |
Before Width: | Height: | Size: 509 B |
Before Width: | Height: | Size: 845 B |
Before Width: | Height: | Size: 648 B |
Before Width: | Height: | Size: 633 B |
Before Width: | Height: | Size: 938 B |
Before Width: | Height: | Size: 859 B |
Before Width: | Height: | Size: 818 B |
Before Width: | Height: | Size: 509 B |
Before Width: | Height: | Size: 834 B |
Before Width: | Height: | Size: 575 B |
Before Width: | Height: | Size: 946 B |
Before Width: | Height: | Size: 840 B |
Before Width: | Height: | Size: 911 B |
Before Width: | Height: | Size: 730 B |
Before Width: | Height: | Size: 509 B |
Before Width: | Height: | Size: 616 B |
Before Width: | Height: | Size: 843 B |
Before Width: | Height: | Size: 935 B |
Before Width: | Height: | Size: 705 B |
Before Width: | Height: | Size: 889 B |
Before Width: | Height: | Size: 832 B |
Before Width: | Height: | Size: 589 B |
Before Width: | Height: | Size: 976 B |
Before Width: | Height: | Size: 953 B |
Before Width: | Height: | Size: 632 B |
Before Width: | Height: | Size: 637 B |
Before Width: | Height: | Size: 851 B |
Before Width: | Height: | Size: 851 B |
Before Width: | Height: | Size: 509 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 732 B |
Before Width: | Height: | Size: 559 B |
Before Width: | Height: | Size: 618 B |
Before Width: | Height: | Size: 560 B |
Before Width: | Height: | Size: 754 B |
Before Width: | Height: | Size: 640 B |
Before Width: | Height: | Size: 509 B |
Before Width: | Height: | Size: 851 B |
Before Width: | Height: | Size: 827 B |
Before Width: | Height: | Size: 671 B |
Before Width: | Height: | Size: 1 KiB |
Before Width: | Height: | Size: 669 B |
Before Width: | Height: | Size: 792 B |
Before Width: | Height: | Size: 822 B |
Before Width: | Height: | Size: 1,001 B |
Before Width: | Height: | Size: 963 B |
Before Width: | Height: | Size: 559 B |
Before Width: | Height: | Size: 767 B |
Before Width: | Height: | Size: 622 B |
Before Width: | Height: | Size: 509 B |