forked from activemerchant/payment_icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment_icons.gemspec
27 lines (21 loc) · 1.12 KB
/
payment_icons.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
$:.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/activemerchant/payment_icons'
s.summary = 'Payment Icon engine that can be integrated with any rails app to give easy access to payment icons for common credit cards, cryptocurrencies, bank transfers and wallets.'
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 'railties', '>= 5.0'
s.add_dependency 'sassc-rails'
if s.respond_to?(:metadata)
s.metadata["allowed_push_host"] = 'https://rubygems.org'
end
s.add_development_dependency('rails', '>= 5.0')
end