formatr 1.10.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.
Files changed (18) hide show
  1. data/lib/formatr.rb +1462 -0
  2. data/test/1 +55 -0
  3. data/test/10 +7 -0
  4. data/test/11 +2 -0
  5. data/test/12 +3 -0
  6. data/test/13 +290 -0
  7. data/test/14 +5 -0
  8. data/test/15 +8 -0
  9. data/test/2 +129 -0
  10. data/test/3 +9 -0
  11. data/test/4 +100 -0
  12. data/test/5 +200 -0
  13. data/test/6 +6 -0
  14. data/test/7 +6 -0
  15. data/test/8 +40 -0
  16. data/test/format_test.pl +377 -0
  17. data/test/test_formatr.rb +761 -0
  18. metadata +62 -0
metadata ADDED
@@ -0,0 +1,62 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.9.4
3
+ specification_version: 1
4
+ name: formatr
5
+ version: !ruby/object:Gem::Version
6
+ version: 1.10.0
7
+ date: 2008-01-24 00:00:00 -05:00
8
+ summary: A library to read and write Perl-like formats
9
+ require_paths:
10
+ - lib
11
+ email: paul@rubels.net
12
+ homepage: http://rubyforge.org/projects/formatr/
13
+ rubyforge_project:
14
+ description: FormatR provides perl-like formats for ruby. These are used to create output with a similar format but with changing values. It also supports the ability to read in formatted text and extract values from the text.
15
+ autorequire:
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: true
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
24
+ version:
25
+ platform: ruby
26
+ signing_key:
27
+ cert_chain:
28
+ post_install_message:
29
+ authors:
30
+ - Paul Rubel
31
+ files:
32
+ - lib/formatr.rb
33
+ - test/test_formatr.rb
34
+ - test/format_test.pl
35
+ - test/1
36
+ - test/10
37
+ - test/11
38
+ - test/12
39
+ - test/13
40
+ - test/14
41
+ - test/15
42
+ - test/2
43
+ - test/3
44
+ - test/4
45
+ - test/5
46
+ - test/6
47
+ - test/7
48
+ - test/8
49
+ test_files:
50
+ - test/test_formatr.rb
51
+ rdoc_options: []
52
+
53
+ extra_rdoc_files: []
54
+
55
+ executables: []
56
+
57
+ extensions: []
58
+
59
+ requirements: []
60
+
61
+ dependencies: []
62
+