citeproc-ruby 1.1.13 → 1.1.14
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/.github/workflows/ci.yml +27 -0
- data/Gemfile +0 -1
- data/README.md +0 -4
- data/Rakefile +0 -8
- data/cucumber.yml +1 -1
- data/lib/citeproc/ruby/formats/html.rb +2 -0
- data/lib/citeproc/ruby/renderer/state.rb +1 -0
- data/lib/citeproc/ruby/version.rb +1 -1
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f885d244ee289274bb2700d93d79cd89a119af0c321c47c51a7d88b35ec939f
|
4
|
+
data.tar.gz: 37b23e801ccb908fd9f21e3d51ebf4a2192c1ffd9c6bb6913d84ca595d5f762d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83caf56e7dbe0b966a8fc52f403510ab49fdd1e4e94b71194b5ed22669b8262b1ef9f7349f4a1ff2ee2b2ec22ce8582b5f8711d234095b75180e80824c9088b1
|
7
|
+
data.tar.gz: 5fa630c2ffaafbded4fa551faaefb7d0731a4a1240f0716510074e626618f1fa1a91b7537b52bad1351ab29f5346c4e6de5804beeabec4692e469c3bae7863bd
|
@@ -0,0 +1,27 @@
|
|
1
|
+
name: CI
|
2
|
+
on:
|
3
|
+
push:
|
4
|
+
branches:
|
5
|
+
- master
|
6
|
+
pull_request:
|
7
|
+
branches:
|
8
|
+
- master
|
9
|
+
jobs:
|
10
|
+
build:
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
env:
|
13
|
+
RUBYOPT: W2
|
14
|
+
BUNDLE_WITHOUT: debug:extra
|
15
|
+
strategy:
|
16
|
+
matrix:
|
17
|
+
ruby-version:
|
18
|
+
- 3.0
|
19
|
+
- 2.7
|
20
|
+
- 2.6
|
21
|
+
steps:
|
22
|
+
- uses: actions/checkout@v2
|
23
|
+
- uses: ruby/setup-ruby@v1
|
24
|
+
with:
|
25
|
+
ruby-version: ${{ matrix.ruby-version }}
|
26
|
+
bundler-cache: true
|
27
|
+
- run: bundle exec rake
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -6,10 +6,6 @@ processor's rendering engine only; for more documentation on the whole
|
|
6
6
|
cite processor, please refer to the documentation of the
|
7
7
|
[citeproc](https://rubygems.org/gems/citeproc) gem instead.
|
8
8
|
|
9
|
-
[](http://travis-ci.org/inukshuk/citeproc-ruby)
|
10
|
-
[](https://coveralls.io/github/inukshuk/citeproc-ruby?branch=master)
|
11
|
-
[](https://codeclimate.com/github/inukshuk/citeproc-ruby)
|
12
|
-
|
13
9
|
Quickstart
|
14
10
|
----------
|
15
11
|
Install CiteProc-Ruby and all official CSL styles (optional).
|
data/Rakefile
CHANGED
@@ -39,14 +39,6 @@ Cucumber::Rake::Task.new(:cucumber) do |t|
|
|
39
39
|
t.profile = 'default'
|
40
40
|
end
|
41
41
|
|
42
|
-
begin
|
43
|
-
require 'coveralls/rake/task'
|
44
|
-
Coveralls::RakeTask.new
|
45
|
-
task :test_with_coveralls => [:spec, :cucumber, 'coveralls:push']
|
46
|
-
rescue LoadError => e
|
47
|
-
# ignore
|
48
|
-
end
|
49
|
-
|
50
42
|
task :release do |t|
|
51
43
|
system "gem build citeproc-ruby.gemspec"
|
52
44
|
system "git tag #{CiteProc::Ruby::VERSION}"
|
data/cucumber.yml
CHANGED
@@ -1 +1 @@
|
|
1
|
-
default: --format progress --require features --color
|
1
|
+
default: --format progress --require features --color --publish-quiet
|
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.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sylvester Keil
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-08-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: citeproc
|
@@ -36,14 +36,14 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.6'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.6'
|
47
47
|
description: |
|
48
48
|
CiteProc-Ruby is a Citation Style Language (CSL) 1.0.1 compatible cite
|
49
49
|
processor implementation written in pure Ruby.
|
@@ -55,6 +55,7 @@ extra_rdoc_files: []
|
|
55
55
|
files:
|
56
56
|
- ".codeclimate.yml"
|
57
57
|
- ".document"
|
58
|
+
- ".github/workflows/ci.yml"
|
58
59
|
- ".yardopts"
|
59
60
|
- AGPL
|
60
61
|
- BSDL
|
@@ -88,6 +89,7 @@ files:
|
|
88
89
|
homepage: https://github.com/inukshuk/citeproc-ruby
|
89
90
|
licenses:
|
90
91
|
- AGPL-3.0
|
92
|
+
- BSD-2-Clause
|
91
93
|
metadata: {}
|
92
94
|
post_install_message:
|
93
95
|
rdoc_options: []
|
@@ -104,7 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
106
|
- !ruby/object:Gem::Version
|
105
107
|
version: '0'
|
106
108
|
requirements: []
|
107
|
-
rubygems_version: 3.
|
109
|
+
rubygems_version: 3.2.15
|
108
110
|
signing_key:
|
109
111
|
specification_version: 4
|
110
112
|
summary: A Citation Style Language (CSL) cite processor
|