al_citations 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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +10 -21
- metadata +3 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 749e707ff47bc2fa8fd1a668522c3100a5712709e033630870ec9d3a1b24ecb9
|
|
4
|
+
data.tar.gz: 51fbee277372ab05a019f42ceef0b933b55230525cf6ed2f76978d8e91885235
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1c303ab750e5ce597407aacb6781a63a4712afda88479c36a1b67fd54be7a0558252fe5856b899f4eff64ace68f589f5b283b1b175ef58063c4eb6fc90de6187
|
|
7
|
+
data.tar.gz: 0ea45be5f661868250dd04f69abf88ef49f9c498d5865b2ac4401b0c69da1e0e115333340eb251b6c91bc5785e17e6179460645d52cd2f91f336315fc47546af
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,54 +1,43 @@
|
|
|
1
|
-
#
|
|
1
|
+
# al-citations
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
`al_citations` fetches and renders citation counts for `al-folio` v1.x and compatible Jekyll sites.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
-
Add this line to your Jekyll site's Gemfile:
|
|
8
|
-
|
|
9
7
|
```ruby
|
|
10
8
|
gem 'al_citations'
|
|
11
9
|
```
|
|
12
10
|
|
|
13
|
-
And then execute:
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
$ bundle install
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
## Usage
|
|
20
|
-
|
|
21
|
-
1. Add the plugin to your site's `_config.yml`:
|
|
22
|
-
|
|
23
11
|
```yaml
|
|
24
12
|
plugins:
|
|
25
13
|
- al_citations
|
|
26
14
|
```
|
|
27
15
|
|
|
28
|
-
|
|
16
|
+
## Usage
|
|
29
17
|
|
|
30
|
-
|
|
18
|
+
Google Scholar:
|
|
31
19
|
|
|
32
20
|
```liquid
|
|
33
21
|
{% google_scholar_citations scholar_id article_id %}
|
|
34
22
|
```
|
|
35
23
|
|
|
36
|
-
|
|
24
|
+
InspireHEP:
|
|
37
25
|
|
|
38
26
|
```liquid
|
|
39
27
|
{% inspirehep_citations recid %}
|
|
40
28
|
```
|
|
41
29
|
|
|
42
|
-
|
|
30
|
+
Example:
|
|
43
31
|
|
|
44
32
|
```liquid
|
|
45
33
|
Citations: {% google_scholar_citations "YOUR_SCHOLAR_ID" "ARTICLE_ID" %} InspireHEP Citations: {% inspirehep_citations "INSPIRE_RECID" %}
|
|
46
34
|
```
|
|
47
35
|
|
|
48
|
-
##
|
|
36
|
+
## Ecosystem context
|
|
49
37
|
|
|
50
|
-
|
|
38
|
+
- Starter integration/docs live in `al-folio`.
|
|
39
|
+
- Citation provider logic and rendering behavior are owned here.
|
|
51
40
|
|
|
52
41
|
## Contributing
|
|
53
42
|
|
|
54
|
-
|
|
43
|
+
Provider adapters, formatting, and reliability fixes should be contributed in this repository.
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: al_citations
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- al-org
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: jekyll
|
|
@@ -125,7 +124,6 @@ metadata:
|
|
|
125
124
|
allowed_push_host: https://rubygems.org
|
|
126
125
|
homepage_uri: https://github.com/al-org-dev/al-citations
|
|
127
126
|
source_code_uri: https://github.com/al-org-dev/al-citations
|
|
128
|
-
post_install_message:
|
|
129
127
|
rdoc_options: []
|
|
130
128
|
require_paths:
|
|
131
129
|
- lib
|
|
@@ -140,8 +138,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
140
138
|
- !ruby/object:Gem::Version
|
|
141
139
|
version: '0'
|
|
142
140
|
requirements: []
|
|
143
|
-
rubygems_version:
|
|
144
|
-
signing_key:
|
|
141
|
+
rubygems_version: 4.0.6
|
|
145
142
|
specification_version: 4
|
|
146
143
|
summary: Citation count tags for Google Scholar and InspireHEP
|
|
147
144
|
test_files: []
|