You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

flag-icons-rails

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flag-icons-rails

3.4.6.1
bundlerRubygems
Version published
Maintainers
1
Created
Source

flag-icons-rails

Gem Version Gem Downloads Gem Total Downloads
Build Status Code Climate Codacy Badge

flag-icons-rails provides flag-icon-css - a collection of all country flags in SVG - as a Ruby gem for use with the asset pipeline.

Installation

Add this to your Gemfile:

gem 'flag-icons-rails'

and then execute:

bundle install

Do not add gem to assets section if you want to use flag_icon rails helper.

Usage

In your application.css, include the file:

/*
 *= require flag-icon
 */

If you prefer SCSS, add this to your application.scss file:

@import "flag-icon";

Then restart your webserver if it was previously running.

Plain usage

In your view:

<span class="flag-icon flag-icon-by"></span>
<span class="flag-icon flag-icon-by flag-icon-squared"></span>

Rails Helper usage

In your view:

flag_icon(:by)
# => <span class="flag-icon flag-icon-by"></span>
flag_icon(:by, element: :div)
# => <div class="flag-icon flag-icon-by"></div>
flag_icon(:by, squared: true)
# => <span class="flag-icon flag-icon-by flag-icon-squared"></span>
flag_icon(:by, id: 'my-flag', class: 'strong')
# => <span id="my-flag" class="flag-icon flag-icon-by strong"></span>

Thanks

  • lipis for amazing collection of all country flags flags-icon-css
  • cfiorini for flag-icon-sass gem this one is based on

FAQs

Package last updated on 20 Mar 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts