ebcdic_converter 1.0.0 → 1.1.0

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/Rakefile CHANGED
@@ -5,8 +5,8 @@ begin
5
5
  require 'jeweler'
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "ebcdic_converter"
8
- gem.summary = %Q{Adds a method to String that converts it from ebcdic to integer}
9
- gem.description = %Q{Adds a method to String that converts it from ebcdic to integer}
8
+ gem.summary = %Q{Adds a method (ebcdic_to_i) to String that converts it from ebcdic to integer}
9
+ gem.description = %Q{Adds a method (ebcdic_to_i) to String that converts it from ebcdic to integer}
10
10
  gem.email = "btelles@gmail.com"
11
11
  gem.homepage = "http://github.com/btelles/ebcdic_converter"
12
12
  gem.authors = ["Bernie Telles"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.1.0
@@ -0,0 +1,55 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{ebcdic_converter}
8
+ s.version = "1.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Bernie Telles"]
12
+ s.date = %q{2010-07-14}
13
+ s.description = %q{Adds a method (ebcdic_to_i) to String that converts it from ebcdic to integer}
14
+ s.email = %q{btelles@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "ebcdic_converter.gemspec",
27
+ "lib/ebcdic_converter.rb",
28
+ "spec/ebcdic_converter_spec.rb",
29
+ "spec/spec.opts",
30
+ "spec/spec_helper.rb"
31
+ ]
32
+ s.homepage = %q{http://github.com/btelles/ebcdic_converter}
33
+ s.rdoc_options = ["--charset=UTF-8"]
34
+ s.require_paths = ["lib"]
35
+ s.rubygems_version = %q{1.3.7}
36
+ s.summary = %q{Adds a method (ebcdic_to_i) to String that converts it from ebcdic to integer}
37
+ s.test_files = [
38
+ "spec/ebcdic_converter_spec.rb",
39
+ "spec/spec_helper.rb"
40
+ ]
41
+
42
+ if s.respond_to? :specification_version then
43
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
44
+ s.specification_version = 3
45
+
46
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
47
+ s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
48
+ else
49
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
50
+ end
51
+ else
52
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
53
+ end
54
+ end
55
+
@@ -1,3 +1,10 @@
1
+ #
2
+ # This module adds one method to String that will
3
+ # convert the string to a signed ebcdic integer
4
+ # ebcdic is just the use of the last digit in a string
5
+ # as a signed character.
6
+ #
7
+ #
1
8
  module EbcdicConverter
2
9
  EBCDICPOS = {
3
10
  'A' => '1',
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: 23
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
+ - 1
8
9
  - 0
9
- - 0
10
- version: 1.0.0
10
+ version: 1.1.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Bernie Telles
@@ -34,7 +34,7 @@ dependencies:
34
34
  version: 1.2.9
35
35
  type: :development
36
36
  version_requirements: *id001
37
- description: Adds a method to String that converts it from ebcdic to integer
37
+ description: Adds a method (ebcdic_to_i) to String that converts it from ebcdic to integer
38
38
  email: btelles@gmail.com
39
39
  executables: []
40
40
 
@@ -50,6 +50,7 @@ files:
50
50
  - README.rdoc
51
51
  - Rakefile
52
52
  - VERSION
53
+ - ebcdic_converter.gemspec
53
54
  - lib/ebcdic_converter.rb
54
55
  - spec/ebcdic_converter_spec.rb
55
56
  - spec/spec.opts
@@ -87,7 +88,7 @@ rubyforge_project:
87
88
  rubygems_version: 1.3.7
88
89
  signing_key:
89
90
  specification_version: 3
90
- summary: Adds a method to String that converts it from ebcdic to integer
91
+ summary: Adds a method (ebcdic_to_i) to String that converts it from ebcdic to integer
91
92
  test_files:
92
93
  - spec/ebcdic_converter_spec.rb
93
94
  - spec/spec_helper.rb