forked from a2800276/8583
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiso8583.gemspec
25 lines (20 loc) · 914 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
# -*- 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.rubyforge_project = "iso8583"
s.has_rdoc = true
s.requirements << "none"
s.files = Dir.glob("{lib,test}/**/*") + %w(AUTHORS CHANGELOG LICENSE README TODO)
s.require_path = 'lib'
end