citeproc-ruby 1.1.4 → 1.1.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.
- checksums.yaml +4 -4
- data/.codeclimate.yml +17 -0
- data/.rubocop.yml +1156 -0
- data/BSDL +1 -1
- data/README.md +4 -3
- data/lib/citeproc/ruby/format.rb +1 -1
- data/lib/citeproc/ruby/formats/default.rb +50 -0
- data/lib/citeproc/ruby/formats/html.rb +1 -1
- data/lib/citeproc/ruby/renderer.rb +1 -1
- data/lib/citeproc/ruby/renderer/names.rb +2 -1
- data/lib/citeproc/ruby/sort.rb +2 -2
- data/lib/citeproc/ruby/version.rb +1 -1
- data/spec/citeproc/ruby/engine_spec.rb +22 -1
- data/spec/fixtures/items.rb +21 -1
- data/spec/fixtures/styles/modern-language-association-8th-edition.csl +293 -0
- metadata +6 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: citeproc-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sylvester Keil
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-10-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: citeproc
|
@@ -53,8 +53,10 @@ executables: []
|
|
53
53
|
extensions: []
|
54
54
|
extra_rdoc_files: []
|
55
55
|
files:
|
56
|
+
- ".codeclimate.yml"
|
56
57
|
- ".document"
|
57
58
|
- ".rspec"
|
59
|
+
- ".rubocop.yml"
|
58
60
|
- ".simplecov"
|
59
61
|
- ".yardopts"
|
60
62
|
- AGPL
|
@@ -117,6 +119,7 @@ files:
|
|
117
119
|
- spec/fixtures/locales/locales-fr-FR.xml
|
118
120
|
- spec/fixtures/styles/apa-with-different-translations.csl
|
119
121
|
- spec/fixtures/styles/apa.csl
|
122
|
+
- spec/fixtures/styles/modern-language-association-8th-edition.csl
|
120
123
|
- spec/spec_helper.rb
|
121
124
|
homepage: https://github.com/inukshuk/citeproc-ruby
|
122
125
|
licenses:
|
@@ -174,4 +177,5 @@ test_files:
|
|
174
177
|
- spec/fixtures/locales/locales-fr-FR.xml
|
175
178
|
- spec/fixtures/styles/apa-with-different-translations.csl
|
176
179
|
- spec/fixtures/styles/apa.csl
|
180
|
+
- spec/fixtures/styles/modern-language-association-8th-edition.csl
|
177
181
|
- spec/spec_helper.rb
|