Merge branch 'refs/heads/feature-redesign-rantology' into develop
Conflicts: app/assets/stylesheets/sass/index.sass spec/spec_helper.rb
10
.env.example
|
@ -4,11 +4,11 @@ APP_SECRET=
|
||||||
|
|
||||||
DEPLOY_PATH=
|
DEPLOY_PATH=
|
||||||
|
|
||||||
UNICORN_USER=deploy
|
PUMA_WORKERS=1
|
||||||
UNICORN_GROUP=deploy
|
PUMA_MIN_THREADS=1
|
||||||
UNICORN_WORKERS=4
|
PUMA_MAX_THREADS=16
|
||||||
UNICORN_PORT=4000
|
PUMA_PORT=4000
|
||||||
UNICORN_SOCKET=/tmp/unicorn.ensl.sock
|
PUMA_TIMEOUT=30
|
||||||
|
|
||||||
MYSQL_DATABASE=ensl
|
MYSQL_DATABASE=ensl
|
||||||
MYSQL_USERNAME=
|
MYSQL_USERNAME=
|
||||||
|
|
3
.gitignore
vendored
|
@ -14,10 +14,11 @@
|
||||||
# OS X
|
# OS X
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
# Assets
|
# Uploaded Assets
|
||||||
/public/system/*
|
/public/system/*
|
||||||
/public/files/*
|
/public/files/*
|
||||||
/public/local
|
/public/local
|
||||||
|
/public/uploads
|
||||||
|
|
||||||
# RubyMine
|
# RubyMine
|
||||||
/.idea
|
/.idea
|
||||||
|
|
1
Capfile
|
@ -3,6 +3,5 @@ require 'capistrano/deploy'
|
||||||
require 'capistrano/rbenv'
|
require 'capistrano/rbenv'
|
||||||
require 'capistrano/bundler'
|
require 'capistrano/bundler'
|
||||||
require 'capistrano/rails'
|
require 'capistrano/rails'
|
||||||
require 'capistrano3/unicorn'
|
|
||||||
|
|
||||||
Dir.glob('lib/capistrano/tasks/*.cap').each { |r| import r }
|
Dir.glob('lib/capistrano/tasks/*.cap').each { |r| import r }
|
||||||
|
|
23
Gemfile
|
@ -6,6 +6,7 @@ gem 'dotenv-rails', '~> 0.10.0'
|
||||||
gem 'rails', '~> 3.2.17'
|
gem 'rails', '~> 3.2.17'
|
||||||
gem 'mysql2', '~> 0.3.15'
|
gem 'mysql2', '~> 0.3.15'
|
||||||
gem 'dalli', '~> 2.7.0'
|
gem 'dalli', '~> 2.7.0'
|
||||||
|
gem 'puma', '~> 2.8.2'
|
||||||
|
|
||||||
gem 'exceptional', '~> 2.0.33'
|
gem 'exceptional', '~> 2.0.33'
|
||||||
gem 'oj', '~> 2.5.5'
|
gem 'oj', '~> 2.5.5'
|
||||||
|
@ -21,13 +22,19 @@ gem 'newrelic_rpm', '~> 3.7.2.195'
|
||||||
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_code_select', '~> 1.0.1'
|
||||||
|
gem 'active_link_to', '~> 1.0.2'
|
||||||
gem 'rmagick', '~> 2.13.2', require: false
|
gem 'rmagick', '~> 2.13.2', require: false
|
||||||
|
|
||||||
gem 'sprockets', '~> 2.2.1'
|
gem 'sprockets', '~> 2.2.1'
|
||||||
gem 'tinymce-rails', '~> 3.5.9'
|
|
||||||
gem 'jquery-rails', '~> 2.0.2'
|
|
||||||
gem 'sass-rails', '~> 3.2.5'
|
|
||||||
gem 'coffee-rails', '~> 3.2.2'
|
gem 'coffee-rails', '~> 3.2.2'
|
||||||
|
gem 'jquery-rails', '~> 2.0.2'
|
||||||
|
gem 'tinymce-rails', '~> 3.5.9'
|
||||||
|
gem 'sass', '~> 3.3.4'
|
||||||
|
gem 'sass-rails', '~> 3.2.6'
|
||||||
|
|
||||||
|
gem 'font-awesome-sass', '~> 4.0.3.1'
|
||||||
|
gem 'bourbon', '~> 3.1.8'
|
||||||
|
gem 'neat', '~> 1.6.0'
|
||||||
|
|
||||||
group :assets do
|
group :assets do
|
||||||
gem 'uglifier', '~> 2.5.0'
|
gem 'uglifier', '~> 2.5.0'
|
||||||
|
@ -38,9 +45,10 @@ group :development do
|
||||||
gem 'capistrano-rbenv', '~> 2.0.2'
|
gem 'capistrano-rbenv', '~> 2.0.2'
|
||||||
gem 'capistrano-bundler', '~> 1.1.2'
|
gem 'capistrano-bundler', '~> 1.1.2'
|
||||||
gem 'capistrano-rails', '~> 1.1'
|
gem 'capistrano-rails', '~> 1.1'
|
||||||
gem 'capistrano3-unicorn', '~> 0.1.1'
|
gem 'better_errors', '~> 1.1.0'
|
||||||
|
gem 'binding_of_caller', '~> 0.7.2'
|
||||||
gem 'annotate', '~> 2.6.2'
|
gem 'annotate', '~> 2.6.2'
|
||||||
gem 'quiet_assets'
|
gem 'quiet_assets', '~> 1.0.2'
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
|
@ -58,8 +66,3 @@ end
|
||||||
group :development, :test do
|
group :development, :test do
|
||||||
gem 'pry-debugger', '~> 0.2.2'
|
gem 'pry-debugger', '~> 0.2.2'
|
||||||
end
|
end
|
||||||
|
|
||||||
group :staging, :production do
|
|
||||||
gem 'kgio', '~> 2.9.2'
|
|
||||||
gem 'unicorn', '~> 4.8.2'
|
|
||||||
end
|
|
||||||
|
|
49
Gemfile.lock
|
@ -14,6 +14,8 @@ GEM
|
||||||
rack-cache (~> 1.2)
|
rack-cache (~> 1.2)
|
||||||
rack-test (~> 0.6.1)
|
rack-test (~> 0.6.1)
|
||||||
sprockets (~> 2.2.1)
|
sprockets (~> 2.2.1)
|
||||||
|
active_link_to (1.0.2)
|
||||||
|
actionpack
|
||||||
activemodel (3.2.17)
|
activemodel (3.2.17)
|
||||||
activesupport (= 3.2.17)
|
activesupport (= 3.2.17)
|
||||||
builder (~> 3.0.0)
|
builder (~> 3.0.0)
|
||||||
|
@ -33,7 +35,15 @@ GEM
|
||||||
rake (>= 0.8.7)
|
rake (>= 0.8.7)
|
||||||
arel (3.0.3)
|
arel (3.0.3)
|
||||||
bbcoder (1.0.1)
|
bbcoder (1.0.1)
|
||||||
|
better_errors (1.1.0)
|
||||||
|
coderay (>= 1.0.0)
|
||||||
|
erubis (>= 2.6.6)
|
||||||
|
binding_of_caller (0.7.2)
|
||||||
|
debug_inspector (>= 0.0.1)
|
||||||
bluecloth (2.2.0)
|
bluecloth (2.2.0)
|
||||||
|
bourbon (3.1.8)
|
||||||
|
sass (>= 3.2.0)
|
||||||
|
thor
|
||||||
builder (3.0.4)
|
builder (3.0.4)
|
||||||
capistrano (3.1.0)
|
capistrano (3.1.0)
|
||||||
i18n
|
i18n
|
||||||
|
@ -48,8 +58,6 @@ GEM
|
||||||
capistrano-rbenv (2.0.2)
|
capistrano-rbenv (2.0.2)
|
||||||
capistrano (~> 3.1)
|
capistrano (~> 3.1)
|
||||||
sshkit (~> 1.3)
|
sshkit (~> 1.3)
|
||||||
capistrano3-unicorn (0.1.1)
|
|
||||||
capistrano (>= 3.1.0)
|
|
||||||
capybara (2.2.1)
|
capybara (2.2.1)
|
||||||
mime-types (>= 1.16)
|
mime-types (>= 1.16)
|
||||||
nokogiri (>= 1.3.3)
|
nokogiri (>= 1.3.3)
|
||||||
|
@ -79,6 +87,7 @@ GEM
|
||||||
activesupport (>= 3.0)
|
activesupport (>= 3.0)
|
||||||
dalli (2.7.0)
|
dalli (2.7.0)
|
||||||
database_cleaner (1.2.0)
|
database_cleaner (1.2.0)
|
||||||
|
debug_inspector (0.0.2)
|
||||||
debugger (1.6.6)
|
debugger (1.6.6)
|
||||||
columnize (>= 0.3.1)
|
columnize (>= 0.3.1)
|
||||||
debugger-linecache (~> 1.2.0)
|
debugger-linecache (~> 1.2.0)
|
||||||
|
@ -104,6 +113,8 @@ GEM
|
||||||
multipart-post (>= 1.2, < 3)
|
multipart-post (>= 1.2, < 3)
|
||||||
ffi (1.9.3)
|
ffi (1.9.3)
|
||||||
ffi (1.9.3-x86-mingw32)
|
ffi (1.9.3-x86-mingw32)
|
||||||
|
font-awesome-sass (4.0.3.1)
|
||||||
|
sass (~> 3.2)
|
||||||
gruff (0.3.6)
|
gruff (0.3.6)
|
||||||
hike (1.2.3)
|
hike (1.2.3)
|
||||||
i18n (0.6.9)
|
i18n (0.6.9)
|
||||||
|
@ -112,7 +123,6 @@ GEM
|
||||||
railties (>= 3.2.0, < 5.0)
|
railties (>= 3.2.0, < 5.0)
|
||||||
thor (~> 0.14)
|
thor (~> 0.14)
|
||||||
json (1.8.1)
|
json (1.8.1)
|
||||||
kgio (2.9.2)
|
|
||||||
libv8 (3.16.14.3)
|
libv8 (3.16.14.3)
|
||||||
mail (2.5.4)
|
mail (2.5.4)
|
||||||
mime-types (~> 1.16)
|
mime-types (~> 1.16)
|
||||||
|
@ -123,6 +133,9 @@ GEM
|
||||||
multi_json (1.8.4)
|
multi_json (1.8.4)
|
||||||
multipart-post (2.0.0)
|
multipart-post (2.0.0)
|
||||||
mysql2 (0.3.15)
|
mysql2 (0.3.15)
|
||||||
|
neat (1.6.0)
|
||||||
|
bourbon (>= 3.1)
|
||||||
|
sass (>= 3.3)
|
||||||
net-scp (1.1.2)
|
net-scp (1.1.2)
|
||||||
net-ssh (>= 2.6.5)
|
net-ssh (>= 2.6.5)
|
||||||
net-ssh (2.8.0)
|
net-ssh (2.8.0)
|
||||||
|
@ -150,6 +163,8 @@ GEM
|
||||||
pry-debugger (0.2.2)
|
pry-debugger (0.2.2)
|
||||||
debugger (~> 1.3)
|
debugger (~> 1.3)
|
||||||
pry (~> 0.9.10)
|
pry (~> 0.9.10)
|
||||||
|
puma (2.8.2)
|
||||||
|
rack (>= 1.1, < 2.0)
|
||||||
quiet_assets (1.0.2)
|
quiet_assets (1.0.2)
|
||||||
railties (>= 3.1, < 5.0)
|
railties (>= 3.1, < 5.0)
|
||||||
rack (1.4.5)
|
rack (1.4.5)
|
||||||
|
@ -174,7 +189,6 @@ GEM
|
||||||
rake (>= 0.8.7)
|
rake (>= 0.8.7)
|
||||||
rdoc (~> 3.4)
|
rdoc (~> 3.4)
|
||||||
thor (>= 0.14.6, < 2.0)
|
thor (>= 0.14.6, < 2.0)
|
||||||
raindrops (0.13.0)
|
|
||||||
rake (10.1.1)
|
rake (10.1.1)
|
||||||
rdoc (3.12.2)
|
rdoc (3.12.2)
|
||||||
json (~> 1.4)
|
json (~> 1.4)
|
||||||
|
@ -195,8 +209,8 @@ GEM
|
||||||
rubyzip (1.1.2)
|
rubyzip (1.1.2)
|
||||||
sanitize (2.1.0)
|
sanitize (2.1.0)
|
||||||
nokogiri (>= 1.4.4)
|
nokogiri (>= 1.4.4)
|
||||||
sass (3.1.20)
|
sass (3.3.4)
|
||||||
sass-rails (3.2.5)
|
sass-rails (3.2.6)
|
||||||
railties (~> 3.2.0)
|
railties (~> 3.2.0)
|
||||||
sass (>= 3.1.10)
|
sass (>= 3.1.10)
|
||||||
tilt (~> 1.3)
|
tilt (~> 1.3)
|
||||||
|
@ -209,7 +223,7 @@ 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)
|
||||||
slop (3.4.7)
|
slop (3.5.0)
|
||||||
sprockets (2.2.2)
|
sprockets (2.2.2)
|
||||||
hike (~> 1.2)
|
hike (~> 1.2)
|
||||||
multi_json (~> 1.0)
|
multi_json (~> 1.0)
|
||||||
|
@ -224,7 +238,7 @@ GEM
|
||||||
therubyracer (0.12.1)
|
therubyracer (0.12.1)
|
||||||
libv8 (~> 3.16.14.0)
|
libv8 (~> 3.16.14.0)
|
||||||
ref
|
ref
|
||||||
thor (0.18.1)
|
thor (0.19.1)
|
||||||
tilt (1.4.1)
|
tilt (1.4.1)
|
||||||
timecop (0.7.1)
|
timecop (0.7.1)
|
||||||
tins (1.0.1)
|
tins (1.0.1)
|
||||||
|
@ -237,10 +251,6 @@ 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)
|
||||||
unicorn (4.8.2)
|
|
||||||
kgio (~> 2.6)
|
|
||||||
rack
|
|
||||||
raindrops (~> 0.7)
|
|
||||||
websocket (1.0.7)
|
websocket (1.0.7)
|
||||||
websocket-driver (0.3.2)
|
websocket-driver (0.3.2)
|
||||||
will_paginate (3.0.5)
|
will_paginate (3.0.5)
|
||||||
|
@ -253,14 +263,17 @@ PLATFORMS
|
||||||
x86-mingw32
|
x86-mingw32
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
|
active_link_to (~> 1.0.2)
|
||||||
annotate (~> 2.6.2)
|
annotate (~> 2.6.2)
|
||||||
bbcoder (~> 1.0.1)
|
bbcoder (~> 1.0.1)
|
||||||
|
better_errors (~> 1.1.0)
|
||||||
|
binding_of_caller (~> 0.7.2)
|
||||||
bluecloth (~> 2.2.0)
|
bluecloth (~> 2.2.0)
|
||||||
|
bourbon (~> 3.1.8)
|
||||||
capistrano (~> 3.1.0)
|
capistrano (~> 3.1.0)
|
||||||
capistrano-bundler (~> 1.1.2)
|
capistrano-bundler (~> 1.1.2)
|
||||||
capistrano-rails (~> 1.1)
|
capistrano-rails (~> 1.1)
|
||||||
capistrano-rbenv (~> 2.0.2)
|
capistrano-rbenv (~> 2.0.2)
|
||||||
capistrano3-unicorn (~> 0.1.1)
|
|
||||||
capybara (~> 2.2.1)
|
capybara (~> 2.2.1)
|
||||||
carrierwave (~> 0.10.0)
|
carrierwave (~> 0.10.0)
|
||||||
codeclimate-test-reporter (~> 0.3.0)
|
codeclimate-test-reporter (~> 0.3.0)
|
||||||
|
@ -273,21 +286,24 @@ DEPENDENCIES
|
||||||
exceptional (~> 2.0.33)
|
exceptional (~> 2.0.33)
|
||||||
factory_girl_rails (~> 4.4.1)
|
factory_girl_rails (~> 4.4.1)
|
||||||
faraday (~> 0.9.0)
|
faraday (~> 0.9.0)
|
||||||
|
font-awesome-sass (~> 4.0.3.1)
|
||||||
gruff (~> 0.3.6)
|
gruff (~> 0.3.6)
|
||||||
jquery-rails (~> 2.0.2)
|
jquery-rails (~> 2.0.2)
|
||||||
kgio (~> 2.9.2)
|
|
||||||
mysql2 (~> 0.3.15)
|
mysql2 (~> 0.3.15)
|
||||||
|
neat (~> 1.6.0)
|
||||||
newrelic_rpm (~> 3.7.2.195)
|
newrelic_rpm (~> 3.7.2.195)
|
||||||
nokogiri (~> 1.6.1)
|
nokogiri (~> 1.6.1)
|
||||||
oj (~> 2.5.5)
|
oj (~> 2.5.5)
|
||||||
poltergeist (~> 1.5.0)
|
poltergeist (~> 1.5.0)
|
||||||
pry-debugger (~> 0.2.2)
|
pry-debugger (~> 0.2.2)
|
||||||
quiet_assets
|
puma (~> 2.8.2)
|
||||||
|
quiet_assets (~> 1.0.2)
|
||||||
rails (~> 3.2.17)
|
rails (~> 3.2.17)
|
||||||
rmagick (~> 2.13.2)
|
rmagick (~> 2.13.2)
|
||||||
rspec-rails (~> 2.14.1)
|
rspec-rails (~> 2.14.1)
|
||||||
sanitize (~> 2.1.0)
|
sanitize (~> 2.1.0)
|
||||||
sass-rails (~> 3.2.5)
|
sass (~> 3.3.4)
|
||||||
|
sass-rails (~> 3.2.6)
|
||||||
selenium-webdriver (~> 2.41.0)
|
selenium-webdriver (~> 2.41.0)
|
||||||
simplecov (~> 0.7.1)
|
simplecov (~> 0.7.1)
|
||||||
sprockets (~> 2.2.1)
|
sprockets (~> 2.2.1)
|
||||||
|
@ -295,5 +311,4 @@ DEPENDENCIES
|
||||||
timecop (~> 0.7.1)
|
timecop (~> 0.7.1)
|
||||||
tinymce-rails (~> 3.5.9)
|
tinymce-rails (~> 3.5.9)
|
||||||
uglifier (~> 2.5.0)
|
uglifier (~> 2.5.0)
|
||||||
unicorn (~> 4.8.2)
|
|
||||||
will_paginate (~> 3.0.5)
|
will_paginate (~> 3.0.5)
|
||||||
|
|
|
@ -35,4 +35,5 @@ Features:
|
||||||
- [Ari Timonen](https://github.com/jirikivaari) (Original Author)
|
- [Ari Timonen](https://github.com/jirikivaari) (Original Author)
|
||||||
- [Florent Latombe](https://github.com/flatombe)
|
- [Florent Latombe](https://github.com/flatombe)
|
||||||
- [Luke Barratt](https://github.com/lbarratt)
|
- [Luke Barratt](https://github.com/lbarratt)
|
||||||
- [Callum Barratt](https://github.com/cbarratt)
|
- [Callum Barratt](https://github.com/cbarratt)
|
||||||
|
- [Joseph Hutchins](https://github.com/taekwonjoe01)
|
||||||
|
|
BIN
app/assets/images/flags/AD.png
Normal file
After Width: | Height: | Size: 809 B |
BIN
app/assets/images/flags/AE.png
Normal file
After Width: | Height: | Size: 806 B |
BIN
app/assets/images/flags/AF.png
Normal file
After Width: | Height: | Size: 742 B |
BIN
app/assets/images/flags/AG.png
Normal file
After Width: | Height: | Size: 691 B |
BIN
app/assets/images/flags/AI.png
Normal file
After Width: | Height: | Size: 936 B |
BIN
app/assets/images/flags/AL.png
Normal file
After Width: | Height: | Size: 825 B |
BIN
app/assets/images/flags/AM.png
Normal file
After Width: | Height: | Size: 509 B |
BIN
app/assets/images/flags/AN.png
Normal file
After Width: | Height: | Size: 609 B |
BIN
app/assets/images/flags/AO.png
Normal file
After Width: | Height: | Size: 788 B |
BIN
app/assets/images/flags/AQ.png
Normal file
After Width: | Height: | Size: 892 B |
BIN
app/assets/images/flags/AR.png
Normal file
After Width: | Height: | Size: 622 B |
BIN
app/assets/images/flags/AS.png
Normal file
After Width: | Height: | Size: 1,004 B |
BIN
app/assets/images/flags/AT.png
Normal file
After Width: | Height: | Size: 509 B |
BIN
app/assets/images/flags/AU.png
Normal file
After Width: | Height: | Size: 879 B |
BIN
app/assets/images/flags/AW.png
Normal file
After Width: | Height: | Size: 643 B |
BIN
app/assets/images/flags/AX.png
Normal file
After Width: | Height: | Size: 620 B |
BIN
app/assets/images/flags/AZ.png
Normal file
After Width: | Height: | Size: 693 B |
BIN
app/assets/images/flags/BA.png
Normal file
After Width: | Height: | Size: 977 B |
BIN
app/assets/images/flags/BB.png
Normal file
After Width: | Height: | Size: 635 B |
BIN
app/assets/images/flags/BD.png
Normal file
After Width: | Height: | Size: 673 B |
BIN
app/assets/images/flags/BE.png
Normal file
After Width: | Height: | Size: 850 B |
BIN
app/assets/images/flags/BF.png
Normal file
After Width: | Height: | Size: 560 B |
BIN
app/assets/images/flags/BG.png
Normal file
After Width: | Height: | Size: 520 B |
BIN
app/assets/images/flags/BH.png
Normal file
After Width: | Height: | Size: 697 B |
BIN
app/assets/images/flags/BI.png
Normal file
After Width: | Height: | Size: 846 B |
BIN
app/assets/images/flags/BJ.png
Normal file
After Width: | Height: | Size: 812 B |
BIN
app/assets/images/flags/BL.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
app/assets/images/flags/BM.png
Normal file
After Width: | Height: | Size: 902 B |
BIN
app/assets/images/flags/BN.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
app/assets/images/flags/BO.png
Normal file
After Width: | Height: | Size: 654 B |
BIN
app/assets/images/flags/BR.png
Normal file
After Width: | Height: | Size: 1,004 B |
BIN
app/assets/images/flags/BS.png
Normal file
After Width: | Height: | Size: 809 B |
BIN
app/assets/images/flags/BT.png
Normal file
After Width: | Height: | Size: 958 B |
BIN
app/assets/images/flags/BW.png
Normal file
After Width: | Height: | Size: 509 B |
BIN
app/assets/images/flags/BY.png
Normal file
After Width: | Height: | Size: 843 B |
BIN
app/assets/images/flags/BZ.png
Normal file
After Width: | Height: | Size: 906 B |
BIN
app/assets/images/flags/CA.png
Normal file
After Width: | Height: | Size: 632 B |
BIN
app/assets/images/flags/CC.png
Normal file
After Width: | Height: | Size: 824 B |
BIN
app/assets/images/flags/CD.png
Normal file
After Width: | Height: | Size: 973 B |
BIN
app/assets/images/flags/CF.png
Normal file
After Width: | Height: | Size: 614 B |
BIN
app/assets/images/flags/CG.png
Normal file
After Width: | Height: | Size: 915 B |
BIN
app/assets/images/flags/CH.png
Normal file
After Width: | Height: | Size: 507 B |
BIN
app/assets/images/flags/CI.png
Normal file
After Width: | Height: | Size: 851 B |
BIN
app/assets/images/flags/CK.png
Normal file
After Width: | Height: | Size: 965 B |
BIN
app/assets/images/flags/CL.png
Normal file
After Width: | Height: | Size: 698 B |
BIN
app/assets/images/flags/CM.png
Normal file
After Width: | Height: | Size: 906 B |
BIN
app/assets/images/flags/CN.png
Normal file
After Width: | Height: | Size: 845 B |
BIN
app/assets/images/flags/CO.png
Normal file
After Width: | Height: | Size: 509 B |
BIN
app/assets/images/flags/CR.png
Normal file
After Width: | Height: | Size: 509 B |
BIN
app/assets/images/flags/CU.png
Normal file
After Width: | Height: | Size: 845 B |
BIN
app/assets/images/flags/CV.png
Normal file
After Width: | Height: | Size: 648 B |
BIN
app/assets/images/flags/CW.png
Normal file
After Width: | Height: | Size: 633 B |
BIN
app/assets/images/flags/CX.png
Normal file
After Width: | Height: | Size: 938 B |
BIN
app/assets/images/flags/CY.png
Normal file
After Width: | Height: | Size: 859 B |
BIN
app/assets/images/flags/CZ.png
Normal file
After Width: | Height: | Size: 818 B |
BIN
app/assets/images/flags/DE.png
Normal file
After Width: | Height: | Size: 509 B |
BIN
app/assets/images/flags/DJ.png
Normal file
After Width: | Height: | Size: 834 B |
BIN
app/assets/images/flags/DK.png
Normal file
After Width: | Height: | Size: 575 B |
BIN
app/assets/images/flags/DM.png
Normal file
After Width: | Height: | Size: 946 B |
BIN
app/assets/images/flags/DO.png
Normal file
After Width: | Height: | Size: 840 B |
BIN
app/assets/images/flags/DZ.png
Normal file
After Width: | Height: | Size: 911 B |
BIN
app/assets/images/flags/EC.png
Normal file
After Width: | Height: | Size: 730 B |
BIN
app/assets/images/flags/EE.png
Normal file
After Width: | Height: | Size: 509 B |
BIN
app/assets/images/flags/EG.png
Normal file
After Width: | Height: | Size: 616 B |
BIN
app/assets/images/flags/EH.png
Normal file
After Width: | Height: | Size: 843 B |
BIN
app/assets/images/flags/ER.png
Normal file
After Width: | Height: | Size: 935 B |
BIN
app/assets/images/flags/ES.png
Normal file
After Width: | Height: | Size: 705 B |
BIN
app/assets/images/flags/ET.png
Normal file
After Width: | Height: | Size: 889 B |
BIN
app/assets/images/flags/EU.png
Normal file
After Width: | Height: | Size: 832 B |
BIN
app/assets/images/flags/FI.png
Normal file
After Width: | Height: | Size: 589 B |
BIN
app/assets/images/flags/FJ.png
Normal file
After Width: | Height: | Size: 976 B |
BIN
app/assets/images/flags/FK.png
Normal file
After Width: | Height: | Size: 953 B |
BIN
app/assets/images/flags/FM.png
Normal file
After Width: | Height: | Size: 632 B |
BIN
app/assets/images/flags/FO.png
Normal file
After Width: | Height: | Size: 637 B |
BIN
app/assets/images/flags/FR.png
Normal file
After Width: | Height: | Size: 851 B |
BIN
app/assets/images/flags/FX.png
Normal file
After Width: | Height: | Size: 851 B |
BIN
app/assets/images/flags/GA.png
Normal file
After Width: | Height: | Size: 509 B |
BIN
app/assets/images/flags/GB.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
app/assets/images/flags/GD.png
Normal file
After Width: | Height: | Size: 732 B |
BIN
app/assets/images/flags/GE.png
Normal file
After Width: | Height: | Size: 559 B |
BIN
app/assets/images/flags/GG.png
Normal file
After Width: | Height: | Size: 618 B |
BIN
app/assets/images/flags/GH.png
Normal file
After Width: | Height: | Size: 560 B |
BIN
app/assets/images/flags/GI.png
Normal file
After Width: | Height: | Size: 754 B |
BIN
app/assets/images/flags/GL.png
Normal file
After Width: | Height: | Size: 640 B |
BIN
app/assets/images/flags/GM.png
Normal file
After Width: | Height: | Size: 509 B |
BIN
app/assets/images/flags/GN.png
Normal file
After Width: | Height: | Size: 851 B |
BIN
app/assets/images/flags/GQ.png
Normal file
After Width: | Height: | Size: 827 B |
BIN
app/assets/images/flags/GR.png
Normal file
After Width: | Height: | Size: 671 B |
BIN
app/assets/images/flags/GS.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
app/assets/images/flags/GT.png
Normal file
After Width: | Height: | Size: 669 B |
BIN
app/assets/images/flags/GU.png
Normal file
After Width: | Height: | Size: 792 B |
BIN
app/assets/images/flags/GW.png
Normal file
After Width: | Height: | Size: 822 B |
BIN
app/assets/images/flags/GY.png
Normal file
After Width: | Height: | Size: 1,001 B |
BIN
app/assets/images/flags/HK.png
Normal file
After Width: | Height: | Size: 963 B |