Skip to content

Commit

Permalink
Remove 'rouge' gem, already provided by AsciidoctorJ
Browse files Browse the repository at this point in the history
* Enable Java 8 for macos CI

Fixes #87
  • Loading branch information
abelsromero committed Mar 22, 2023
1 parent e7b898f commit 714c55a
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 11 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/continuous-integration.yaml
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
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
@@ -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
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
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

0 comments on commit 714c55a

Please sign in to comment.