Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

moticons

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

moticons

  • 1.1.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

RubyMotion Icons (a.k.a. Moticons)

Moticons is the easiest way to add icons to your RubyMotion project. It provides a simple interface for creating text-based or image-based icons.

Moticons is a wrapper around the FontAwesomeKit CocoaPod.

Currently Moticons supports 6 different icon fonts.

Installation

Add this line to your application's Gemfile:

gem 'moticons'

And then execute:

$ bundle && rake pod:install

Usage

Moticons provides two global helper methods for creating icons: icon_string and icon_image.

Both methods require you to specify the name of the icon collection and the name of the font.

The collection names are:

  • Font Awesome - :awesome
  • Foundation - :foundation
  • Zocial - :zocial
  • Ionicons - :ion
  • Octicons - :octicon
  • Material - :material

The icon names are the typical, Ruby snake-cased version of the original name. For example, you would refer to the Font Awesome cart-arrow-down icon as cart_arrow_down.

You may specify collection and icon names as separate arguments:

icon_image(:ion, :star)

Or you can combine them as a single argument:

icon_image(:ion_star)

Creating an icon as an NSAttributedString

icon_string(:ion, :star, size: 40, color: UIColor.redColor)

Specifying size and color are optional.

Creating an icon as a UIImage

icon_image(:ion, :star, size: 40, color: UIColor.redColor)

Specifying size and color are optional.

License

This gem is available as open source under the terms of the MIT License. Refer to each icon library for their license.

FAQs

Package last updated on 25 Oct 2018

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc