elif 0.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.
Files changed (11) hide show
  1. data/AUTHORS +1 -0
  2. data/CHANGELOG +7 -0
  3. data/COPYING +340 -0
  4. data/INSTALL +35 -0
  5. data/LICENSE +7 -0
  6. data/README +24 -0
  7. data/Rakefile +81 -0
  8. data/TODO +5 -0
  9. data/lib/elif.rb +154 -0
  10. data/setup.rb +1360 -0
  11. metadata +63 -0
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.8.11
3
+ specification_version: 1
4
+ name: elif
5
+ version: !ruby/object:Gem::Version
6
+ version: 0.1.0
7
+ date: 2006-11-29 00:00:00 -06:00
8
+ summary: Elif allows you to read a file line by line in reverse.
9
+ require_paths:
10
+ - lib
11
+ email: james@grayproductions.net
12
+ homepage: http://elif.rubyforge.org
13
+ rubyforge_project: elif
14
+ description: A port of File::ReadBackwards, the Perl module by Uri Guttman, for reading a file in reverse, line by line. This can often be helpful for things like log files, where the interesting information is usually at the end.
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
+ authors:
29
+ - James Edward Gray II
30
+ files:
31
+ - lib/elif.rb
32
+ - Rakefile
33
+ - setup.rb
34
+ - AUTHORS
35
+ - COPYING
36
+ - README
37
+ - INSTALL
38
+ - TODO
39
+ - CHANGELOG
40
+ - LICENSE
41
+ test_files: []
42
+
43
+ rdoc_options:
44
+ - --title
45
+ - Elif Documentation
46
+ - --main
47
+ - README
48
+ extra_rdoc_files:
49
+ - AUTHORS
50
+ - COPYING
51
+ - README
52
+ - INSTALL
53
+ - TODO
54
+ - CHANGELOG
55
+ - LICENSE
56
+ executables: []
57
+
58
+ extensions: []
59
+
60
+ requirements: []
61
+
62
+ dependencies: []
63
+