payment_icons 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/app/assets/images/payment_icons/amazon.svg +5 -0
  5. data/app/assets/images/payment_icons/american-express.svg +1 -0
  6. data/app/assets/images/payment_icons/bitcoin.svg +1 -0
  7. data/app/assets/images/payment_icons/bogus.svg +1 -0
  8. data/app/assets/images/payment_icons/boleto.svg +1 -0
  9. data/app/assets/images/payment_icons/cash.svg +1 -0
  10. data/app/assets/images/payment_icons/dankort.svg +1 -0
  11. data/app/assets/images/payment_icons/diners-club.svg +1 -0
  12. data/app/assets/images/payment_icons/discover.svg +1 -0
  13. data/app/assets/images/payment_icons/dogecoin.svg +1 -0
  14. data/app/assets/images/payment_icons/dwolla.svg +1 -0
  15. data/app/assets/images/payment_icons/forbrugsforeningen.svg +1 -0
  16. data/app/assets/images/payment_icons/generic.svg +1 -0
  17. data/app/assets/images/payment_icons/gift-card.svg +1 -0
  18. data/app/assets/images/payment_icons/giropay.svg +1 -0
  19. data/app/assets/images/payment_icons/google-wallet.svg +1 -0
  20. data/app/assets/images/payment_icons/jcb.svg +1 -0
  21. data/app/assets/images/payment_icons/laser.svg +1 -0
  22. data/app/assets/images/payment_icons/litecoin.svg +1 -0
  23. data/app/assets/images/payment_icons/maestro.svg +1 -0
  24. data/app/assets/images/payment_icons/master.svg +1 -0
  25. data/app/assets/images/payment_icons/paypal.svg +1 -0
  26. data/app/assets/images/payment_icons/sofort.svg +1 -0
  27. data/app/assets/images/payment_icons/unionpay.svg +1 -0
  28. data/app/assets/images/payment_icons/visa.svg +1 -0
  29. data/app/assets/images/payment_icons/visaelectron.svg +1 -0
  30. data/app/models/payment_icon.rb +27 -0
  31. data/db/payment_icons.yml +88 -0
  32. data/lib/payment_icons/engine.rb +5 -0
  33. data/lib/payment_icons/version.rb +3 -0
  34. data/lib/payment_icons.rb +5 -0
  35. data/test/dummy/README.md +3 -0
  36. data/test/dummy/Rakefile +3 -0
  37. data/test/dummy/app/controllers/application_controller.rb +3 -0
  38. data/test/dummy/app/controllers/icons_controller.rb +5 -0
  39. data/test/dummy/app/views/icons/show.html.erb +14 -0
  40. data/test/dummy/app/views/layouts/application.html.erb +12 -0
  41. data/test/dummy/bin/bundle +3 -0
  42. data/test/dummy/bin/rails +4 -0
  43. data/test/dummy/bin/rake +4 -0
  44. data/test/dummy/bin/setup +21 -0
  45. data/test/dummy/config/application.rb +12 -0
  46. data/test/dummy/config/boot.rb +4 -0
  47. data/test/dummy/config/environment.rb +3 -0
  48. data/test/dummy/config/environments/development.rb +16 -0
  49. data/test/dummy/config/environments/production.rb +26 -0
  50. data/test/dummy/config/environments/test.rb +22 -0
  51. data/test/dummy/config/initializers/assets.rb +9 -0
  52. data/test/dummy/config/initializers/cookies_serializer.rb +1 -0
  53. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  54. data/test/dummy/config/initializers/session_store.rb +1 -0
  55. data/test/dummy/config/initializers/wrap_parameters.rb +7 -0
  56. data/test/dummy/config/routes.rb +3 -0
  57. data/test/dummy/config/secrets.yml +8 -0
  58. data/test/dummy/config.ru +2 -0
  59. data/test/dummy/public/404.html +67 -0
  60. data/test/dummy/public/422.html +67 -0
  61. data/test/dummy/public/500.html +66 -0
  62. data/test/dummy/public/favicon.ico +0 -0
  63. data/test/dummy/test/controllers/icons_controller_test.rb +29 -0
  64. data/test/test_helper.rb +13 -0
  65. data/test/unit/payment_icon_test.rb +34 -0
  66. metadata +171 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b7d820841b5a7ab154d6e7cd30b8ac47fa815abb
4
+ data.tar.gz: 478cee684ef854888d4992d0a847bff71b81843a
5
+ SHA512:
6
+ metadata.gz: 01477414391cd71e6d50c29c7c3bf25a4772cd353a575f5a26d2983c6a1c84f5dd699b3d1983850995353bb4649008e5313fe90cce5453edcb6ba91674fb7640
7
+ data.tar.gz: 3b137e4f7fa71af755cb2d5286d5dc00ffc5c4005ee2f8b7de562d78c93f4260075ebbeccc9e57f245e3694aa5a32cbd6246f1afdee087b967b8d3bd99895104
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2015 Shopify Inc
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,32 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'PaymentIcons'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
18
+ load 'rails/tasks/engine.rake'
19
+ load 'rails/tasks/statistics.rake'
20
+
21
+ Bundler::GemHelper.install_tasks
22
+
23
+ require 'rake/testtask'
24
+
25
+ Rake::TestTask.new(:test) do |t|
26
+ t.libs << 'lib'
27
+ t.libs << 'test'
28
+ t.pattern = 'test/**/*_test.rb'
29
+ t.verbose = false
30
+ end
31
+
32
+ task default: :test
@@ -0,0 +1,5 @@
1
+ <svg width="38" height="24" xmlns="http://www.w3.org/2000/svg">
2
+ <rect stroke-opacity=".07" stroke="#000" fill="#FFF" x=".5" y=".5" width="37" height="23" rx="3"/>
3
+ <path d="M25.26 16.23c-1.697 1.48-4.157 2.27-6.275 2.27-2.97 0-5.644-1.3-7.666-3.463-.16-.17-.018-.402.173-.27 2.183 1.504 4.882 2.408 7.67 2.408 1.88 0 3.95-.46 5.85-1.416.288-.145.53.222.248.47zm.706-.957c-.216-.328-1.434-.155-1.98-.078-.167.024-.193-.148-.043-.27.97-.81 2.562-.576 2.748-.305.187.272-.047 2.16-.96 3.063-.14.138-.272.064-.21-.12.205-.604.664-1.96.446-2.29z" fill="#F90"/>
4
+ <path fill-rule="evenodd" d="M20.478 10.84c0 .704.017 1.292-.323 1.918-.275.508-.71.82-1.197.82-.664 0-1.05-.528-1.05-1.31 0-1.54 1.32-1.82 2.57-1.82v.392m1.744 4.407c-.114.107-.28.115-.408.044-.574-.498-.676-.73-.993-1.205-.947 1.012-1.618 1.315-2.85 1.315-1.453 0-2.587-.938-2.587-2.818 0-1.467.762-2.467 1.844-2.955.94-.433 2.25-.51 3.25-.628v-.235c0-.43.033-.94-.208-1.31-.212-.333-.616-.47-.97-.47-.66 0-1.25.353-1.392 1.085-.03.163-.144.323-.3.33l-1.677-.187c-.14-.033-.296-.153-.257-.38.386-2.125 2.223-2.766 3.867-2.766.84 0 1.94.234 2.604.9.842.82.762 1.918.762 3.11v2.818c0 .847.335 1.22.65 1.676.113.164.138.36-.003.482-.353.308-.98.88-1.326 1.2l-.005-.005" fill="#221F1F"/>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24"><path fill="#3086C8" d="M2.339 0c-1.292 0-2.339.914-2.339 2.042v19.916c0 1.128 1.047 2.042 2.339 2.042h33.159c1.382 0 2.502-.914 2.502-2.042v-19.916c0-1.128-1.12-2.042-2.502-2.042h-33.159zm15.104 13.305l-1.538-3.275h-2.078v4.718l-2.087-4.718h-1.664l-2.213 4.944h1.299l.491-1.232h2.509l.498 1.226h2.464v-3.7l1.747 3.709h1.143l1.595-3.648v3.652h1.489v-4.951h-2.113l-1.542 3.275zm-7.315-.611l.75-1.656.781 1.656h-1.531zm17.224-1.087l-1.401-1.576h-3.997v4.934h3.836l1.516-1.595 1.481 1.606h1.14v-.476l-1.783-2.023 1.783-1.893v-.559h-1.128l-1.447 1.582zm-2.222 2.34h-1.894v-1.027h1.785v-.85h-1.785v-1.011l2.054.006 1.229 1.412-1.389 1.47zm5.87-3.231l-1.709 1.784 1.709 1.784v1.716h-1.073v-.001h-1.671l-.909-1.064-.972 1.064h-4.845v.001h-2.564v-.047h-.022v-.526l-.262.571h-2.265l-.284-.61v.61h-4.233l-.501-1.23h-.848l-.529 1.23h-2.167v.002h-.855v-1.853l.855-1.647v.004l1.581-3.503h3.08l.432.994v-.986h3.769l.829 1.674.81-1.681h2.961v-.002h.427v.001h-.427v.019h5.155l.949 1.031.972-1.031h1.534v-.02h1.073v1.716z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="0 0 38 24"><path opacity=".07" enable-background="new" d="M35 0h-32c-1.7 0-3 1.3-3 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3v-18c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-32c-1.1 0-2-.9-2-2v-18c0-1.1.9-2 2-2h32"/><path fill="#EDA024" d="M21.6 4.4c-4.2-1.4-8.7.8-10.2 5s.8 8.7 5 10.2 8.7-.8 10.2-5c1.4-4.2-.8-8.7-5-10.2z"/><path fill="#fff" d="M16.1 8.3l.3-1c.6.2 1.3.4 1.9.7.2-.5.4-1 .5-1.6l.9.3-.5 1.5.8.3.5-1.5.9.3c-.2.5-.4 1-.5 1.6l.4.2c.3.2.6.4.9.7.3.3.4.6.5 1 0 .3 0 .6-.2.9-.2.5-.5.8-1.1.9h-.2c.2.1.3.2.4.4.4.4.5.8.4 1.4 0 .1 0 .2-.1.3 0 .1 0 .1-.1.2-.1.2-.2.3-.2.5-.3.5-.8.9-1.5.9-.5 0-1 0-1.4-.1l-.4-.1c-.2.5-.4 1-.5 1.6l-.9-.3c.2-.5.4-1 .5-1.5l-.8-.3c-.2.5-.4 1-.5 1.5l-.9-.3c.2-.5.4-1 .5-1.6l-1.9-.6.6-1.1c.2.1.5.2.7.2.2.1.4 0 .5-.2l1.4-4.2v-.1c0-.3-.1-.5-.4-.5 0-.2-.2-.3-.5-.4zm1.2 6c.5.2.9.3 1.3.4.3.1.5.1.8.1.2 0 .3 0 .5-.1.5-.3.6-1 .2-1.4l-.6-.5c-.3-.2-.7-.3-1.1-.4-.1 0-.3-.1-.4-.2l-.7 2.1zm1-3.1c.3.1.5.2.7.2.3.1.6.2.9.1.4 0 .7-.1.8-.5.1-.3.1-.6 0-.8-.1-.2-.3-.3-.5-.4-.3-.2-.6-.3-1-.4l-.3-.1c-.1.7-.4 1.3-.6 1.9z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24"><path fill="#EDA024" d="M38 21.341c0 1.468-1.212 2.659-2.706 2.659h-32.588c-1.494 0-2.706-1.191-2.706-2.659v-18.682c0-1.468 1.212-2.659 2.706-2.659h32.586c1.496 0 2.708 1.191 2.708 2.659v18.682z"/><g fill="#EEAA3C"><path d="M6.418 0l-6.418 6.305v2.125l8.581-8.43zM38 19.206l-4.88 4.794h2.163l2.717-2.669zM38 14.183l-9.992 9.817h2.163l7.829-7.692zM38 4.136l-20.218 19.864h2.163l18.055-17.738zM36.695.395l-24.027 23.605h2.163l22.893-22.491c-.228-.463-.585-.848-1.029-1.114zM31.984 0l-24.428 24h2.163l24.428-24zM26.87 0l-24.404 23.976.24.024h1.899l24.428-24h-2.163zM21.758 0l-21.755 21.373c.007.594.218 1.135.56 1.575l23.358-22.948h-2.163zM16.644 0l-16.644 16.352v2.125l18.807-18.477zM11.532 0l-11.532 11.329v2.125l13.695-13.454zM38 9.159l-15.106 14.841h2.163l12.943-12.716zM2.706 0c-1.494 0-2.706 1.191-2.706 2.659v.859l3.581-3.518h-.875z"/></g><path fill="#fff" d="M15 18v-12h6.509c2.123 0 3.157 1.477 3.157 3.078 0 1.494-.817 2.798-1.87 3.032 1.203.198 2.204 1.245 2.204 2.738 0 1.817-1.168 3.151-3.307 3.151l-6.693.001zm7.792-8.641c0-.738-.575-1.359-1.377-1.359h-4.428v3h4.428c.802 0 1.377-.867 1.377-1.641zm.125 5.141c0-.756-.75-1.5-1.669-1.5h-4.248v3h4.248c.886 0 1.669-.3 1.669-1.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="0 0 38 24"><path fill="#fff" d="M35.7 23.965h-33.4c-1.265 0-2.3-1.035-2.3-2.3v-19.4c0-1.265 1.035-2.3 2.3-2.3h33.4c1.265 0 2.3 1.035 2.3 2.3v19.4c0 1.265-1.035 2.3-2.3 2.3z"/><path fill="#A7A8AB" d="M35.564 23.965h-33.128c-1.344 0-2.436-1.077-2.436-2.4v-19.2c0-1.323 1.092-2.4 2.436-2.4h33.128c1.344 0 2.436 1.077 2.436 2.4v19.2c0 1.323-1.092 2.4-2.436 2.4zm-33.128-23.04c-.806 0-1.462.646-1.462 1.44v19.2c0 .794.656 1.44 1.462 1.44h33.128c.806 0 1.462-.646 1.462-1.44v-19.2c0-.794-.656-1.44-1.462-1.44h-33.128z" opacity=".25"/><g fill="#221F1F"><path d="M8.079 4.945h.7v6.298h-.7zM6.249 4.945h.7v6.298h-.7zM13.505 4.945h1.901v6.298h-1.901zM23.22 4.945h.95v6.298h-.95zM25.544 4.945h.95v6.298h-.95zM29.348 4.945h1.221v6.298h-1.221zM27.973 4.945h.395v6.298h-.395zM21.584 4.945h.395v6.298h-.395zM20.739 4.945h.395v6.298h-.395zM17.993 4.945h.395v6.298h-.395zM11.683 4.945h.395v6.298h-.395zM10.52 4.945h.733v6.298h-.733zM6.249 19.3v-6.478h2.431c.495 0 .891.065 1.191.196.299.131.532.333.701.606.17.271.255.556.255.855 0 .276-.075.537-.225.781-.149.244-.375.442-.679.593.392.115.694.311.903.588.211.276.317.603.317.98 0 .305-.065.587-.193.847-.128.261-.287.461-.475.603-.189.14-.425.247-.709.32-.285.072-.633.109-1.046.109h-2.472zm.86-3.755h1.401c.38 0 .653-.026.817-.075.219-.065.383-.173.493-.324.11-.151.166-.339.166-.567 0-.216-.051-.406-.155-.568-.103-.164-.25-.278-.442-.338s-.52-.09-.985-.09h-1.295v1.963zm0 2.995h1.614c.277 0 .472-.011.585-.032.196-.035.362-.094.495-.176.133-.083.241-.204.327-.362.086-.158.128-.341.128-.547 0-.243-.062-.452-.187-.632-.124-.179-.296-.305-.516-.377-.219-.072-.535-.109-.947-.109h-1.499v2.235zM11.922 16.952c0-.867.241-1.509.725-1.927.403-.347.896-.52 1.476-.52.644 0 1.172.211 1.582.633.409.421.614 1.004.614 1.748 0 .603-.09 1.077-.271 1.422-.181.345-.445.614-.792.805-.345.192-.724.286-1.132.286-.657 0-1.188-.21-1.594-.63-.406-.421-.608-1.027-.608-1.817zm.814.002c0 .6.131 1.05.394 1.347.264.299.594.448.994.448.395 0 .724-.149.988-.449.262-.3.394-.757.394-1.371 0-.579-.133-1.018-.397-1.315-.264-.299-.593-.448-.985-.448-.4 0-.73.148-.994.445-.262.297-.394.745-.394 1.344zM17.234 19.3v-6.478h.796v6.478h-.796zM22.465 17.78l.823.109c-.128.478-.368.85-.718 1.114-.35.264-.796.397-1.341.397-.685 0-1.227-.211-1.629-.633-.401-.421-.602-1.013-.602-1.775 0-.787.202-1.399.608-1.834.406-.436.932-.653 1.579-.653.626 0 1.137.213 1.534.639.397.427.596 1.027.596 1.8l-.004.211h-3.497c.03.514.175.909.437 1.182.261.273.588.41.979.41.291 0 .54-.077.745-.231.207-.154.369-.4.49-.737zm-2.606-1.276h2.615c-.035-.395-.136-.691-.3-.888-.252-.306-.581-.46-.983-.46-.365 0-.671.122-.92.366-.247.244-.385.572-.412.982zM26.023 18.59l.109.703c-.223.047-.424.071-.599.071-.288 0-.511-.045-.671-.137-.158-.092-.27-.211-.335-.36s-.097-.463-.097-.941v-2.705h-.588v-.615h.588v-1.161l.796-.478v1.639h.796v.615h-.796v2.751c0 .228.014.374.042.439.027.065.072.116.136.155.063.038.154.057.271.057l.347-.032zM26.51 16.952c0-.867.241-1.509.725-1.927.403-.347.896-.52 1.476-.52.644 0 1.172.211 1.582.633.409.421.614 1.004.614 1.748 0 .603-.09 1.077-.271 1.422-.181.345-.445.614-.792.805-.345.192-.724.286-1.132.286-.657 0-1.188-.21-1.594-.63-.406-.421-.608-1.027-.608-1.817zm.814.002c0 .6.131 1.05.394 1.347.264.299.594.448.994.448.395 0 .724-.149.988-.449.262-.3.394-.757.394-1.371 0-.579-.133-1.018-.397-1.315-.264-.299-.593-.448-.985-.448-.4 0-.73.148-.994.445-.262.297-.394.745-.394 1.344z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24"><path fill="#98C74C" d="M38 21c0 1.657-1.343 3-3 3h-32c-1.657 0-3-1.343-3-3v-18c0-1.657 1.343-3 3-3h32c1.657 0 3 1.343 3 3v18z"/><circle opacity=".2" cx="19" cy="12" r="8"/><circle opacity=".2" cx="32" cy="12" r="2"/><circle opacity=".2" cx="6" cy="12" r="2"/><path fill="#fff" d="M22.113 13.897c0-1.573-1.271-2.067-2.518-2.42v-2.714c.65.118 1.218.588 1.68 1.105l.71-.797c-.578-.609-1.424-1.128-2.39-1.246v-.995h-1.034v.973c-1.408.154-2.413 1.036-2.413 2.275 0 1.461 1.2 1.907 2.413 2.244v3.024c-.898-.145-1.608-.759-2.053-1.277l-.62.945c.597.673 1.504 1.151 2.674 1.266v.89h1.034v-.881c1.819-.186 2.517-1.304 2.517-2.392zm-4.974-3.948c0-.684.627-1.11 1.422-1.223v2.459c-.797-.133-1.422-.596-1.422-1.236zm2.456 5.426v-2.762c.813.254 1.451.59 1.451 1.359 0 .565-.364 1.246-1.451 1.403z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="38" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M3 0C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3H3z" fill="#D8232A"/><path d="M27.144 6c-.15.062-3.395 5.163-3.395 5.163L24 6h-7s-.357 3.054-.445 4.482C16.22 8.85 13.635 6 10.04 6H0v12h10.527c1.953 0 3.778-1.236 4.892-3.028.4-.657.71-1.338.98-2.04-.135 1.632-.202 3.413-.38 5.068 2.383-.023 7.373 0 7.373 0 .044-2.04.29-6.293.29-6.293L27.86 18H37c-1.746-2.037-3.537-4.44-5.076-6.627l.023-.095C33.56 9.494 35.214 7.6 37 6h-9.856zM5.128 14v-3.99c1.33.1 4.803-.066 4.803 1.995 0 2.06-3.477 1.933-4.802 1.995z" fill="#fff"/><path d="M.5 6.5v11" stroke="#e5e5e5"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="0 0 38 24"><path opacity=".07" enable-background="new" d="M35 0h-32c-1.7 0-3 1.3-3 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3v-18c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-32c-1.1 0-2-.9-2-2v-18c0-1.1.9-2 2-2h32"/><g fill="#3086C8"><path d="M12 12v3.7c0 .3-.2.3-.5.2-1.9-.8-3-3.3-2.3-5.4.4-1.1 1.2-2 2.3-2.4.4-.2.5-.1.5.2v3.7zM14 12v-3.7c0-.3 0-.3.3-.2 2.1.8 3.2 3.3 2.4 5.4-.4 1.1-1.2 2-2.3 2.4-.4.2-.4.1-.4-.2v-3.7zM21.2 5h-8.2c3.8 0 6.8 3.1 6.8 7s-3 7-6.8 7h8.2c3.8 0 6.8-3.1 6.8-7s-3-7-6.8-7z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="0 0 38 24"><path opacity=".07" enable-background="new" d="M35 0h-32c-1.7 0-3 1.3-3 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3v-18c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-32c-1.1 0-2-.9-2-2v-18c0-1.1.9-2 2-2h32"/><path fill="#EDA024" d="M36.2 24c.7 0 1.8-.7 1.8-2v-6s-4.9 5.9-20.3 8h18.5z"/><path fill="#494949" d="M9 11h20v2h-20z"/><path fill="#EDA024" d="M22 12c0 1.7-1.3 3-3 3s-3-1.4-3-3 1.4-3 3-3c1.7 0 3 1.3 3 3z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="-36 25 38 24" enable-background="new -36 25 38 24"><path fill="#fff" d="M-.283 48.947h-33.157c-1.064 0-1.934-.87-1.934-1.934v-19.171c0-1.064.87-1.934 1.934-1.934h33.157c1.064 0 1.934.87 1.934 1.934v19.171c0 1.064-.87 1.934-1.934 1.934z"/><path fill="#A7A8AB" d="M-.298 49.427h-33.128c-1.344 0-2.436-1.077-2.436-2.4v-19.2c0-1.323 1.092-2.4 2.436-2.4h33.128c1.344 0 2.436 1.077 2.436 2.4v19.2c0 1.323-1.092 2.4-2.436 2.4zm-33.128-23.04c-.806 0-1.462.646-1.462 1.44v19.2c0 .794.656 1.44 1.462 1.44h33.128c.806 0 1.462-.646 1.462-1.44v-19.2c0-.794-.656-1.44-1.462-1.44h-33.128z" opacity=".25"/><circle fill="#CBA747" cx="-17" cy="37" r="7.669"/><path fill="#fff" d="M-12.586 36.004c-.295-1.753-1.7-2.648-2.411-2.878-.711-.227-5.413-.133-5.413-.133-.106.13-.041 1.898-.041 1.898l1.071-.006.021 1.358h-.924c-.059 0-.106.047-.106.106v1.34c0 .059.047.106.106.106h.939c.003.723-.006 1.302-.035 1.313-.08.032-.95-.044-1.036.015-.083.056-.038 1.104-.038 1.505-.003.401.106.384.106.384 4.985-.127 4.864.331 6.269-.511 1.405-.841 1.792-2.742 1.493-4.498zm-5.308 3.099v-1.325l1.601.017c.059 0 .109-.047.109-.106v-1.34c0-.059-.05-.106-.109-.106l-1.601.003v-1.479s3.666-.406 3.666 2.343c0 2.642-3.666 1.993-3.666 1.993z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="0 0 38 24"><path fill="#F37421" d="M38 22.5c0 .828-.672 1.5-1.5 1.5h-35c-.828 0-1.5-.672-1.5-1.5v-21c0-.828.672-1.5 1.5-1.5h35c.828 0 1.5.672 1.5 1.5v21z"/><g fill="#fff"><path d="M13.06 10.72c-.34-.37-.85-.56-1.53-.57h-1.55v4.47h1.55c.68-.02 1.19-.21 1.53-.58.35-.36.52-.92.52-1.66s-.17-1.29-.52-1.66zm-.14 2.47c-.06.22-.16.39-.29.53s-.3.23-.51.3c-.2.06-.44.09-.73.09h-.8v-3.39h.8c.29 0 .53.03.73.09.21.07.38.16.51.3s.23.31.29.53c.06.21.1.47.1.78 0 .3-.03.56-.1.77zm-4.79-.92c-.26-.38-.58-.72-.87-1.09-.29-.38-.6-.75-.81-1.18-.3-.61-.36-1.46.44-2.03l-2.38 1.08c-.54.25-.8.69-.79 1.29.01.57.25 1.06.6 1.49.33.41.67.8 1.02 1.2l.07.09.01.01-.57.26-.4.18c-.72.32-.97.94-.67 1.71.18.46.59.75 1.07.75l.31-.04.01-.01c.12-.04.21-.09.3-.15.79-.35 1.57-.71 2.34-1.08.51-.25.71-.71.72-1.26.01-.46-.14-.84-.4-1.22zm-3.04 3.46l-.24.03c-.37 0-.68-.22-.82-.58-.25-.63-.06-1.1.53-1.37l.4-.18c.2-.09.4-.19.61-.27l.04-.02.21.33c.11.21.19.46.17.74-.03.48-.29 1.07-.9 1.32zm18.45-4.23c-.09-.28-.22-.53-.39-.74-.18-.22-.4-.39-.66-.52-.26-.12-.57-.19-.92-.19-.35 0-.66.07-.93.19-.26.13-.48.3-.66.52-.17.21-.3.46-.39.74-.09.28-.13.57-.13.88s.04.61.13.88c.09.28.22.53.39.74.18.22.4.39.66.51.27.13.58.19.93.19.35 0 .66-.06.92-.19.26-.12.48-.29.66-.51.17-.21.3-.45.39-.74.09-.27.13-.57.13-.88s-.04-.6-.13-.88zm-.71 1.44c-.06.19-.14.36-.25.52-.11.15-.25.28-.42.37-.17.09-.38.14-.62.14s-.45-.05-.62-.14c-.17-.09-.32-.22-.43-.37-.11-.16-.19-.33-.24-.52-.05-.2-.08-.4-.08-.6 0-.2.03-.4.08-.59s.14-.37.24-.52c.11-.15.26-.28.43-.37.17-.09.38-.14.62-.14s.45.05.62.14c.17.09.31.22.42.37.11.15.19.33.25.52.05.19.08.39.08.59 0 .2-.03.4-.08.6zM32.59 10.15h-.76l-1.64 3.93h-2.03v-3.93h-.59v4.47h3.2l.54-1.39h1.81l.46 1.39h.77l-1.76-4.47zm-1.15 2.71l.83-2.12.65 2.12h-1.48zM19.52 10.16l-1.23 4.47h-.46v-.01h-.16l-1.06-3.71-1.05 3.72h-.46v-.01h-.17l-1.24-4.47h.46v.01h.17l.94 3.63 1.01-3.64h.53v.01h.16l1.02 3.63.95-3.64h.42v.01z"/></g><path fill="#fff" d="M27.14 14.08v.54h-2.93v-4.47h.66v3.93z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="38" height="24" viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg"><path d="M3 0C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3H3z" fill="#0076BC"/><path d="M17 1S7.427-1.002 7.078 6.99v9.514c0 1.417-3.078 1.38-3.078 1.38V23s7.03 2.267 8.127-5.104c.177-1.268 0-8.06 0-8.678 0-.62-.783-5.48 4.873-4.103V1z" fill="#fff"/><path fill="#fff" d="M0 9h17v4H0z"/><path d="M.5 9.5v3" stroke="#E5E5E5"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="0 0 38 24"><path opacity=".07" enable-background="new" d="M35 0h-32c-1.7 0-3 1.3-3 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3v-18c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-32c-1.1 0-2-.9-2-2v-18c0-1.1.9-2 2-2h32"/><path fill="#999" d="M0 5h38v4h-38v-4z"/><path opacity=".15" enable-background="new" d="M5 17h10v2h-10v-2zm24 0h4v2h-4v-2z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="0 0 38 24"><path fill="#CE4549" d="M38 21c0 1.7-1.4 3-3.1 3h-31.8c-1.7 0-3.1-1.3-3.1-3v-18c0-1.7 1.4-3 3.1-3h31.8c1.7 0 3.1 1.3 3.1 3v18z"/><path fill="#fff" d="M38 14v-2h-11c.6-.8 1-1.9 1-3 0-2.8-2.2-5-5-5-1.1 0-2.2.4-3 1v-5h-2v12h-3c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3v-4c-.8-.6-1.9-1-3-1-2.8 0-5 2.2-5 5 0 1.1.4 2.2 1 3h-11v2h16.2c-2.5 2.6-6.3 3-8.2 3v2c4.4 0 7.9-1.4 10-4v-1 1 9h2v-9c2.1 2.6 5.6 4 10 4v-2c-1.9 0-5.7-.4-8.2-3h16.2zm-17.6-2h-.4v-3c0-1.7 1.3-3 3-3s3 1.3 3 3-1.3 3-3 3h-2.6z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="-36 25 38 24" enable-background="new -36 25 38 24"><path fill="#fff" d="M-34.762 26.162h18.019v21.578h-18.019z"/><path fill="#213E7A" d="M-.645 25h-32.709c-1.462 0-2.646 1.158-2.646 2.588v18.824c0 1.421 1.183 2.588 2.646 2.588h32.709c1.462 0 2.646-1.167 2.646-2.588v-18.824c0-1.431-1.183-2.588-2.646-2.588zm-16.354 22.588h-16.354c-.664 0-1.203-.527-1.203-1.176v-18.824c0-.649.539-1.176 1.203-1.176h16.354v21.176z"/><path fill="#fff" d="M-11.932 37.691c0 .613-.303 1.034-.806 1.034-.444 0-.814-.421-.814-.983 0-.576.326-1.005.814-1.005.517 0 .806.443.806.953v.001zm-2.951 3.517h1.331v-2.091h.015c.252.458.754.628 1.22.628 1.146 0 1.76-.946 1.76-2.084 0-.931-.584-1.943-1.649-1.943-.606 0-1.169.244-1.435.783h-.015v-.695h-1.228v5.402h.001zm6.144-2.77c0-.37.355-.51.806-.51l.562.022c0 .451-.318.909-.821.909-.31 0-.547-.156-.547-.421zm2.685 1.219c-.059-.303-.074-.606-.074-.909v-1.433c0-1.175-.85-1.596-1.834-1.596-.57 0-1.065.081-1.538.273l.022.901c.37-.207.799-.288 1.228-.288.481 0 .873.14.88.665-.17-.03-.407-.052-.621-.052-.71 0-1.989.141-1.989 1.316 0 .835.68 1.212 1.442 1.212.547 0 .917-.215 1.22-.695h.015l.03.606h1.22-.001zm.598 1.551c.274.059.547.089.828.089 1.221 0 1.509-.939 1.886-1.906l1.413-3.584h-1.331l-.791 2.512h-.015l-.828-2.512h-1.434l1.56 3.938c-.096.34-.347.532-.672.532-.186 0-.348-.022-.525-.081l-.089 1.012h-.002z"/><path fill="#EA2127" d="M-31.294 37.698c0-.524.259-.96.754-.96.599 0 .85.48.85.909 0 .592-.377.99-.85.99-.399 0-.754-.34-.754-.939zm2.891-1.891h-1.206v.694h-.015c-.281-.473-.74-.783-1.309-.783-1.198 0-1.738.857-1.738 2.002 0 1.138.658 1.936 1.716 1.936.532 0 .976-.206 1.294-.658h.015v.207c0 .754-.414 1.116-1.183 1.116-.555 0-.895-.118-1.301-.318l-.067 1.049c.311.11.836.244 1.472.244 1.553 0 2.322-.51 2.322-2.091v-3.399.001zm2.25-1.604h-1.331v.975h1.331v-.975zm-1.331 5.453h1.331v-3.85h-1.331v3.85zm5.037-3.894c-.133-.022-.296-.044-.451-.044-.577 0-.91.31-1.139.798h-.015v-.709h-1.213v3.85h1.331v-1.625c0-.754.348-1.205.969-1.205.155 0 .303 0 .451.044l.067-1.108v-.001zm2.292 3.052c-.614 0-.865-.51-.865-1.079 0-.577.251-1.086.865-1.086s.865.51.865 1.086c0 .569-.252 1.079-.865 1.079zm0 .931c1.272 0 2.24-.739 2.24-2.01 0-1.279-.969-2.017-2.24-2.017-1.272 0-2.241.739-2.241 2.017 0 1.271.969 2.01 2.241 2.01z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="0 0 38 24"><path opacity=".07" enable-background="new" d="M35 0h-32c-1.7 0-3 1.3-3 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3v-18c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-32c-1.1 0-2-.9-2-2v-18c0-1.1.9-2 2-2h32"/><path fill="#98C74C" d="M23 3c.8 0 1.2.7 1.5 1.4 1.9 4.6 2 9.2.1 13.9l-.3.7c-.4.8-1.3 1.2-2.1.9-.9-.3-1.3-1-1.2-2l.3-.8c.9-2.1 1.3-4.3 1.2-6.6 0-.3 0-.6-.2-.9 0-1.3-.5-2.6-1-3.8-.2-.4-.4-.8-.4-1.2.1-.9.7-1.6 1.5-1.6h.6z"/><path fill="#CE4549" d="M16.2 10.5c-.1-1.1-.5-2.1-1-3-.6-1-.2-2.1.8-2.5.7-.3 1.4 0 2 .6.4.7.8 1.5 1.1 2.3.5 1.4.6 2.9.6 4.4-.1 1.7-.6 3.3-1.5 4.8-.5.8-1.2 1.2-2 1-.8-.2-1.3-.9-1.3-1.9 0-.3.2-.6.3-.8.9-1.6 1.2-3.2 1-4.9z"/><path fill="#3086C8" d="M16.2 10.5c.2 1.7-.1 3.4-1 4.9-.1.2-.3.5-.3.8-.2-.8-.3-1.6-.6-2.3-.7-1.6-1.8-2.8-3.3-3.7-.8-.4-1.1-1.1-1-1.7.2-1.2 1.4-1.7 2.4-1.2 1.4.7 2.6 1.7 3.5 2.9l.3.3z"/><path fill="#FFDB43" d="M19.6 12.2c0-1.5-.1-2.9-.6-4.4-.3-.8-.7-1.6-1.1-2.3.2-.1.3.1.4.2 1.4 1 2.7 2.3 3.7 3.7 0 .1.1.1.2.2.2.3.1.6.2.9.1 2.3-.2 4.5-1.2 6.6l-.3.8c-.1-1.3-.1-2.5-.5-3.7-.2-.7-.4-1.4-.8-2z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="0 0 38 24"><path opacity=".07" enable-background="new" d="M35 0h-32c-1.7 0-3 1.3-3 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3v-18c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-32c-1.1 0-2-.9-2-2v-18c0-1.1.9-2 2-2h32"/><path fill="#3086C8" d="M16 16c0 1.1-.9 2-2 2h-2v-10c0-1.1.9-2 2-2h2v10z"/><path fill="#CE4549" d="M21 16c0 1.1-.9 2-2 2h-2v-10c0-1.1.9-2 2-2h2v10z"/><path fill="#98C74C" d="M26 16c0 1.1-.9 2-2 2h-2v-10c0-1.1.9-2 2-2h2v10z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24"><path fill="#4A3D99" d="M38 21c0 1.657-1.379 3-3.081 3h-31.838c-1.702 0-3.081-1.343-3.081-3v-18c0-1.657 1.379-3 3.081-3h31.838c1.702 0 3.081 1.343 3.081 3v18z"/><g fill="#DD52B3"><path d="M16.5 15h5v1h-5zM18 17h2v1h-2zM11 7h16v1h-16zM12.5 9h13v1h-13zM14 11h10v1h-10zM15 13h8v1h-8z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="-36 25 38 24" enable-background="new -36 25 38 24"><path fill="#fff" d="M-.4 49h-33.2c-1.3 0-2.4-1.1-2.4-2.4v-19.2c0-1.3 1.1-2.4 2.4-2.4h33.2c1.3 0 2.4 1.1 2.4 2.4v19.2c0 1.3-1.1 2.4-2.4 2.4z"/><path opacity=".25" fill="#A8AAAD" enable-background="new" d="M-.4 49h-33.2c-1.3 0-2.4-1.1-2.4-2.4v-19.2c0-1.3 1.1-2.4 2.4-2.4h33.1c1.4 0 2.5 1.1 2.5 2.4v19.2c0 1.3-1.1 2.4-2.4 2.4zm-33.2-23c-.8 0-1.4.6-1.4 1.4v19.2c0 .8.6 1.4 1.4 1.4h33.1c.8 0 1.5-.6 1.5-1.4v-19.2c0-.8-.6-1.4-1.4-1.4h-33.2z"/><circle fill="#58595B" cx="-17" cy="37" r="8.2"/><path fill="#fff" d="M-17.8 32.5l-1.2 4.5-1 .4-.3 1.1 1-.4-.7 2.7h6.9l.4-1.6h-4.3l.6-2.2 1.2-.4.3-1.1-1.2.5.9-3.5h-2.6z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="0 0 38 24"><path opacity=".07" enable-background="new" d="M35 0h-32c-1.7 0-3 1.3-3 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3v-18c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-32c-1.1 0-2-.9-2-2v-18c0-1.1.9-2 2-2h32"/><circle fill="#3086C8" cx="15" cy="12" r="7"/><circle fill="#CE4549" cx="23" cy="12" r="7"/><path fill="#7364BC" stroke="#7364BC" stroke-width=".5" d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.3-3 3.4-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z"/><path fill="#fff" d="M12 11h14v2h-14z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="0 0 38 24"><path opacity=".07" enable-background="new" d="M35 0h-32c-1.7 0-3 1.3-3 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3v-18c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-32c-1.1 0-2-.9-2-2v-18c0-1.1.9-2 2-2h32"/><circle fill="#CE4549" cx="15" cy="12" r="7"/><circle fill="#FFAA2E" cx="23" cy="12" r="7"/><path fill="#f73" d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.3-3 3.4-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z"/><path fill="#fff" d="M12 11h14v2h-14z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="0 0 38 24"><path opacity=".07" enable-background="new" d="M35 0h-32c-1.7 0-3 1.3-3 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3v-18c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-32c-1.1 0-2-.9-2-2v-18c0-1.1.9-2 2-2h32"/><path fill="#003087" d="M23.9 8.3c.2-1 0-1.7-.6-2.3-.6-.7-1.7-1-3.1-1h-4.1c-.3 0-.5.2-.6.5l-1.5 10.1c0 .2.1.4.3.4h2.7l.4-3.4 1.8-2.2 4.7-2.1z"/><path fill="#3086C8" d="M23.9 8.3l-.2.2c-.5 2.8-2.2 3.8-4.6 3.8h-1.1c-.3 0-.5.2-.6.5l-.6 3.9-.2 1c0 .2.1.4.3.4h2.1c.3 0 .5-.2.5-.4v-.1l.4-2.4v-.1c0-.2.3-.4.5-.4h.3c2.1 0 3.7-.8 4.1-3.2.2-1 .1-1.8-.4-2.4-.1-.5-.3-.7-.5-.8z"/><path fill="#012169" d="M23.3 8.1c-.1-.1-.2-.1-.3-.1-.1 0-.2 0-.3-.1-.3-.1-.7-.1-1.1-.1h-3c-.1 0-.2 0-.2.1-.2.1-.3.2-.3.4l-.7 4.4v.1c0-.3.3-.5.6-.5h1.3c2.5 0 4.1-1 4.6-3.8v-.2c-.1-.1-.3-.2-.5-.2h-.1z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="-36 25 38 24" enable-background="new -36 25 38 24"><path fill="#fff" d="M-.421 48.453h-33.157c-1.064 0-1.934-.87-1.934-1.934v-19.171c0-1.064.87-1.934 1.934-1.934h33.157c1.064 0 1.934.87 1.934 1.934v19.171c0 1.064-.87 1.934-1.934 1.934z"/><path fill="#A7A8AB" d="M-.436 48.933h-33.128c-1.344 0-2.436-1.077-2.436-2.4v-19.2c0-1.323 1.092-2.4 2.436-2.4h33.128c1.344 0 2.436 1.077 2.436 2.4v19.2c0 1.323-1.092 2.4-2.436 2.4zm-33.128-23.04c-.806 0-1.462.646-1.462 1.44v19.2c0 .794.656 1.44 1.462 1.44h33.128c.806 0 1.462-.646 1.462-1.44v-19.2c0-.794-.656-1.44-1.462-1.44h-33.128z" opacity=".25"/><g fill="#EE8122"><path d="M-20.89 33.046l.383.099c.446.133.747.5.74.964-.018 1.198-.503 2.195-1.414 2.958-.546.457-1.212.569-1.906.394-.483-.122-.763-.476-.789-.972-.048-.898.318-1.656.842-2.345.441-.579 1.011-.968 1.755-1.054l.094-.044h.295zm-.072 1.453c.009-.387-.193-.57-.487-.473-.183.061-.378.174-.497.321-.178.22-.319.479-.428.742-.125.302-.218.621-.288.941-.09.407.145.632.549.528.146-.037.309-.128.399-.245.43-.557.612-1.219.752-1.815zM-13.673 33.046l.384.098c.44.128.704.459.747.914.063.667-.18 1.254-.466 1.829-.26.523-.599.986-1.106 1.299-.538.332-1.121.437-1.735.277-.514-.134-.797-.518-.807-1.048-.027-1.359 1.002-2.874 2.206-3.244l.483-.125h.295zm-.069 1.484c.006-.437-.185-.584-.514-.503-.273.067-.449.255-.592.476-.299.465-.488.975-.578 1.521-.076.461.195.686.635.518.107-.041.218-.114.287-.203.438-.561.624-1.227.761-1.809zM-29.197 37.425c.116-.317.216-.623.344-.917.026-.06.152-.108.232-.108.78-.008 1.561-.003 2.341-.007l.375-.039c.181-.027.271-.15.282-.318.011-.158-.105-.234-.242-.276l-.501-.157c-.269-.108-.504-.264-.56-.577-.018-.099-.006-.209.016-.309.091-.41.256-.787.53-1.109.257-.302.602-.448.985-.455.928-.017 1.856-.008 2.784-.009l.024.007c-.275.297-.55.603-.836.897-.049.051-.147.074-.223.075l-1.371.005c-.09.001-.199-.004-.264.043-.092.067-.207.179-.208.273-.001.092.111.216.205.27.13.075.292.093.438.143.53.182.716.516.597 1.063-.187.86-.799 1.447-1.68 1.492-1.058.054-2.12.034-3.181.044l-.086-.033zM-13.088 37.462l.411-1.147c.356-.982.719-1.962 1.065-2.947.063-.18.151-.234.333-.229l1.391.009c.153.003.309.022.457.058.576.141.799.534.647 1.111-.144.549-.501.913-.993 1.162l-.227.114c.172.572.331 1.122.504 1.667.056.176-.005.208-.162.204-.316-.007-.633-.011-.949.002-.158.007-.224-.05-.256-.2-.08-.377-.173-.751-.262-1.125l-.073-.213-.119.253c-.142.374-.286.747-.418 1.123-.042.12-.105.162-.23.16-.357-.007-.714-.003-1.122-.003zm2.019-2.392c.434.056.781.006.994-.368.097-.17.205-.359.098-.553-.105-.19-.315-.146-.494-.15l-.125.004-.094.066-.378 1zM-20.35 37.462l.165-.479.998-2.749c.276-.757.743-1.089 1.54-1.091l2.172-.001h.136c-.304.309-.609.624-.922.93-.042.041-.127.052-.192.053-.373.005-.745.01-1.118-.001-.215-.006-.348.076-.41.281l-.154.468h1.156c-.104.285-.188.535-.291.778-.019.044-.109.079-.168.081-.274.009-.549.012-.822.001-.153-.006-.227.054-.276.195l-.489 1.367c-.044.128-.112.173-.246.169-.35-.008-.7-.003-1.08-.003zM-7.537 34.127c-.252 0-.448.008-.642-.005-.055-.004-.152-.072-.152-.11-.001-.318-.113-.589-.331-.85h4.186c-.113.312-.211.602-.328.884-.019.046-.125.078-.192.079-.379.007-.759.015-1.138-.001-.187-.008-.271.059-.332.232l-1.047 2.91c-.054.153-.127.208-.287.202-.299-.012-.599-.003-.941-.003l1.204-3.335z"/></g><g fill="#231F20"><path d="M-28.212 39.864l-.025.174-.071.151-.111.122-.148.087.118.044.094.079.061.112.022.143-.021.16-.064.153-.107.135-.15.109-.192.072-.246.026h-.515l-.074-.025-.011-.08.346-1.734.048-.082.078-.023h.418l.249.025.168.073.1.119.033.162zm-.334.929c0-.083-.03-.148-.089-.193-.059-.046-.15-.068-.274-.068h-.332l-.135.685h.362l.208-.035.142-.093.087-.134.03-.161zm.059-.882l-.017-.089-.053-.067-.093-.044-.148-.016h-.274l-.125.63h.293l.195-.039.125-.1.072-.134.023-.141zM-26.557 41.338l.002.053-.017.031-.044.014-.081.003-.057-.002-.037-.008-.019-.014-.008-.023-.072-.473h-.81l-.254.469-.017.025-.027.016-.045.008-.068.002-.072-.004-.038-.014-.006-.031.021-.053 1.013-1.806.023-.027.032-.017.05-.008.074-.002.08.002.05.008.026.017.011.028.292 1.806zm-.506-1.594h-.002l-.526.969h.673l-.146-.969zM-24.764 41.323l-.018.051-.031.035-.037.02-.039.006h-.098l-.066-.009-.047-.031-.036-.057-.034-.088-.365-1.037-.074-.222-.071-.222h-.003l-.042.245-.047.243-.225 1.133-.011.021-.024.014-.041.009-.059.004-.058-.004-.035-.009-.016-.014-.001-.021.358-1.794.05-.086.077-.026h.119l.063.008.047.027.035.05.033.079.368 1.05.068.195.067.197h.003l.046-.255.049-.255.212-1.053.011-.02.023-.014.038-.009.059-.003.058.003.036.009.017.014.003.02-.361 1.796zM-22.656 39.525l-.016.042-.049.054-.807.787.509.906.019.041.005.028-.006.024-.02.017-.041.01-.067.004-.068-.003-.042-.008-.024-.015-.014-.023-.532-.971-.192.972-.01.021-.025.014-.042.009-.062.004-.062-.004-.038-.009-.018-.014-.002-.021.373-1.868.011-.02.026-.014.042-.009.062-.004.061.004.038.009.018.014.003.02-.173.866.851-.863.026-.023.033-.015.046-.008.063-.003.063.004.038.01.019.015.005.021zM-22.402 41.392l-.01.02-.025.014-.042.009-.062.004-.063-.004-.038-.009-.018-.014-.002-.02.373-1.869.011-.02.026-.014.041-.009.061-.004.06.004.038.009.019.014.002.02-.373 1.869zM-20.406 41.323l-.018.051-.031.035-.037.02-.039.006h-.098l-.066-.009-.047-.031-.036-.057-.034-.088-.365-1.037-.074-.222-.071-.222h-.003l-.042.245-.047.243-.225 1.133-.011.021-.024.014-.041.009-.059.004-.058-.004-.035-.009-.016-.014-.001-.021.358-1.794.05-.086.077-.026h.119l.063.008.047.027.035.05.033.079.368 1.05.068.195.067.197h.003l.046-.255.049-.255.212-1.053.011-.02.023-.014.038-.009.059-.003.058.003.036.009.017.014.003.02-.361 1.796zM-18.106 39.697l-.002.026-.006.033-.01.036-.014.033-.017.023-.02.008-.061-.027-.102-.061-.156-.062-.219-.028-.25.04-.214.11-.174.165-.13.207-.081.235-.028.249.038.234.11.171.174.104.228.035.195-.022.189-.067.113-.564h-.449l-.028-.013-.01-.037.002-.028.006-.035.011-.036.016-.032.02-.023.025-.008h.618l.061.029.008.077-.15.748-.016.046-.022.031-.068.04-.138.053-.188.047-.219.02c-.13 0-.245-.017-.344-.05-.099-.034-.182-.082-.249-.147-.067-.064-.118-.142-.153-.233-.035-.091-.053-.194-.053-.31 0-.107.012-.213.037-.316l.106-.295c.046-.093.103-.179.171-.258.068-.079.145-.147.233-.204.088-.057.184-.102.289-.135.105-.033.219-.05.341-.05l.197.019.164.045.122.058.068.048.024.032.006.038z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="-36 25 38 24" enable-background="new -36 25 38 24"><path fill="#005B9A" d="M-36 46.8v.7-.7zm17.7-21.8v24h-7.2c-1.3 0-2.1-1-1.8-2.3l4.4-19.4c.3-1.3 1.9-2.3 3.2-2.3h1.4zm12.6 0c-1.3 0-2.9 1-3.2 2.3l-4.5 19.4c-.3 1.3.5 2.3 1.8 2.3h-4.9v-24h10.8z"/><path fill="#E9292D" d="M-19.7 25c-1.3 0-2.9 1.1-3.2 2.3l-4.4 19.4c-.3 1.3.5 2.3 1.8 2.3h-8.9c-.8 0-1.5-.6-1.5-1.4v-21c0-.8.7-1.6 1.5-1.6h14.7z"/><path fill="#0E73B9" d="M-5.7 25c-1.3 0-2.9 1.1-3.2 2.3l-4.4 19.4c-.3 1.3.5 2.3 1.8 2.3h-14.5.5c-1.3 0-2.1-1-1.8-2.3l4.4-19.4c.3-1.3 1.9-2.3 3.2-2.3h14z"/><path fill="#059DA4" d="M2 26.6v21c0 .8-.6 1.4-1.5 1.4h-12.1c-1.3 0-2.1-1.1-1.8-2.3l4.5-19.4c.3-1.3 1.9-2.3 3.2-2.3h6.2c.9 0 1.5.7 1.5 1.6z"/><path fill="#fff" d="M-21.122 38.645h.14c.14 0 .28-.07.28-.14l.42-.63h1.19l-.21.35h1.4l-.21.63h-1.68c-.21.28-.42.42-.7.42h-.84l.21-.63m-.21.91h3.01l-.21.7h-1.19l-.21.7h1.19l-.21.7h-1.19l-.28 1.05c-.07.14 0 .28.28.21h.98l-.21.7h-1.89c-.35 0-.49-.21-.35-.63l.35-1.33h-.77l.21-.7h.77l.21-.7h-.7l.21-.7zm4.83-1.75v.42s.56-.42 1.12-.42h1.96l-.77 2.66c-.07.28-.35.49-.77.49h-2.24l-.49 1.89c0 .07 0 .14.14.14h.42l-.14.56h-1.12c-.42 0-.56-.14-.49-.35l1.47-5.39h.91zm1.68.77h-1.75l-.21.7s.28-.21.77-.21h1.05l.14-.49zm-.63 1.68c.14 0 .21 0 .21-.14l.14-.35h-1.75l-.14.56 1.54-.07zm-1.19.84h.98v.42h.28c.14 0 .21-.07.21-.14l.07-.28h.84l-.14.49c-.07.35-.35.49-.77.56h-.56v.77c0 .14.07.21.35.21h.49l-.14.56h-1.19c-.35 0-.49-.14-.49-.49l.07-2.1zm4.2-2.45l.21-.84h1.19l-.07.28s.56-.28 1.05-.28h1.47l-.21.84h-.21l-1.12 3.85h.21l-.21.77h-.21l-.07.35h-1.19l.07-.35h-2.17l.21-.77h.21l1.12-3.85h-.28m1.26 0l-.28 1.05s.49-.21.91-.28c.07-.35.21-.77.21-.77h-.84zm-.49 1.54l-.28 1.12s.56-.28.98-.28c.14-.42.21-.77.21-.77l-.91-.07zm.21 2.31l.21-.77h-.84l-.21.77h.84zm2.87-4.69h1.12l.07.42c0 .07.07.14.21.14h.21l-.21.7h-.77c-.28 0-.49-.07-.49-.35l-.14-.91zm-.35 1.47h3.57l-.21.77h-1.19l-.21.7h1.12l-.21.77h-1.26l-.28.42h.63l.14.84c0 .07.07.14.21.14h.21l-.21.7h-.7c-.35 0-.56-.07-.56-.35l-.14-.77-.56.84c-.14.21-.35.35-.63.35h-1.05l.21-.7h.35c.14 0 .21-.07.35-.21l.84-1.26h-1.05l.21-.77h1.19l.21-.7h-1.19l.21-.77zm-19.74-5.04c-.14.7-.42 1.19-.91 1.54-.49.35-1.12.56-1.89.56-.7 0-1.26-.21-1.54-.56-.21-.28-.35-.56-.35-.98 0-.14 0-.35.07-.56l.84-3.92h1.19l-.77 3.92v.28c0 .21.07.35.14.49.14.21.35.28.7.28s.7-.07.91-.28c.21-.21.42-.42.49-.77l.77-3.92h1.19l-.84 3.92m1.12-1.54h.84l-.07.49.14-.14c.28-.28.63-.42 1.05-.42.35 0 .63.14.77.35.14.21.21.49.14.91l-.49 2.38h-.91l.42-2.17c.07-.28.07-.49 0-.56-.07-.14-.21-.14-.35-.14-.21 0-.42.07-.56.21-.14.14-.28.35-.28.63l-.42 2.03h-.91l.63-3.57m9.8 0h.84l-.07.49.14-.14c.28-.28.63-.42 1.05-.42.35 0 .63.14.77.35s.21.49.14.91l-.49 2.38h-.91l.42-2.24c.07-.21 0-.42-.07-.49-.07-.14-.21-.14-.35-.14-.21 0-.42.07-.56.21-.14.14-.28.35-.28.63l-.42 2.03h-.91l.7-3.57m-5.81 0h.98l-.77 3.5h-.98l.77-3.5m.35-1.33h.98l-.21.84h-.98l.21-.84zm1.4 4.55c-.21-.21-.35-.56-.35-.98v-.21c0-.07 0-.21.07-.28.14-.56.35-1.05.7-1.33.35-.35.84-.49 1.33-.49.42 0 .77.14 1.05.35.21.21.35.56.35.98v.21c0 .07 0 .21-.07.28-.14.56-.35.98-.7 1.33-.35.35-.84.49-1.33.49-.35 0-.7-.14-1.05-.35m1.89-.7c.14-.21.28-.49.35-.84v-.35c0-.21-.07-.35-.14-.49-.14-.14-.28-.21-.49-.21-.28 0-.49.07-.63.28-.14.21-.28.49-.35.84v.28c0 .21.07.35.14.49.14.14.28.21.49.21.28.07.42 0 .63-.21m6.51-4.69h2.52c.49 0 .84.14 1.12.35.28.21.35.56.35.91v.28c0 .07 0 .21-.07.28-.07.49-.35.98-.7 1.26-.42.35-.84.49-1.4.49h-1.4l-.42 2.03h-1.19l1.19-5.6m.56 2.59h1.12c.28 0 .49-.07.7-.21.14-.14.28-.35.35-.63v-.28c0-.21-.07-.35-.21-.42-.14-.07-.35-.14-.7-.14h-.91l-.35 1.68zm8.68 3.71c-.35.77-.7 1.26-.91 1.47-.21.21-.63.7-1.61.7l.07-.63c.84-.28 1.26-1.4 1.54-1.96l-.28-3.78h1.19l.07 2.38.91-2.31h1.05l-2.03 4.13m-2.94-3.85l-.42.28c-.42-.35-.84-.56-1.54-.21-.98.49-1.89 4.13.91 2.94l.14.21h1.12l.7-3.29-.91.07m-.56 1.82c-.21.56-.56.84-.91.77-.28-.14-.35-.63-.21-1.19.21-.56.56-.84.91-.77.28.14.35.63.21 1.19"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="0 0 38 24"><path opacity=".07" enable-background="new" d="M35 0h-32c-1.7 0-3 1.3-3 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3v-18c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2h-32c-1.1 0-2-.9-2-2v-18c0-1.1.9-2 2-2h32"/><g fill="#142688"><path d="M28.3 10.1h-.3c-.4 1-.7 1.5-1 3h1.9c-.3-1.5-.3-2.2-.6-3zm2.9 5.9h-1.7000000000000002c-.1 0-.1 0-.2-.1l-.2-.9-.1-.2h-2.4c-.1 0-.2 0-.2.2l-.3.9c0 .1-.1.1-.1.1h-2.1l.2-.5 2.9-6.8c0-.5.3-.7.8-.7h1.5c.1 0 .2 0 .2.2l1.4 6.5c.1.4.2.7.2 1.1.1.1.1.1.1.2zM17.8 15.7l.4-1.8c.1 0 .2.1.2.1.7.3 1.4.5 2.1.4.2 0 .5-.1.7-.2.5-.2.5-.7.1-1.1-.2-.2-.5-.3-.8-.5-.4-.2-.8-.4-1.1-.7-1.2-1-.8-2.4-.1-3.1.6-.4.9-.8 1.7-.8 1.2 0 2.5 0 3.1.2h.1c-.1.6-.2 1.1-.4 1.7-.5-.2-1-.4-1.5-.4-.3 0-.6 0-.9.1-.2 0-.3.1-.4.2-.2.2-.2.5 0 .7l.5.4c.4.2.8.4 1.1.6.5.3 1 .8 1.1 1.4.2.9-.1 1.7-.9 2.3-.5.4-.7.6-1.4.6-1.4 0-2.5.1-3.4-.2-.1.2-.1.2-.2.1zM14.3 16c.1-.7.1-.7.2-1 .5-2.2 1-4.5 1.4-6.7.1-.2.1-.3.3-.3h1.8c-.2 1.2-.4 2.1-.7 3.2-.3 1.5-.6 3-1 4.5 0 .2-.1.2-.3.2"/><path d="M5 8.2c0-.1.2-.2.3-.2h3.4c.5 0 .9.3 1 .8l.9 4.4c0 .1 0 .1.1.2 0-.1.1-.1.1-.1l2.1-5.1c-.1-.1 0-.2.1-.2h2.1c0 .1 0 .1-.1.2l-3.1 7.3c-.1.2-.1.3-.2.4-.1.1-.3 0-.5 0h-1.5c-.1 0-.2 0-.2-.2l-1.6-6.2c-.2-.2-.5-.5-.9-.6-.6-.3-1.7-.5-1.9-.5l-.1-.2z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="38" height="24" viewBox="-36 25 38 24" enable-background="new -36 25 38 24"><path fill="#005B9B" d="M2 47.5c0 .8-.7 1.5-1.5 1.5h-35c-.8 0-1.5-.7-1.5-1.5v-21c0-.8.7-1.5 1.5-1.5h35c.8 0 1.5.7 1.5 1.5v21z"/><path fill="#FBAA28" d="M-24.5 38c3.4-1.4 8.1-2.8 14.3-1.4l.1-1.6c-6.6-.7-11.3 1.4-14.4 2.9v.1z"/><path fill="#fff" d="M-30.6 39.1h3.2v1h-2v.9h2v.9h-2v.9h2v.9h-3.2v-4.6zm4-.3h1.2v5h-1.2v-5zm5.1 4.6c-.4.3-1 .5-1.5.5-1.2 0-1.8-.9-1.8-1.7 0-1 .8-1.9 1.8-1.9 1.3 0 1.7.9 1.7 2.1h-2.3c0 .3.2.7.8.7.4 0 .6-.1.9-.3l.4.6zm-.8-1.8c0-.3-.2-.7-.6-.7-.4 0-.6.3-.7.7h1.3zm4.5 1.9c-.3.2-.8.3-1.2.3-1.1 0-1.8-.6-1.8-1.7s.8-1.9 1.9-1.9c.4 0 .9.1 1.1.3l-.4.8c-.2-.1-.4-.1-.5-.1-.6 0-1 .3-1 .9 0 .5.4.9.9.9.2 0 .4-.1.6-.2l.4.7zm.4-3.1h.5v-1.1h1.1v1.1h.9v.8h-.9v1.2c0 .3.1.4.3.4.2 0 .3-.1.4-.2l.3.8c-.3.2-.7.3-1.1.3-.9 0-1-.6-1-1.4v-1.3h-.5v-.6zm3.2 0h1.2v.5c.2-.3.4-.6.8-.6h.4l-.2 1.2c-.1 0-.2-.1-.4-.1-.4 0-.7.3-.7.4v1.9h-1.2l.1-3.3zm4.5-.1c1.2 0 1.9.8 1.9 1.8s-.6 1.8-1.9 1.8c-1.2 0-1.9-.8-1.9-1.8s.6-1.8 1.9-1.8m0 2.7c.6 0 .7-.5.7-.9s-.2-.9-.7-.9c-.6 0-.7.5-.7.9s.1.9.7.9M-7.2 40.4h1.2v.4c.3-.3.7-.5 1.1-.5.7 0 1.1.4 1.1 1.3v2.2h-1.2v-2c0-.3-.1-.5-.4-.5-.2 0-.5.2-.6.3v2.2h-1.2v-3.4zm-13.9-6.9l1.5-4.8h1.3l-1.5 4.8h-1.3zm-.5-4.8l-1.2 2c-.3.5-.5.8-.6 1.1v-1.3l-.1-1.9h-2.2v.1c.6 0 .9.3 1 .9l.4 3.8h1.3l2.7-4.8h-1.3v.1zm10.1 4.8v-.7h-1.6l-.3.7h-1.4l2.6-4.8h1.7l.4 4.8h-1.4zm-.2-2.9v-1.1c-.1.2-.4 1-.6 1.3l-.5 1.1h1.1v-1.3zm-5.2 3c-.9 0-1.5-.3-2-.6l.6-.9c.4.2.7.5 1.4.5.2 0 .4-.1.6-.3.2-.3 0-.5-.5-.8l-.3-.2c-.8-.5-1.1-1-.7-1.9.2-.5.8-1 1.8-1 .7 0 1.3.3 1.7.6l-.7 1c-.4-.3-.7-.4-1-.4s-.5.1-.6.2c-.1.3 0 .5.4.7l.3.2c.9.6 1.2 1.2.9 1.7-.4 1-1.1 1.2-1.9 1.2"/></svg>
@@ -0,0 +1,27 @@
1
+ class PaymentIcon < FrozenRecord::Base
2
+ self.base_path = File.expand_path('../../db/', __dir__)
3
+
4
+ def path
5
+ "payment_icons/#{name}.svg"
6
+ end
7
+
8
+ def self.find_by_group(group)
9
+ where(group: group)
10
+ end
11
+
12
+ def self.credit_cards
13
+ where(group: 'credit_cards')
14
+ end
15
+
16
+ def self.cryptocurrencies
17
+ where(group: 'cryptocurrencies')
18
+ end
19
+
20
+ def self.bank_transfers
21
+ where(group: 'bank_transfers')
22
+ end
23
+
24
+ def self.wallets
25
+ where(group: 'wallets')
26
+ end
27
+ end
@@ -0,0 +1,88 @@
1
+ -
2
+ name: visa
3
+ label: Visa
4
+ group: credit_cards
5
+ -
6
+ name: master
7
+ label: MasterCard
8
+ group: credit_cards
9
+ -
10
+ name: discover
11
+ label: Discover
12
+ group: credit_cards
13
+ -
14
+ name: american-express
15
+ label: American Express
16
+ group: credit_cards
17
+ -
18
+ name: diners-club
19
+ label: Diners Club
20
+ group: credit_cards
21
+ -
22
+ name: jcb
23
+ label: JCB
24
+ group: credit_cards
25
+ -
26
+ name: bitcoin
27
+ label: Bitcoin
28
+ group: cryptocurrencies
29
+ -
30
+ name: dogecoin
31
+ label: Dogecoin
32
+ group: cryptocurrencies
33
+ -
34
+ name: litecoin
35
+ label: Litecoin
36
+ group: cryptocurrencies
37
+ -
38
+ name: amazon
39
+ label: Amazon
40
+ group: wallets
41
+ -
42
+ name: boleto
43
+ label: Boleto
44
+ group: bank_transfers
45
+ -
46
+ name: dankort
47
+ label: Dankort
48
+ group: bank_transfers
49
+ -
50
+ name: dwolla
51
+ label: Dwolla
52
+ group: bank_transfers
53
+ -
54
+ name: forbrugsforeningen
55
+ label: Forbrugsforeningen
56
+ group: bank_transfers
57
+ -
58
+ name: giropay
59
+ label: Giropay
60
+ group: bank_transfers
61
+ -
62
+ name: google-wallet
63
+ label: Google Wallet
64
+ group: wallets
65
+ -
66
+ name: laser
67
+ label: Laser
68
+ group: bank_transfers
69
+ -
70
+ name: paypal
71
+ label: Paypal
72
+ group: wallets
73
+ -
74
+ name: sofort
75
+ label: Sofort
76
+ group: bank_transfers
77
+ -
78
+ name: maestro
79
+ label: Maestro
80
+ group: bank_transfers
81
+ -
82
+ name: unionpay
83
+ label: Union Pay
84
+ group: bank_transfers
85
+ -
86
+ name: visaelectron
87
+ label: Visa Electron
88
+ group: bank_transfers
@@ -0,0 +1,5 @@
1
+ module PaymentIcons
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace PaymentIcons
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module PaymentIcons
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,5 @@
1
+ require 'payment_icons/engine'
2
+ require 'frozen_record'
3
+
4
+ module PaymentIcons
5
+ end
@@ -0,0 +1,3 @@
1
+ == Test App
2
+
3
+ This is a sample rails app generated by the rails engine to test the payment_icons engine's functionality.
@@ -0,0 +1,3 @@
1
+ require File.expand_path('../config/application', __FILE__)
2
+
3
+ Rails.application.load_tasks
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery with: :exception
3
+ end
@@ -0,0 +1,5 @@
1
+ class IconsController < ApplicationController
2
+
3
+ def show
4
+ end
5
+ end
@@ -0,0 +1,14 @@
1
+ Hello there
2
+ <div>
3
+ <% PaymentIcon.credit_cards.each do |card| %>
4
+ <%= image_tag card.path, id: "#{card.name}" %>
5
+ <% end %>
6
+ </div>
7
+
8
+ <div>
9
+ <% PaymentIcon.cryptocurrencies.each do |currency| %>
10
+ <%= image_tag currency.path, id: "#{currency.name}" %>
11
+ <% end %>
12
+ </div>
13
+
14
+ <%= image_tag "chocolate.png", id: "chocolate" %>
@@ -0,0 +1,12 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= csrf_meta_tags %>
6
+ </head>
7
+ <body>
8
+
9
+ <%= yield %>
10
+
11
+ </body>
12
+ </html>
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
+ load Gem.bin_path('bundler', 'bundle')
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
3
+ require_relative '../config/boot'
4
+ require 'rails/commands'
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require_relative '../config/boot'
3
+ require 'rake'
4
+ Rake.application.run
@@ -0,0 +1,21 @@
1
+ #!/usr/bin/env ruby
2
+ require 'pathname'
3
+
4
+ APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
5
+
6
+ Dir.chdir APP_ROOT do
7
+
8
+ puts "== Installing dependencies =="
9
+ system "gem install bundler --conservative"
10
+ system "bundle check || bundle install"
11
+
12
+ puts "\n== Preparing database =="
13
+ system "bin/rake db:setup"
14
+
15
+ puts "\n== Removing old logs and tempfiles =="
16
+ system "rm -f log/*"
17
+ system "rm -rf tmp/cache"
18
+
19
+ puts "\n== Restarting application server =="
20
+ system "touch tmp/restart.txt"
21
+ end
@@ -0,0 +1,12 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'action_controller/railtie'
4
+ require 'action_view/railtie'
5
+ require 'sprockets/railtie'
6
+ require 'payment_icons'
7
+
8
+ module Dummy
9
+ class Application < Rails::Application
10
+ end
11
+ end
12
+
@@ -0,0 +1,4 @@
1
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
2
+
3
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
4
+ $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,3 @@
1
+ require File.expand_path('../application', __FILE__)
2
+
3
+ Rails.application.initialize!
@@ -0,0 +1,16 @@
1
+ Rails.application.configure do
2
+ config.cache_classes = false
3
+
4
+ config.eager_load = false
5
+
6
+ config.consider_all_requests_local = true
7
+ config.action_controller.perform_caching = false
8
+
9
+ config.active_support.deprecation = :log
10
+
11
+ config.assets.debug = true
12
+
13
+ config.assets.digest = true
14
+
15
+ config.assets.raise_runtime_errors = true
16
+ end
@@ -0,0 +1,26 @@
1
+ Rails.application.configure do
2
+ config.cache_classes = true
3
+
4
+ config.eager_load = true
5
+
6
+ config.consider_all_requests_local = false
7
+ config.action_controller.perform_caching = true
8
+
9
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
10
+
11
+ config.assets.js_compressor = :uglifier
12
+
13
+ config.assets.compile = false
14
+
15
+ config.assets.digest = true
16
+
17
+ config.log_level = :debug
18
+
19
+ config.i18n.fallbacks = true
20
+
21
+ config.active_support.deprecation = :notify
22
+
23
+ config.log_formatter = ::Logger::Formatter.new
24
+
25
+ config.active_record.dump_schema_after_migration = false
26
+ end
@@ -0,0 +1,22 @@
1
+ Rails.application.configure do
2
+
3
+ config.cache_classes = true
4
+
5
+ config.eager_load = false
6
+
7
+ config.serve_static_files = true
8
+ config.static_cache_control = 'public, max-age=3600'
9
+ config.assets.digest = true
10
+
11
+ config.consider_all_requests_local = true
12
+ config.action_controller.perform_caching = false
13
+
14
+ config.action_dispatch.show_exceptions = false
15
+
16
+ config.action_controller.allow_forgery_protection = false
17
+
18
+ config.active_support.test_order = :random
19
+
20
+ config.active_support.deprecation = :stderr
21
+
22
+ end
@@ -0,0 +1,9 @@
1
+ # Version of your assets, change this if you want to expire all your assets.
2
+ Rails.application.config.assets.version = '1.0'
3
+
4
+ # Add additional assets to the asset load path
5
+ # Rails.application.config.assets.paths << Emoji.images_path
6
+
7
+ # Precompile additional assets.
8
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
9
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1 @@
1
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1 @@
1
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,7 @@
1
+ # This file contains settings for ActionController::ParamsWrapper which
2
+ # is enabled by default.
3
+
4
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
5
+ ActiveSupport.on_load(:action_controller) do
6
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
7
+ end
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ get '/icon', to: 'icons#show'
3
+ end
@@ -0,0 +1,8 @@
1
+ development:
2
+ secret_key_base: a3ea3a27ee8dc41206b2ede21d229d60a592b992704175f6026aeebc2340e19b6bbc95d46d774ee10059912d787bd113e97dde9ec566ea4eae819d9fe5da8f3c
3
+
4
+ test:
5
+ secret_key_base: b9f2454cb99507df3a56ec32704d0d1486c67c170a85026be325027b8223cb78441cbb72f9be718966719021657e74051a7b952a172cd7d398efa840d8264da9
6
+
7
+ production:
8
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,2 @@
1
+ require ::File.expand_path('../config/environment', __FILE__)
2
+ run Rails.application
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1,29 @@
1
+ require 'test_helper'
2
+
3
+ class IconsControllerTest < ActionController::TestCase
4
+
5
+ test 'can find all payment icon assets' do
6
+ PaymentIcon.all.each do |icon|
7
+ assert_not_nil Rails.application.assets.find_asset("payment_icons/#{icon.name}.svg")
8
+ end
9
+ end
10
+
11
+ test 'show page has digested image tags for all credit card icons' do
12
+ get :show
13
+ PaymentIcon.credit_cards.each do |card|
14
+ assert_select "##{card.name}" do |element|
15
+ assert_select "[src=?]", "/assets/#{Rails.application.assets.find_asset("payment_icons/#{card.name}.svg").digest_path}"
16
+ end
17
+ end
18
+ end
19
+
20
+ test 'show page has digested image tags for all cryptocurrency icons' do
21
+ get :show
22
+ PaymentIcon.cryptocurrencies.each do |currency|
23
+ assert_select "##{currency.name}" do |element|
24
+ assert_select "[src=?]", "/assets/#{Rails.application.assets.find_asset("payment_icons/#{currency.name}.svg").digest_path}"
25
+ end
26
+ end
27
+ end
28
+
29
+ end
@@ -0,0 +1,13 @@
1
+ ENV['RAILS_ENV'] = 'test'
2
+
3
+ require File.expand_path('../../test/dummy/config/environment.rb', __FILE__)
4
+ require "rails/test_help"
5
+
6
+ Minitest.backtrace_filter = Minitest::BacktraceFilter.new
7
+
8
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
9
+
10
+ if ActiveSupport::TestCase.respond_to?(:fixture_path=)
11
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
12
+ ActiveSupport::TestCase.fixtures :all
13
+ end
@@ -0,0 +1,34 @@
1
+ require 'test_helper'
2
+
3
+ class PaymentIconTest < ActiveSupport::TestCase
4
+
5
+ test '#all returns some records' do
6
+ refute PaymentIcon.all.empty?
7
+ end
8
+
9
+ test '#credit_cards returns all icons of group credit card' do
10
+ assert_equal ['visa', 'master', 'discover', 'american-express', 'diners-club', 'jcb'], PaymentIcon.credit_cards.pluck(:name)
11
+ end
12
+
13
+ test '#cryptocurrencies returns all icons of group cryptocurrencies' do
14
+ assert_equal ['bitcoin', 'dogecoin', 'litecoin'], PaymentIcon.cryptocurrencies.pluck(:name)
15
+ end
16
+
17
+ test '#bank_transfers returns all icons of group bank_transfers' do
18
+ assert_equal ['boleto', 'dankort', 'dwolla', 'forbrugsforeningen', 'giropay', 'laser', 'sofort', 'maestro', 'unionpay', 'visaelectron'], PaymentIcon.bank_transfers.pluck(:name)
19
+ end
20
+
21
+ test '#wallets returns all icons of group wallets' do
22
+ assert_equal ['amazon', 'google-wallet', 'paypal'], PaymentIcon.wallets.pluck(:name)
23
+ end
24
+
25
+ test '#find_by_group returns all icons of group passed' do
26
+ assert_equal ['boleto', 'dankort', 'dwolla', 'forbrugsforeningen', 'giropay', 'laser', 'sofort', 'maestro', 'unionpay', 'visaelectron'], PaymentIcon.find_by_group('bank_transfers').pluck(:name)
27
+ end
28
+
29
+ test '#path returns path within app/assets/images' do
30
+ visa = PaymentIcon.where(name: 'visa').first
31
+ assert_equal 'payment_icons/visa.svg', visa.path
32
+ end
33
+
34
+ end
metadata ADDED
@@ -0,0 +1,171 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: payment_icons
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Nakul Pathak
8
+ - Shopify
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2015-09-01 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '4.1'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '4.1'
28
+ - !ruby/object:Gem::Dependency
29
+ name: frozen_record
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ description: Mountable rails engine which loads assets (svg files of payment icons)
43
+ and provides a frozen_record model called PaymentIcon to access these through groups,
44
+ names of icons, etc.
45
+ email:
46
+ - payments-integrations@shopify.com
47
+ executables: []
48
+ extensions: []
49
+ extra_rdoc_files: []
50
+ files:
51
+ - MIT-LICENSE
52
+ - Rakefile
53
+ - app/assets/images/payment_icons/amazon.svg
54
+ - app/assets/images/payment_icons/american-express.svg
55
+ - app/assets/images/payment_icons/bitcoin.svg
56
+ - app/assets/images/payment_icons/bogus.svg
57
+ - app/assets/images/payment_icons/boleto.svg
58
+ - app/assets/images/payment_icons/cash.svg
59
+ - app/assets/images/payment_icons/dankort.svg
60
+ - app/assets/images/payment_icons/diners-club.svg
61
+ - app/assets/images/payment_icons/discover.svg
62
+ - app/assets/images/payment_icons/dogecoin.svg
63
+ - app/assets/images/payment_icons/dwolla.svg
64
+ - app/assets/images/payment_icons/forbrugsforeningen.svg
65
+ - app/assets/images/payment_icons/generic.svg
66
+ - app/assets/images/payment_icons/gift-card.svg
67
+ - app/assets/images/payment_icons/giropay.svg
68
+ - app/assets/images/payment_icons/google-wallet.svg
69
+ - app/assets/images/payment_icons/jcb.svg
70
+ - app/assets/images/payment_icons/laser.svg
71
+ - app/assets/images/payment_icons/litecoin.svg
72
+ - app/assets/images/payment_icons/maestro.svg
73
+ - app/assets/images/payment_icons/master.svg
74
+ - app/assets/images/payment_icons/paypal.svg
75
+ - app/assets/images/payment_icons/sofort.svg
76
+ - app/assets/images/payment_icons/unionpay.svg
77
+ - app/assets/images/payment_icons/visa.svg
78
+ - app/assets/images/payment_icons/visaelectron.svg
79
+ - app/models/payment_icon.rb
80
+ - db/payment_icons.yml
81
+ - lib/payment_icons.rb
82
+ - lib/payment_icons/engine.rb
83
+ - lib/payment_icons/version.rb
84
+ - test/dummy/README.md
85
+ - test/dummy/Rakefile
86
+ - test/dummy/app/controllers/application_controller.rb
87
+ - test/dummy/app/controllers/icons_controller.rb
88
+ - test/dummy/app/views/icons/show.html.erb
89
+ - test/dummy/app/views/layouts/application.html.erb
90
+ - test/dummy/bin/bundle
91
+ - test/dummy/bin/rails
92
+ - test/dummy/bin/rake
93
+ - test/dummy/bin/setup
94
+ - test/dummy/config.ru
95
+ - test/dummy/config/application.rb
96
+ - test/dummy/config/boot.rb
97
+ - test/dummy/config/environment.rb
98
+ - test/dummy/config/environments/development.rb
99
+ - test/dummy/config/environments/production.rb
100
+ - test/dummy/config/environments/test.rb
101
+ - test/dummy/config/initializers/assets.rb
102
+ - test/dummy/config/initializers/cookies_serializer.rb
103
+ - test/dummy/config/initializers/filter_parameter_logging.rb
104
+ - test/dummy/config/initializers/session_store.rb
105
+ - test/dummy/config/initializers/wrap_parameters.rb
106
+ - test/dummy/config/routes.rb
107
+ - test/dummy/config/secrets.yml
108
+ - test/dummy/public/404.html
109
+ - test/dummy/public/422.html
110
+ - test/dummy/public/500.html
111
+ - test/dummy/public/favicon.ico
112
+ - test/dummy/test/controllers/icons_controller_test.rb
113
+ - test/test_helper.rb
114
+ - test/unit/payment_icon_test.rb
115
+ homepage: https://github.com/Shopify/payment_icons
116
+ licenses:
117
+ - MIT
118
+ metadata: {}
119
+ post_install_message:
120
+ rdoc_options: []
121
+ require_paths:
122
+ - lib
123
+ required_ruby_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ version: '0'
128
+ required_rubygems_version: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ version: '0'
133
+ requirements: []
134
+ rubyforge_project:
135
+ rubygems_version: 2.4.6
136
+ signing_key:
137
+ specification_version: 4
138
+ summary: Payment Icon engine that can be integrated with any rails app to give easy
139
+ access to common payment icons like visa, mastercard, etc.
140
+ test_files:
141
+ - test/dummy/app/controllers/application_controller.rb
142
+ - test/dummy/app/controllers/icons_controller.rb
143
+ - test/dummy/app/views/icons/show.html.erb
144
+ - test/dummy/app/views/layouts/application.html.erb
145
+ - test/dummy/bin/bundle
146
+ - test/dummy/bin/rails
147
+ - test/dummy/bin/rake
148
+ - test/dummy/bin/setup
149
+ - test/dummy/config/application.rb
150
+ - test/dummy/config/boot.rb
151
+ - test/dummy/config/environment.rb
152
+ - test/dummy/config/environments/development.rb
153
+ - test/dummy/config/environments/production.rb
154
+ - test/dummy/config/environments/test.rb
155
+ - test/dummy/config/initializers/assets.rb
156
+ - test/dummy/config/initializers/cookies_serializer.rb
157
+ - test/dummy/config/initializers/filter_parameter_logging.rb
158
+ - test/dummy/config/initializers/session_store.rb
159
+ - test/dummy/config/initializers/wrap_parameters.rb
160
+ - test/dummy/config/routes.rb
161
+ - test/dummy/config/secrets.yml
162
+ - test/dummy/config.ru
163
+ - test/dummy/public/404.html
164
+ - test/dummy/public/422.html
165
+ - test/dummy/public/500.html
166
+ - test/dummy/public/favicon.ico
167
+ - test/dummy/Rakefile
168
+ - test/dummy/README.md
169
+ - test/dummy/test/controllers/icons_controller_test.rb
170
+ - test/test_helper.rb
171
+ - test/unit/payment_icon_test.rb