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