dblp 0.4.4 → 0.4.5
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/README.txt +6 -7
- data/config/hoe.rb +2 -2
- data/lib/dblp/version.rb +1 -1
- metadata +38 -14
data/README.txt
CHANGED
|
@@ -1,27 +1,26 @@
|
|
|
1
|
-
|
|
1
|
+
# dblp
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## DESCRIPTION:
|
|
4
4
|
|
|
5
5
|
DBLP is a command line tool to fetch required bibtex entries directly from the DBLP servers. The idea is, that you don't have to maintain all entries in your own file, but youse well known bibtex identifiers instead and then fetch them from DBLP.
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
## SYNOPSIS:
|
|
11
11
|
|
|
12
12
|
The first step is to build your latex document, so that dblp can parse the aux file for your document. Now call
|
|
13
13
|
|
|
14
14
|
dblp my_tex_file[|.tex|.aux]
|
|
15
|
-
|
|
15
|
+
|
|
16
16
|
and this will scan for the citation commands in the aux file. The defined keys will be used to query DBLP. If an entry is available it is saved and as a result stored in the dblp.bib file. To use it in your Latex document just use \bibliography{my_own_file,..., dblp}
|
|
17
17
|
|
|
18
18
|
For more command line options see
|
|
19
19
|
|
|
20
20
|
dblp --help
|
|
21
|
-
|
|
22
21
|
|
|
23
22
|
|
|
24
|
-
|
|
23
|
+
## LICENSE:
|
|
25
24
|
|
|
26
25
|
(The MIT License)
|
|
27
26
|
|
|
@@ -44,4 +43,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
44
43
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
45
44
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
46
45
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
47
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
46
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/config/hoe.rb
CHANGED
|
@@ -5,7 +5,7 @@ EMAIL = "grundprinzip@gmail.com"
|
|
|
5
5
|
DESCRIPTION = "Dynamically generate the bibtex file from your citations"
|
|
6
6
|
GEM_NAME = 'dblp' # what ppl will type to install your gem
|
|
7
7
|
RUBYFORGE_PROJECT = 'rug-b' # The unix name for your project
|
|
8
|
-
HOMEPATH = "http://
|
|
8
|
+
HOMEPATH = "http://github.com/grundprinzip/dblp"
|
|
9
9
|
DOWNLOAD_PATH = "http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}"
|
|
10
10
|
EXTRA_DEPENDENCIES = [
|
|
11
11
|
# ['activesupport', '>= 1.3.1']
|
|
@@ -70,4 +70,4 @@ CHANGES = $hoe.paragraphs_of('History.txt', 0..1).join("\\n\\n")
|
|
|
70
70
|
PATH = (RUBYFORGE_PROJECT == GEM_NAME) ? RUBYFORGE_PROJECT : "#{RUBYFORGE_PROJECT}/#{GEM_NAME}"
|
|
71
71
|
$hoe.remote_rdoc_dir = File.join(PATH.gsub(/^#{RUBYFORGE_PROJECT}\/?/,''), 'rdoc')
|
|
72
72
|
$hoe.rsync_args = '-av --delete --ignore-errors'
|
|
73
|
-
$hoe.spec.post_install_message = File.open(File.dirname(__FILE__) + "/../PostInstall.txt").read rescue ""
|
|
73
|
+
$hoe.spec.post_install_message = File.open(File.dirname(__FILE__) + "/../PostInstall.txt").read rescue ""
|
data/lib/dblp/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dblp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
hash: 5
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 4
|
|
9
|
+
- 5
|
|
10
|
+
version: 0.4.5
|
|
5
11
|
platform: ruby
|
|
6
12
|
authors:
|
|
7
13
|
- Martin Grund
|
|
@@ -9,29 +15,41 @@ autorequire:
|
|
|
9
15
|
bindir: bin
|
|
10
16
|
cert_chain: []
|
|
11
17
|
|
|
12
|
-
date: 2010-10-
|
|
18
|
+
date: 2010-10-11 00:00:00 +02:00
|
|
13
19
|
default_executable:
|
|
14
20
|
dependencies:
|
|
15
21
|
- !ruby/object:Gem::Dependency
|
|
16
22
|
name: rubyforge
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
20
26
|
requirements:
|
|
21
27
|
- - ">="
|
|
22
28
|
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 7
|
|
30
|
+
segments:
|
|
31
|
+
- 2
|
|
32
|
+
- 0
|
|
33
|
+
- 4
|
|
23
34
|
version: 2.0.4
|
|
24
|
-
|
|
35
|
+
type: :development
|
|
36
|
+
version_requirements: *id001
|
|
25
37
|
- !ruby/object:Gem::Dependency
|
|
26
38
|
name: hoe
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
39
|
+
prerelease: false
|
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
30
42
|
requirements:
|
|
31
43
|
- - ">="
|
|
32
44
|
- !ruby/object:Gem::Version
|
|
45
|
+
hash: 19
|
|
46
|
+
segments:
|
|
47
|
+
- 2
|
|
48
|
+
- 6
|
|
49
|
+
- 2
|
|
33
50
|
version: 2.6.2
|
|
34
|
-
|
|
51
|
+
type: :development
|
|
52
|
+
version_requirements: *id002
|
|
35
53
|
description: Dynamically generate the bibtex file from your citations
|
|
36
54
|
email:
|
|
37
55
|
- grundprinzip@gmail.com
|
|
@@ -67,7 +85,7 @@ files:
|
|
|
67
85
|
- test/test_dblp.rb
|
|
68
86
|
- test/test_helper.rb
|
|
69
87
|
has_rdoc: true
|
|
70
|
-
homepage: http://
|
|
88
|
+
homepage: http://github.com/grundprinzip/dblp
|
|
71
89
|
licenses: []
|
|
72
90
|
|
|
73
91
|
post_install_message: |+
|
|
@@ -84,21 +102,27 @@ rdoc_options:
|
|
|
84
102
|
require_paths:
|
|
85
103
|
- lib
|
|
86
104
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
105
|
+
none: false
|
|
87
106
|
requirements:
|
|
88
107
|
- - ">="
|
|
89
108
|
- !ruby/object:Gem::Version
|
|
109
|
+
hash: 3
|
|
110
|
+
segments:
|
|
111
|
+
- 0
|
|
90
112
|
version: "0"
|
|
91
|
-
version:
|
|
92
113
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
|
+
none: false
|
|
93
115
|
requirements:
|
|
94
116
|
- - ">="
|
|
95
117
|
- !ruby/object:Gem::Version
|
|
118
|
+
hash: 3
|
|
119
|
+
segments:
|
|
120
|
+
- 0
|
|
96
121
|
version: "0"
|
|
97
|
-
version:
|
|
98
122
|
requirements: []
|
|
99
123
|
|
|
100
124
|
rubyforge_project: rug-b
|
|
101
|
-
rubygems_version: 1.3.
|
|
125
|
+
rubygems_version: 1.3.7
|
|
102
126
|
signing_key:
|
|
103
127
|
specification_version: 3
|
|
104
128
|
summary: Dynamically generate the bibtex file from your citations
|