fixed_width 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +2 -0
- data/VERSION +1 -1
- data/fixed_width.gemspec +4 -2
- metadata +4 -2
data/Rakefile
CHANGED
@@ -15,6 +15,8 @@ begin
|
|
15
15
|
gemspec.name = "fixed_width"
|
16
16
|
gemspec.summary = "A gem that provides a DSL for parsing and writing files of fixed-width records."
|
17
17
|
gemspec.description = <<END
|
18
|
+
A gem that provides a DSL for parsing and writing files of fixed-width records.
|
19
|
+
|
18
20
|
Shamelessly forked from ryanwood/slither [http://github.com/ryanwood/slither].
|
19
21
|
|
20
22
|
Renamed the gem to be a little clearer as to its purpose. Hate that 'nokogiri' nonsense.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
data/fixed_width.gemspec
CHANGED
@@ -5,12 +5,14 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{fixed_width}
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.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 = ["Timon Karnezos"]
|
12
12
|
s.date = %q{2010-05-31}
|
13
|
-
s.description = %q{
|
13
|
+
s.description = %q{A gem that provides a DSL for parsing and writing files of fixed-width records.
|
14
|
+
|
15
|
+
Shamelessly forked from ryanwood/slither [http://github.com/ryanwood/slither].
|
14
16
|
|
15
17
|
Renamed the gem to be a little clearer as to its purpose. Hate that 'nokogiri' nonsense.
|
16
18
|
}
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 2
|
8
|
-
-
|
9
|
-
version: 0.2.
|
8
|
+
- 1
|
9
|
+
version: 0.2.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Timon Karnezos
|
@@ -19,6 +19,8 @@ default_executable:
|
|
19
19
|
dependencies: []
|
20
20
|
|
21
21
|
description: |
|
22
|
+
A gem that provides a DSL for parsing and writing files of fixed-width records.
|
23
|
+
|
22
24
|
Shamelessly forked from ryanwood/slither [http://github.com/ryanwood/slither].
|
23
25
|
|
24
26
|
Renamed the gem to be a little clearer as to its purpose. Hate that 'nokogiri' nonsense.
|