Skip to content

Commit ee1968a

Browse files
committed
Initial commit
0 parents  commit ee1968a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+12726
-0
lines changed

.ci-scripts

Submodule .ci-scripts added at 4ec68fe

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
indent_style = space
11+
indent_size = 2
12+
13+
[*.hs, *.lhs]
14+
charset = utf-8
15+
indent_size = 4

.github/ISSUE_TEMPLATE.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
**Operating system or device, package version, compiler version:**
2+
<!-- Please provide all of these details. -->
3+
4+
**Issue description:**
5+
<!-- What happened, and what was expected. -->
6+
7+
**Steps to reproduce:**
8+
<!-- Please provide reasonable detail. -->
9+
10+
**Link to minimal example project:**
11+
<!-- Optional but very welcome. You can drag and drop a zip archive to upload it. -->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
**Issue reference:**
2+
<!-- Which issue(s) does this solve? Do you need to make one? -->
3+
4+
**Submission Checklist:**
5+
* [ ] Have you followed the guidelines in our [Contributing](../../CONTRIBUTING.md) document (for example, is your tree a clean merge)?
6+
* [ ] Have you checked to ensure there aren't other open [Pull Requests](../../pulls) for the same update/change?
7+
* [ ] Does your submission build?
8+
* [ ] Does your submission pass tests?
9+
* [ ] Have you run lints on your code locally prior to submission?
10+
* [ ] Have you updated *all* of the cabal/nix infrastructure?
11+
* [ ] Is this a breaking change? Have you discussed this?
12+
13+
<!-- Please tag a maintainer if you don't get a response within a reasonable period of time -->

.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
dist
2+
dist-*
3+
cabal-dev
4+
*.o
5+
*.hi
6+
*.chi
7+
*.chs.h
8+
*.dyn_o
9+
*.dyn_hi
10+
.hpc
11+
.hsenv
12+
.cabal-sandbox/
13+
cabal.sandbox.config
14+
*.prof
15+
*.aux
16+
*.hp
17+
*.eventlog
18+
.stack-work/
19+
cabal.project.local
20+
cabal.project.local~
21+
.HTF/
22+
.ghc.environment.*

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "ci-scripts"]
2+
path = .ci-scripts
3+
url = https://github.com/onrock-eng/ci-scripts.git

.travis.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# .travis.yml
2+
# Used for Continuous Integration builds on Linux/OS X via https://travis-ci.org
3+
sudo: false
4+
language: c # default is ruby
5+
6+
matrix:
7+
fast_finish: true
8+
include:
9+
- os: linux
10+
env:
11+
- STACK_PKG_URL=https://www.stackage.org/stack/linux-x86_64
12+
- HLINT=Y
13+
- WEEDER=Y
14+
- os: osx
15+
env: STACK_PKG_URL=https://www.stackage.org/stack/osx-x86_64
16+
17+
cache:
18+
directories:
19+
- $HOME/.stack
20+
21+
before_install:
22+
- source .ci-scripts/travis/install-stack.sh
23+
24+
# Here starts the actual work to be performed for the package under test;
25+
# any command which exits with a non-zero exit code causes the build to fail.
26+
script:
27+
- if [[ $HLINT ]]; then source .ci-scripts/travis/run-hlint.sh; fi
28+
- travis_wait 30 stack --no-terminal --skip-ghc-check test --haddock --no-haddock-deps
29+
- if [[ $WEEDER ]]; then source .ci-scripts/travis/run-weeder.sh; fi
30+
31+
# Build the integration examples
32+
- travis_wait 30 stack --no-terminal --skip-ghc-check build
33+
github-webhooks-scotty-example
34+
github-webhooks-servant-simple-example
35+
github-webhooks-servant-example
36+

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Kyle Van Berendonck <kyle.vanberendonck@onrock.engineering>

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# 0.9.0
2+
3+
* This is an alpha testing release with an incomplete feature set to recieve feedback on the API.
4+
* The API may change in the recent future. When alpha testing has commenced, the version will start at `1.0.0`.

CODE_OF_CONDUCT.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6+
7+
## Our Standards
8+
9+
Examples of behavior that contributes to creating a positive environment include:
10+
11+
* Using welcoming and inclusive language
12+
* Being respectful of differing viewpoints and experiences
13+
* Gracefully accepting constructive criticism
14+
* Focusing on what is best for the community
15+
* Showing empathy towards other community members
16+
17+
Examples of unacceptable behavior by participants include:
18+
19+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
20+
* Trolling, insulting/derogatory comments, and personal or political attacks
21+
* Public or private harassment
22+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
23+
* Other conduct which could reasonably be considered inappropriate in a professional setting
24+
25+
## Our Responsibilities
26+
27+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28+
29+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30+
31+
## Scope
32+
33+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34+
35+
## Enforcement
36+
37+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at foss@onrock.engineering. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38+
39+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40+
41+
## Attribution
42+
43+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
44+
45+
[homepage]: http://contributor-covenant.org
46+
[version]: http://contributor-covenant.org/version/1/4/

0 commit comments

Comments
 (0)