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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -0
  3. data/README.md +10 -21
  4. metadata +3 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4d95107ada43d15b8febf0964604ffc46d1ca02fc09930cf7797ce5b0991f162
4
- data.tar.gz: '063008c7e2a5c1ada33b67746cf9500f1d19539adb6ac881c1561b46958c473d'
3
+ metadata.gz: 749e707ff47bc2fa8fd1a668522c3100a5712709e033630870ec9d3a1b24ecb9
4
+ data.tar.gz: 51fbee277372ab05a019f42ceef0b933b55230525cf6ed2f76978d8e91885235
5
5
  SHA512:
6
- metadata.gz: 6214bef213127c4396340c010cbb548815859f7ef42d01897424cd85957312bd9a07b627ad833323972ce9f52a6735efcee7e7032c9bd4c1c3662f6f4259c05b
7
- data.tar.gz: 9858a8487eb8b12b781338930605624736db89c39e26856965dd3d79d2dda9be06c4ec30fa2c5d50a7fd762803defdc762c956b0b2ffeebc27804d4cab2294d0
6
+ metadata.gz: 1c303ab750e5ce597407aacb6781a63a4712afda88479c36a1b67fd54be7a0558252fe5856b899f4eff64ace68f589f5b283b1b175ef58063c4eb6fc90de6187
7
+ data.tar.gz: 0ea45be5f661868250dd04f69abf88ef49f9c498d5865b2ac4401b0c69da1e0e115333340eb251b6c91bc5785e17e6179460645d52cd2f91f336315fc47546af
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.1 - 2026-05-24
4
+
5
+ - Fixed README formatting for CI.
6
+ - Hardened citation tag tests against current Minitest releases.
7
+
3
8
  ## 0.1.0 - 2026-02-07
4
9
 
5
10
  - Initial gem release.
data/README.md CHANGED
@@ -1,54 +1,43 @@
1
- # Al-Citations
1
+ # al-citations
2
2
 
3
- A Jekyll plugin that allows you to fetch and display citation counts from Google Scholar and InspireHEP in your Jekyll site.
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
- 2. Use the tags in your templates:
16
+ ## Usage
29
17
 
30
- For Google Scholar:
18
+ Google Scholar:
31
19
 
32
20
  ```liquid
33
21
  {% google_scholar_citations scholar_id article_id %}
34
22
  ```
35
23
 
36
- For InspireHEP:
24
+ InspireHEP:
37
25
 
38
26
  ```liquid
39
27
  {% inspirehep_citations recid %}
40
28
  ```
41
29
 
42
- ### Example
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
- ## Development
36
+ ## Ecosystem context
49
37
 
50
- After checking out the repo, run `bundle install` to install dependencies.
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
- Bug reports and pull requests are welcome on GitHub.
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.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: 2026-02-16 00:00:00.000000000 Z
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: 3.0.3.1
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: []