-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabsa-h2h.gemspec
28 lines (23 loc) · 1.05 KB
/
absa-h2h.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "absa-h2h/version"
Gem::Specification.new do |s|
s.name = "absa-h2h"
s.version = Absa::H2h::VERSION
s.authors = ["Jeffrey van Aswegen, Douglas Anderson"]
s.email = ["[email protected], [email protected]"]
s.homepage = ""
s.summary = %q{A ruby interface to commumicate with the ABSA Host 2 Host platform}
s.description = %q{The interface supports Account holder verifications, EFT payments, Debit orders, collecting statements.}
s.rubyforge_project = "absa-h2h"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.executables << 'absa-h2h'
s.require_paths = ["lib"]
s.add_dependency "activesupport"
s.add_dependency "i18n"
s.add_dependency "strata", "~> 0.0.1"
s.add_development_dependency "rake", "0.9.2.2"
s.add_development_dependency "rspec", "3.3.0"
end