Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove 'rouge' gem, already provided by AsciidoctorJ #88

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ jobs:
os:
- ubuntu-latest
- macos-latest
exclude:
- os: macos-latest
java: '8'
runs-on: ${{ matrix.os }}
steps:
- name: Fetch Sources
Expand Down Expand Up @@ -60,4 +57,4 @@ jobs:
shell: cmd
run: |
gradlew.bat -S -Pskip.signing assemble
gradlew -S -Pskip.signing check
gradlew.bat -S -Pskip.signing check
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Fetch Sources
uses: actions/checkout@v2
- uses: actions/setup-java@v2
uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'adopt'
distribution: 'temurin'
java-version: '8'
- name: Upstream Build
run: |
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
= AsciidoctorJ PDF Changelog
:url-asciidoctor: http://asciidoctor.org
:url-asciidoc: {url-asciidoctor}/docs/what-is-asciidoc
:url-repo: https://github.com/asciidoctor/asciidoctorj-pdf
:icons: font
:star: icon:star[role=red]
ifndef::icons[]
:star: ★
endif::[]

This document provides a high-level view of the changes introduced in AsciidoctorJ PDF by release.
For a detailed view of what has changed, refer to the {url-repo}/commits/main[commit history] on GitHub.

== Unreleased

Improvement::

* Remove 'rouge' gem, already provided by AsciidoctorJ (#87) (@abelsromero)
3 changes: 0 additions & 3 deletions asciidoctorj-pdf/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ dependencies {

gems "rubygems:prawn:$prawnGemVersion"
gems "rubygems:rghost:$rghostGemVersion"
gems "rubygems:rouge:$rougeGemVersion"
gems "rubygems:addressable:$addressableVersion"
gems "rubygems:public_suffix:$public_suffixVersion"
gems "rubygems:text-hyphen:$textHyphenVersion"
Expand All @@ -45,8 +44,6 @@ def gemFiles = fileTree("${project.buildDir}/.gems") {
include "gems/prawn-icon-*/data/fonts/**"
// Include required data file from the addressable gem
include "gems/addressable-*/data/*.data"

exclude 'gems/rouge-*/lib/rouge/demos/**'
}

jrubyPrepare {
Expand Down
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ ext {
public_suffixVersion = '1.4.6'
prawnGemVersion=project.hasProperty('prawnGemVersion') ? project.prawnGemVersion : '2.4.0'
rghostGemVersion = '0.9.7'
rougeGemVersion = '3.30.0'
spockVersion = '0.7-groovy-2.0'
threadSafeGemVersion = '0.3.6'
ttfunkGemVersion = '1.7.0'
Expand Down