Skip to content

Commit

Permalink
template ready
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Apr 22, 2024
1 parent 1509853 commit 7210a29
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ IMPORTANT: Please review the [CONTRIBUTING.md](../CONTRIBUTING.md) file for deta
All PRs must have an accompanied Jira issue. Please make sure you created it and linked it here.

BoxLang Jira: https://ortussolutions.atlassian.net/browse/BL/issues
Module Issues: https://github.com/boxlang-modules/@MODULE_SLUG@/issues
Module Issues: https://github.com/boxlang-modules/bx-pdf/issues


## Type of change
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This workflow is used to build releases
# It can also be called by other workflows to reuse the release flow.
name: @MODULE_NAME@ Release
name: BoxLang PDF Module Release

on:
# If you push to main this will trigger a stable release
Expand All @@ -19,7 +19,7 @@ on:
type: boolean

env:
MODULE_ID: @MODULE_SLUG@
MODULE_ID: bx-pdf
SNAPSHOT: ${{ inputs.snapshot || false }}
JDK: 17
GRADLE: 8.7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: @MODULE_NAME@ Snapshots
name: BoxLang PDF Module Snapshots

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: @MODULE_NAME@ Test Suites
name: BoxLang PDF Module Test Suites

# We are a reusable Workflow only
on:
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @MODULE_NAME@ Contributing Guide
# BoxLang PDF Module Contributing Guide

Hola amigo! I'm really excited that you are interested in contributing to our BoxLang Module.
Before submitting your contribution, please make sure to take a moment and read through the following guidelines:
Expand Down Expand Up @@ -30,7 +30,7 @@ This project is open source, and as such, the maintainers give their free time t
BoxLang tracks its issues in Jira and each module track it's own issues in its repo.

- BoxLang JIra : https://ortussolutions.atlassian.net/browse/BL/issues
- Module Issues: https://github.com/boxlang-modules/@MODULE_SLUG@/issues
- Module Issues: https://github.com/boxlang-modules/bx-pdf/issues

If you file a bug report, your issue should contain a title, a clear description of the issue, a way to replicate the issue, and any support files that we might need to replicate your issue. The goal of a bug report is to make it easy for yourself - and others - to replicate the bug and develop a fix for it. All issues that do not contain a way to replicate will not be addressed.

Expand Down
14 changes: 7 additions & 7 deletions box.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name":"@MODULE_NAME@",
"name":"BoxLang PDF Module",
"version":"@build.version@[email protected]@",
"location" : "https://downloads.ortussolutions.com/ortussolutions/boxlang-modules/@MODULE_SLUG@/@build.version@/@MODULE_SLUG@[email protected]@.zip",
"location" : "https://downloads.ortussolutions.com/ortussolutions/boxlang-modules/bx-pdf/@build.version@/bx-pdf[email protected]@.zip",
"author":"Ortus Solutions",
"homepage":"https://github.com/boxlang-modules/@MODULE_SLUG@",
"documentation":"https://github.com/boxlang-modules/@MODULE_SLUG@",
"homepage":"https://github.com/boxlang-modules/bx-pdf",
"documentation":"https://github.com/boxlang-modules/bx-pdf",
"repository":{
"type":"git",
"URL":"https://github.com/boxlang-modules/@MODULE_SLUG@"
"URL":"https://github.com/boxlang-modules/bx-pdf"
},
"bugs":"https://github.com/boxlang-modules/@MODULE_SLUG@/issues",
"slug":"@MODULE_SLUG@",
"bugs":"https://github.com/boxlang-modules/bx-pdf/issues",
"slug":"bx-pdf",
"shortDescription":"Module template for BoxLang modules",
"type":"boxlang-modules",
"keywords":[
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ⚡︎ BoxLang Module: @MODULE_NAME@
# ⚡︎ BoxLang Module: BoxLang PDF Module

```
|:------------------------------------------------------:|
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// The name of the module
rootProject.name = '@MODULE_SLUG@'
rootProject.name = 'bx-pdf'
6 changes: 3 additions & 3 deletions src/build/SetupTemplate.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -39,23 +39,23 @@ component {
command( "tokenReplace" )
.params(
path = "/#variables.cwd#/**",
token = "@MODULE_NAME@",
token = "BoxLang PDF Module",
replacement = moduleName
)
.run();

command( "tokenReplace" )
.params(
path = "/#variables.cwd#/**",
token = "@MODULE_SLUG@",
token = "bx-pdf",
replacement = moduleSlug
)
.run();

command( "tokenReplace" )
.params(
path = "/#variables.cwd#/**",
token = "@MODULE_DESCRIPTION@",
token = "A collection of PDF BIFS, components and more",
replacement = moduleDescription
)
.run();
Expand Down

0 comments on commit 7210a29

Please sign in to comment.