fixed_width 0.2.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.
@@ -0,0 +1,3 @@
1
+ require 'rubygems'
2
+ require 'spec'
3
+ require File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'fixed_width'))
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fixed_width
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 2
8
+ - 0
9
+ version: 0.2.0
10
+ platform: ruby
11
+ authors:
12
+ - Timon Karnezos
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-05-31 00:00:00 -07:00
18
+ default_executable:
19
+ dependencies: []
20
+
21
+ description: |
22
+ Shamelessly forked from ryanwood/slither [http://github.com/ryanwood/slither].
23
+
24
+ Renamed the gem to be a little clearer as to its purpose. Hate that 'nokogiri' nonsense.
25
+
26
+ email: timon.karnezos@gmail.com
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - README.markdown
33
+ - TODO
34
+ files:
35
+ - .gitignore
36
+ - COPYING
37
+ - HISTORY
38
+ - README.markdown
39
+ - Rakefile
40
+ - TODO
41
+ - VERSION
42
+ - examples/readme_example.rb
43
+ - fixed_width.gemspec
44
+ - lib/fixed_width.rb
45
+ - lib/fixed_width/column.rb
46
+ - lib/fixed_width/core_ext/symbol.rb
47
+ - lib/fixed_width/definition.rb
48
+ - lib/fixed_width/fixed_width.rb
49
+ - lib/fixed_width/generator.rb
50
+ - lib/fixed_width/parser.rb
51
+ - lib/fixed_width/section.rb
52
+ - spec/column_spec.rb
53
+ - spec/definition_spec.rb
54
+ - spec/fixed_width_spec.rb
55
+ - spec/generator_spec.rb
56
+ - spec/parser_spec.rb
57
+ - spec/section_spec.rb
58
+ - spec/spec_helper.rb
59
+ has_rdoc: true
60
+ homepage: http://github.com/timonk/fixed_width
61
+ licenses: []
62
+
63
+ post_install_message:
64
+ rdoc_options:
65
+ - --charset=UTF-8
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ segments:
73
+ - 0
74
+ version: "0"
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ segments:
80
+ - 0
81
+ version: "0"
82
+ requirements: []
83
+
84
+ rubyforge_project:
85
+ rubygems_version: 1.3.6
86
+ signing_key:
87
+ specification_version: 3
88
+ summary: A gem that provides a DSL for parsing and writing files of fixed-width records.
89
+ test_files:
90
+ - spec/column_spec.rb
91
+ - spec/definition_spec.rb
92
+ - spec/fixed_width_spec.rb
93
+ - spec/generator_spec.rb
94
+ - spec/parser_spec.rb
95
+ - spec/section_spec.rb
96
+ - spec/spec_helper.rb
97
+ - examples/readme_example.rb