imgarylai/active_merchant_pay2go

View on GitHub
active_merchant_pay2go.gemspec

Summary

Maintainability
Test Coverage
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'active_merchant_pay2go/version'

Gem::Specification.new do |spec|
  spec.name          = "active_merchant_pay2go"
  spec.version       = ActiveMerchantPay2go::VERSION
  spec.authors       = ["Gary"]
  spec.email         = ["garylai1990@gmail.com"]

  spec.summary       = %q{pay2go(智付寶) gem}
  spec.description   = %q{This gem integrate Rails with pay2go(智付寶).}
  spec.homepage      = "https://github.com/imgarylai/active_merchant_pay2go"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency 'activemerchant', '~> 1.60'
  spec.add_dependency 'offsite_payments', '~> 2'

  spec.add_development_dependency 'rails', '>= 3.2.6', '< 6'

end