forked from activemerchant/payment_icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment_icons.gemspec
21 lines (17 loc) · 955 Bytes
/
payment_icons.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$:.push File.expand_path('../lib', __FILE__)
require 'payment_icons/version'
Gem::Specification.new do |s|
s.name = 'payment_icons'
s.version = PaymentIcons::VERSION
s.authors = ['Nakul Pathak', 'Shopify']
s.email = ['[email protected]']
s.homepage = 'https://github.com/Shopify/payment_icons'
s.summary = 'Payment Icon engine that can be integrated with any rails app to give easy access to common payment icons like visa, mastercard, etc.'
s.description = 'Mountable rails engine which loads assets (svg files of payment icons) and provides a frozen_record model called PaymentIcon to access these through groups, names of icons, etc.'
s.license = 'MIT'
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.rdoc']
s.test_files = Dir['test/**/*']
s.add_dependency 'frozen_record'
s.add_dependency 'rails', '>= 4.1', '< 6.0'
s.add_dependency 'sass'
end