-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathiso8583.gemspec
28 lines (22 loc) · 1002 Bytes
/
iso8583.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
# -*- mode: ruby; encoding: utf-8; tab-width: 2; indent-tabs-mode: nil -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require "iso8583/version"
Gem::Specification.new do |s|
s.name = "iso8583"
s.version = ISO8583::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Tim Becker", "Slava Kravchenko"]
s.email = ["[email protected]","[email protected]"]
s.homepage = "http://github.com/a2800276/8583/"
s.summary = "Ruby implementation of ISO 8583 financial messaging"
s.description = "Ruby implementation of ISO 8583 financial messaging"
s.required_rubygems_version = ">= 1.3.6"
s.required_ruby_version = ">= 1.9"
s.rubyforge_project = "iso8583"
s.requirements << "none"
s.files = Dir.glob("{lib,test}/**/*") + %w(AUTHORS CHANGELOG LICENSE README TODO)
s.require_path = 'lib'
s.add_development_dependency("rake")
s.add_development_dependency("test-unit")
end