bibmarkdown 1.3.1 → 1.3.2
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.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/bibmarkdown.gemspec +3 -3
- data/lib/bibmarkdown/document.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0df4e970764535570a81952e27d70a56a0cff35a
|
|
4
|
+
data.tar.gz: 5df6756c9a11ec691f56113b10814960cd84130a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50ac60f3e737b351673e7be05bf9a80c165ef6d42f606813a31c121b2ed96441cedf50303e3d6f204c475cc5821d0409cfb58d507e7ae23fad86bb8721473157
|
|
7
|
+
data.tar.gz: 358324c7232f64d0b10f97ec31712d90e51f5772dcec151a153a134d3aa7a6cacb2be991c7a9d477eba733b4333451296b7bfdc422a6145685c1cff0ec993150
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.3.
|
|
1
|
+
1.3.2
|
data/bibmarkdown.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: bibmarkdown 1.3.
|
|
5
|
+
# stub: bibmarkdown 1.3.2 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "bibmarkdown".freeze
|
|
9
|
-
s.version = "1.3.
|
|
9
|
+
s.version = "1.3.2"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib".freeze]
|
|
13
13
|
s.authors = ["Ruben Verborgh".freeze]
|
|
14
|
-
s.date = "2018-
|
|
14
|
+
s.date = "2018-03-06"
|
|
15
15
|
s.email = "ruben@verborgh.org".freeze
|
|
16
16
|
s.extra_rdoc_files = [
|
|
17
17
|
"LICENSE.md",
|
data/lib/bibmarkdown/document.rb
CHANGED
|
@@ -119,7 +119,7 @@ module BibMarkdown
|
|
|
119
119
|
citeproc = @entries[key].to_citeproc
|
|
120
120
|
|
|
121
121
|
# Ensure multi-part last names stick together
|
|
122
|
-
(citeproc["author"] || citeproc["editor"]).each do |author|
|
|
122
|
+
(citeproc["author"] || citeproc["editor"] || []).each do |author|
|
|
123
123
|
if author.has_key? "non-dropping-particle"
|
|
124
124
|
author["family"] = "#{author["non-dropping-particle"]} #{author["family"]}"
|
|
125
125
|
author.delete "non-dropping-particle"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bibmarkdown
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ruben Verborgh
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-03-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: citeproc-ruby
|