rbibtex 0.0.1
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/CHANGELOG +6 -0
- data/README +63 -0
- data/bin/rbib2bib +76 -0
- data/bin/rbib2html +51 -0
- data/bin/rbib2txt +41 -0
- data/lib/rbibtex.rb +1 -0
- data/lib/rbibtex/pre-setup.rb +5 -0
- data/lib/rbibtex/rbibtex.y +164 -0
- data/papers.bib +199 -0
- data/papers.html +223 -0
- data/setup.rb +1552 -0
- metadata +62 -0
metadata
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.11
|
3
|
+
specification_version: 1
|
4
|
+
name: rbibtex
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.0.1
|
7
|
+
date: 2005-11-09 00:00:00 +01:00
|
8
|
+
summary: A bibtex parsing library written in pure ruby
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
- lib
|
12
|
+
email: rbibtex@brian-schroeder.de
|
13
|
+
homepage: http://ruby.brian-schroeder.de/rbibtex/
|
14
|
+
rubyforge_project:
|
15
|
+
description: "A bibtex parsing library written in pure ruby. With some additional executables
|
16
|
+
that transform bibtex files. This is my first attempt at racc so be patient
|
17
|
+
with me. I hope to improve this into a full bibtex parser in the near future, at
|
18
|
+
the moment it parses the bibtex subset that I need. Another problem is that
|
19
|
+
nearly no work went into the added scripts, which can therefore be seen as usage
|
20
|
+
examples, but may not help you with the work you want to do. I hope this will
|
21
|
+
be a starting point for a more complete bibtex library for ruby. Cheers,
|
22
|
+
Brian"
|
23
|
+
autorequire: rbibtex.rb
|
24
|
+
default_executable:
|
25
|
+
bindir: bin
|
26
|
+
has_rdoc: true
|
27
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
28
|
+
requirements:
|
29
|
+
-
|
30
|
+
- ">"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 0.0.0
|
33
|
+
version:
|
34
|
+
platform: ruby
|
35
|
+
signing_key:
|
36
|
+
cert_chain:
|
37
|
+
authors:
|
38
|
+
- Brian Schroeder
|
39
|
+
files:
|
40
|
+
- papers.bib
|
41
|
+
- README
|
42
|
+
- CHANGELOG
|
43
|
+
- papers.html
|
44
|
+
- setup.rb
|
45
|
+
- bin
|
46
|
+
- lib
|
47
|
+
- bin/rbib2html
|
48
|
+
- bin/rbib2bib
|
49
|
+
- bin/rbib2txt
|
50
|
+
- lib/rbibtex.rb
|
51
|
+
- lib/rbibtex
|
52
|
+
- lib/rbibtex/pre-setup.rb
|
53
|
+
- lib/rbibtex/rbibtex.y
|
54
|
+
test_files: []
|
55
|
+
rdoc_options: []
|
56
|
+
extra_rdoc_files: []
|
57
|
+
executables:
|
58
|
+
- rbib2html
|
59
|
+
- rbib2txt
|
60
|
+
extensions: []
|
61
|
+
requirements: []
|
62
|
+
dependencies: []
|