quickcite 1.0.0 → 1.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/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ coverage
6
+ InstalledFiles
7
+ lib/bundler/man
8
+ pkg
9
+ rdoc
10
+ spec/reports
11
+ test/tmp
12
+ test/version_tmp
13
+ tmp
14
+
15
+ # YARD artifacts
16
+ .yardoc
17
+ _yardoc
18
+ doc/
data/README.md ADDED
@@ -0,0 +1,41 @@
1
+ QuickCite
2
+ =========
3
+
4
+ Simplify your (academic) life. Instead of manually hunting down references, let QuickCite do the work for you!
5
+
6
+ Quickstart
7
+ ----------
8
+
9
+ ### Installation:
10
+
11
+ gem install quickcite
12
+
13
+ ### Usage
14
+
15
+ Add it to your Makefile:
16
+
17
+ paper.pdf: ...
18
+ quickcite -b paper.bib *.tex
19
+ ...
20
+
21
+ Now add a reference in your paper:
22
+
23
+ > I really liked this paper: \cite{PowerPiccolo}
24
+ >
25
+ > But of course, this one was even better: \cite{Mapreduce}
26
+
27
+
28
+ That's it! Any missing references will be queried on DBLP, and you can accept
29
+ the paper you intended:
30
+
31
+ Missing reference for PowerPiccolo
32
+ Result to use for {PowerPiccolo}:
33
+ (0) Skip this citation
34
+ (1) A novel fuzzy system for wind turbines reactive power control.
35
+ Geev Mokryani, Pierluigi Siano, Antonio Piccolo, Vito Calderaro, Carlo Cecati
36
+ (2) Piccolo: Building Fast, Distributed Programs with Partitioned Tables.
37
+ Russell Power, Jinyang Li
38
+ (3) Impact of Chosen Error Criteria in RSS-based Localization: Power vs Distance vs Relative Distance Error Minimization.
39
+ Giuseppe Bianchi, Nicola Blefari-Melazzi, Francesca Lo Piccolo
40
+
41
+ Questions or suggestions: power@cs.nyu.edu.
@@ -1,3 +1,3 @@
1
1
  module QuickCite
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
data/quickcite.gemspec CHANGED
@@ -6,10 +6,29 @@ spec = Gem::Specification.new do |s|
6
6
  s.name = "quickcite"
7
7
  s.authors = ["Russell Power"]
8
8
  s.version = QuickCite::VERSION
9
+ s.homepage = "https://github.com/rjpower/quickcite"
9
10
  s.email = "power@cs.nyu.edu"
10
11
  s.require_path = "lib"
11
12
  s.files = `git ls-files`.split("\n")
12
-
13
+ s.description = <<-END
14
+ Simplify your (academic) life.
15
+
16
+ Instead of manually hunting down references, let QuickCite do the work for you!
17
+
18
+ Quickstart --
19
+
20
+ Install it:
21
+
22
+ gem install quickcite
23
+
24
+ Add it to your Makefile:
25
+
26
+ paper.pdf: ...
27
+ quickcite -b paper.bib *.tex
28
+ ...
29
+
30
+ That's it!
31
+ END
13
32
  s.add_dependency "bibtex-ruby", ">=2.0"
14
33
  s.add_dependency "json"
15
34
  s.add_development_dependency "bundler"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quickcite
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
10
- version: 1.0.0
9
+ - 1
10
+ version: 1.0.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Russell Power
@@ -60,7 +60,25 @@ dependencies:
60
60
  version: "0"
61
61
  type: :development
62
62
  version_requirements: *id003
63
- description:
63
+ description: |
64
+ Simplify your (academic) life.
65
+
66
+ Instead of manually hunting down references, let QuickCite do the work for you!
67
+
68
+ Quickstart --
69
+
70
+ Install it:
71
+
72
+ gem install quickcite
73
+
74
+ Add it to your Makefile:
75
+
76
+ paper.pdf: ...
77
+ quickcite -b paper.bib *.tex
78
+ ...
79
+
80
+ That's it!
81
+
64
82
  email: power@cs.nyu.edu
65
83
  executables: []
66
84
 
@@ -69,8 +87,10 @@ extensions: []
69
87
  extra_rdoc_files: []
70
88
 
71
89
  files:
90
+ - .gitignore
72
91
  - Gemfile
73
92
  - Gemfile.lock
93
+ - README.md
74
94
  - Rakefile
75
95
  - bin/quickcite
76
96
  - lib/quickcite.rb
@@ -83,7 +103,7 @@ files:
83
103
  - test/power-piccolo.html
84
104
  - test/power-piccolo.json
85
105
  - test/test_quickcite.rb
86
- homepage:
106
+ homepage: https://github.com/rjpower/quickcite
87
107
  licenses: []
88
108
 
89
109
  post_install_message: