Skip to content

An easy to use library that allows you to manage and access payment icons

License

Notifications You must be signed in to change notification settings

TrueLayer/payment_icons

This branch is 880 commits behind activemerchant/payment_icons:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

842e6aa · Jan 8, 2024
Jan 2, 2024
Jan 8, 2024
Aug 21, 2015
Jan 8, 2024
Jan 4, 2023
Dec 6, 2023
Sep 29, 2021
Dec 19, 2022
Apr 14, 2022
Oct 18, 2023
Jan 4, 2017
Dec 6, 2023
Aug 24, 2015
Feb 17, 2023
Aug 24, 2015
Feb 17, 2023

Repository files navigation

⚠️ Only Shopify Partners team approved icons may be reviewed/merged ⚠️

Please read more on shopify.dev/apps/payments and/or reach out on the developer forums.

Payment Icons

Build Status

Payment Icons is a simple Ruby on Rails engine extracted from Shopify. Shopify supports multiple payment methods through gems like Active Merchant and Offsite Payments. This has lead to an accumulation of icons for various payment methods. This gem provides easy access to those icons and helpful methods to integrate them into any Ruby on Rails app.

Usage

From Git

You can check out the latest source from git:

git clone https://github.com/activemerchant/payment_icons.git

From RubyGems

Run gem install payment_icons in your console.

If you'd like to add it to your existing Rails project, include gem 'payment_icons' in your Gemfile and run bundle install.

Once the gem is part of your Rails project, the PaymentIcon frozen record model will be available anywhere in your application. You also have access to all the icons with the path app/assets/images/payment_icons/<icon_name.svg>.

For example:

<% PaymentIcon.credit_cards.each do |card| %>
  <div>
    <%= image_tag card.path %>
  </div>
<% end %>

Contributing

For information on adding or updating payment icons, see our CONTRIBUTING.md file.

Releases

This information is for project maintainers:

Requirements

  • Ruby version: >= 2.5.0
  • Bundler 2.0.2 (gem install bundler:2.0.2)

Any updates that add new icons, or change the style of existing ones, are to be considered patches (i.e. v1.0.X).

To create a new release:

  • git checkout master to get back to master branch
  • git fetch --tags --force to refresh tags
  • git pull origin master to pull latest changes to your local environment
  • Run bump patch --tag --tag-prefix v --commit-message release. This will create a new commit that includes a version bump and a new tag.
  • git push --tags origin master
  • Contact a maintainer in Shopify to release the new version via ShipIt.

Once deployed via ShipIt, you will see a new release at https://rubygems.org/gems/payment_icons

About

An easy to use library that allows you to manage and access payment icons

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 73.8%
  • HTML 23.7%
  • SCSS 2.4%
  • JavaScript 0.1%