iso8583 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +5 -0
- data/Rakefile +1 -1
- data/lib/bitmap.rb +1 -1
- metadata +1 -1
data/README
CHANGED
@@ -4,6 +4,11 @@
|
|
4
4
|
This package currently contains code for coding an decoding ISO 8583
|
5
5
|
Financial Message.
|
6
6
|
|
7
|
+
== Using
|
8
|
+
|
9
|
+
The best place to get started using the library is the documentation of the
|
10
|
+
Message class. Once a stable state is reached, this should be the only
|
11
|
+
class you need to use ...
|
7
12
|
|
8
13
|
== Installing
|
9
14
|
|
data/Rakefile
CHANGED
@@ -9,7 +9,7 @@ require "rubygems"
|
|
9
9
|
|
10
10
|
SHORTNAME ='iso8583' # this should be the rubyforge project name
|
11
11
|
DESC ="Ruby implementation of ISO 8583 financial messaging"
|
12
|
-
PKG_VERSION ='0.1.
|
12
|
+
PKG_VERSION ='0.1.1'
|
13
13
|
LONG_DESC = <<END_DESC
|
14
14
|
Ruby implementation of ISO 8583 financial messaging
|
15
15
|
END_DESC
|
data/lib/bitmap.rb
CHANGED
@@ -62,7 +62,7 @@ class Bitmap
|
|
62
62
|
count = self[1] ? 128 : 64
|
63
63
|
arr.pack("B#{count}")
|
64
64
|
end
|
65
|
-
alias_method :to_b :to_bytes
|
65
|
+
alias_method :to_b, :to_bytes
|
66
66
|
|
67
67
|
# Generate a String representation of this bitmap in the form:
|
68
68
|
# 01001100110000011010110110010100100110011000001101011011001010
|