-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare for release as a Raku Community Module
- Loading branch information
Showing
14 changed files
with
268 additions
and
125 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Linux | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
raku: | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
raku-version: | ||
- 'latest' | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: Raku/setup-raku@v1 | ||
with: | ||
raku-version: ${{ matrix.raku-version }} | ||
- name: Run Special Tests | ||
run: raku run-tests -i |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: MacOS | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
raku: | ||
strategy: | ||
matrix: | ||
os: | ||
- macos-latest | ||
raku-version: | ||
- 'latest' | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: Raku/setup-raku@v1 | ||
with: | ||
raku-version: ${{ matrix.raku-version }} | ||
- name: Run Special Tests | ||
run: raku run-tests -i |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Windows | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
raku: | ||
strategy: | ||
matrix: | ||
os: | ||
- windows-latest | ||
raku-version: | ||
- 'latest' | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: Raku/setup-raku@v1 | ||
with: | ||
raku-version: ${{ matrix.raku-version }} | ||
- name: Run Special Tests | ||
run: raku run-tests -i |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1 @@ | ||
## Perl 6 precompilation files ## | ||
.precomp | ||
|
||
## Editor files ## | ||
|
||
# emacs | ||
*~ | ||
|
||
# vim | ||
.*.sw? | ||
|
||
# comma | ||
.idea | ||
*.iml |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
Revision history for Git-Log | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) | ||
and this project adheres to [Semantic | ||
Versioning](http://semver.org/spec/v2.0.0.html). | ||
{{$NEXT}} | ||
- Initial version as a Raku Community Module | ||
|
||
## [0.1.0] - 2018-08-24 | ||
- Initial release | ||
|
||
## [0.1.1] - 2018-08-24 | ||
- Make arguments to `git-log` slurpy. | ||
## [0.2.0] - 2018-08-25 | ||
- :get-changes is now off by default | ||
- The commit ID is now called "ID" by default, not "commit" | ||
|
||
## [0.1.2] - 2018-08-25 | ||
- Disable the test since otherwise zef will not install Git::Log properly. | ||
A new test will have to be added later. | ||
|
||
## [0.2.0] - 2018-08-25 | ||
- :get-changes is now off by default | ||
- The commit ID is now called "ID" by default, not "commit" | ||
## [0.1.1] - 2018-08-24 | ||
- Make arguments to `git-log` slurpy. | ||
|
||
## [0.1.0] - 2018-08-24 | ||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,31 @@ | ||
{ | ||
"api": "0", | ||
"auth": "zef:raku-community-modules", | ||
"authors": [ | ||
"Samantha McVey <samantham@posteo.net>" | ||
"Samantha McVey" | ||
], | ||
"build-depends": [ | ||
], | ||
"depends": [ | ||
|
||
], | ||
"description": "Gets the git log as a Perl 6 object", | ||
"description": "Gets the git log as a Raku object", | ||
"license": "Artistic-2.0", | ||
"support": { | ||
"license": "http://www.perlfoundation.org/artistic_license_2_0", | ||
"bugtracker": "https://github.com/samcv/perl6-Git-Log/issues" | ||
}, | ||
"meta-version": 0, | ||
"name": "Git::Log", | ||
"perl": "6.c", | ||
"provides": { | ||
"Git::Log": "lib/Git/Log.pm6" | ||
"Git::Log": "lib/Git/Log.rakumod" | ||
}, | ||
"resources": [ | ||
|
||
], | ||
"source-url": "https://github.com/samcv/perl6-Git-Log.git", | ||
"source-url": "https://github.com/raku-community-modules/Git-Log.git", | ||
"support": { | ||
"bugtracker": "https://github.com/samcv/perl6-Git-Log/issues", | ||
"license": "http://www.perlfoundation.org/artistic_license_2_0" | ||
}, | ||
"tags": [ | ||
|
||
"GIT", | ||
"LOG" | ||
], | ||
"test-depends": [ | ||
], | ||
"version": "0.2.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name = Git-Log | ||
|
||
[ReadmeFromPod] | ||
filename = lib/Git/Log.rakumod | ||
|
||
[UploadToZef] | ||
|
||
[Badges] | ||
provider = github-actions/linux.yml | ||
provider = github-actions/macos.yml | ||
provider = github-actions/windows.yml |
Oops, something went wrong.