-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathactivemerchant-realex3ds.gemspec
30 lines (23 loc) · 1.21 KB
/
activemerchant-realex3ds.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
28
29
30
$:.push File.expand_path("../lib", __FILE__)
require 'rubygems'
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'activemerchant-realex3ds'
s.version = '1.0.1'
s.summary = 'Realex gateway for ActiveMerchant with 3D Secure support'
s.description = 'Realex is the leading payment provider for Ireland. The default gateway included in ActiveMerchant does not support 3D Secure. This implementation does, it was sponsored by Ticketsolve, written by David Rice, and released as a gem for the current version of ActiveMerchant by Arne Brasseur.'
s.authors = ['David Rice', 'Arne Brasseur']
s.email = '[email protected]'
s.homepage = 'https://github.com/plexus/active_merchant-realex3ds'
s.rubyforge_project = 'activemerchant-realex3ds'
s.require_paths = %w[lib]
s.files = `git ls-files`.split($/)
s.test_files = `git ls-files -- spec`.split($/)
s.extra_rdoc_files = %w[README.md]
s.license = 'MIT'
s.add_dependency('activemerchant', '~> 1.34')
s.add_development_dependency('rake')
s.add_development_dependency('mocha', '~> 0.13.0')
s.add_development_dependency('rails', '>= 2.3.14')
s.add_development_dependency('equivalent-xml')
end