ebcdic_converter 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.rdoc +21 -2
  2. data/VERSION +1 -1
  3. data/ebcdic_converter.gemspec +1 -1
  4. metadata +3 -3
@@ -1,9 +1,28 @@
1
1
  = ebcdic_converter
2
2
 
3
- Description goes here.
3
+ Adds two methods to string.
4
+
5
+ ebcdic_to_i
6
+
7
+ and
8
+
9
+ to_ebcdic
10
+
11
+ #ebcdic_to_i converts an ebcdic representation to a number
12
+ For example:
13
+
14
+ '12C' => 123
15
+ '12L' => -123
16
+
17
+ #to_ebcdic converts existing number to ebcdic.
18
+ For example
19
+
20
+ '123' => '12C'
21
+ '-123' => '12L'
22
+
4
23
 
5
24
  == Note on Patches/Pull Requests
6
-
25
+
7
26
  * Fork the project.
8
27
  * Make your feature addition or bug fix.
9
28
  * Add tests for it. This is important so I don't break it in a
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.2.1
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{ebcdic_converter}
8
- s.version = "1.2.0"
8
+ s.version = "1.2.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Bernie Telles"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ebcdic_converter
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 29
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 2
9
- - 0
10
- version: 1.2.0
9
+ - 1
10
+ version: 1.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Bernie Telles