Skip to content

Commit

Permalink
feat: write "the Pomsky developers" instead of my name
Browse files Browse the repository at this point in the history
  • Loading branch information
Aloso committed Dec 22, 2024
1 parent 5529450 commit 3113ceb
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 34 deletions.
6 changes: 3 additions & 3 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
- Respect that people have differences of opinion and that every design or implementation choice carries a trade-off and numerous costs. There is seldom a right answer.
- Please keep unstructured critique to a minimum. If you have solid ideas you want to experiment with, make a work and see how it works.
- We will exclude you from interaction if you insult, demean or harass anyone. That is not welcome behavior. We interpret the term “harassment” as including the definition in the [Citizen Code of Conduct](https://github.com/stumpsyn/policies/blob/master/citizen_code_of_conduct.md); if you have any lack of clarity about what might be included in that concept, please read their definition. In particular, we don’t tolerate behavior that excludes people in socially marginalized groups.
- Private harassment is also unacceptable. No matter who you are, if you feel you have been or are being harassed or made uncomfortable by a community member, please [contact me](mailto:[email protected]) immediately. Whether you’re a regular contributor or a newcomer, we care about making this community a safe place for you and we’ve got your back.
- Private harassment is also unacceptable. No matter who you are, if you feel you have been or are being harassed or made uncomfortable by a community member, please [contact us](mailto:[email protected]) immediately. Whether you’re a regular contributor or a newcomer, we care about making this community a safe place for you and we’ve got your back.
- Likewise any spamming, trolling, flaming, baiting or other attention-stealing behavior is not welcome.

## Moderation

These are the policies for upholding our community’s standards of conduct. If you feel that a thread needs moderation, please [contact me](mailto:[email protected]).
These are the policies for upholding our community’s standards of conduct. If you feel that a thread needs moderation, please [contact us](mailto:[email protected]).

1. Remarks that violate the Rust standards of conduct, including hateful, hurtful, oppressive, or exclusionary remarks, are not allowed. (Cursing is allowed, but never targeting another user, and never in a hateful manner.)
2. Remarks that I find inappropriate, whether listed in the code of conduct or not, are also not allowed.
Expand All @@ -22,6 +22,6 @@ These are the policies for upholding our community’s standards of conduct. If
7. If I ban someone and you think it was unjustified, please take it up with me, **in private**. Complaints about bans in-channel are not allowed.

Kindly,
Ludwig Stecher
the Pomsky developers

_Adapted from the [Rust Code of Conduct](https://www.rust-lang.org/policies/code-of-conduct)_
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ When participating in discussions, please follow the [code of conduct](./CODE_OF
- [Issue tracker](https://github.com/pomsky-lang/pomsky/issues)
- [GitHub discussions](https://github.com/pomsky-lang/pomsky/discussions)

If you notice a comment that violates the Code of Conduct, is offending, or violates any law, please [reach out](mailto:[email protected]). If you have questions or are unsure if a comment is allowed, feel free to reach out as well.
If you notice a comment that violates the Code of Conduct, is offending, or violates any law, please [reach out](mailto:[email protected]). If you have questions or are unsure if a comment is allowed, feel free to reach out as well.

## Security

If you have a concern that may warrant a security advisory, please [contact me directly](mailto:[email protected]). Don't file an issue: Most of the time, security concerns should only be made public once a fix is available.
If you have a concern that may warrant a security advisory, please [contact us](mailto:[email protected]). Don't file an issue: Most of the time, security concerns should only be made public once a fix is available.

## Contributing Code

Expand Down
2 changes: 1 addition & 1 deletion helptext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "helptext"
description = "Create beautiful help messages"
version = "0.1.1"
edition.workspace = true
authors = ["Ludwig Stecher <[email protected]>"]
authors = ["Pomsky developers <[email protected]>"]
repository = "https://github.com/pomsky-lang/pomsky/tree/main/helptext"
readme = "README.md"
keywords = ["help", "colors"]
Expand Down
11 changes: 10 additions & 1 deletion pomsky-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,23 @@ name = "pomsky-bin"
description = "Compile pomsky expressions, a new regular expression language"
version = "0.11.0"
edition.workspace = true
authors = ["Ludwig Stecher <[email protected]>"]
authors = ["Pomsky developers <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://pomsky-lang.org/"
repository = "https://github.com/pomsky-lang/pomsky"
readme = "README.md"
keywords = ["regexp", "regex", "pomsky"]
categories = ["text-processing", "command-line-utilities"]

[package.metadata.wix]
upgrade-guid = "05169652-50F7-4B36-B5E5-677EFD6885FB"
path-guid = "87E01AEC-EB08-449F-A80E-F4286E3B1EDC"
license = false
eula = false

[package.metadata.dist]
npm-scope = "@pomsky-lang"
npm-package = "cli"

[[bin]]
name = "pomsky"
Expand Down
23 changes: 2 additions & 21 deletions pomsky-bin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,9 @@ cargo install pomsky-bin

Then you can compile pomsky expressions to a regex flavor of your choice; the default is PCRE.

```sh
$ pomsky --help
pomsky 0.1.0
Ludwig Stecher <[email protected]>
Compile pomsky expressions, a new regular expression language

USAGE:
pomsky [OPTIONS] [INPUT]

ARGS:
<INPUT> Pomsky expression to compile

OPTIONS:
-d, --debug Show debug information
-f, --flavor <FLAVOR> Regex flavor [possible values: pcre, python,
java, javascript, dotnet, ruby, rust]
-h, --help Print help information
-p, --path <FILE> File containing the pomsky expression to compile
-V, --version Print version information
```
Run `pomsky --help` for more information.

It provides nice error messages:
Pomsky provides nice error messages:

```sh
$ pomsky "'Hello world'* \X+"
Expand Down
2 changes: 1 addition & 1 deletion pomsky-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "pomsky"
description = "A new regular expression language"
version = "0.11.0"
edition.workspace = true
authors = ["Ludwig Stecher <[email protected]>"]
authors = ["Pomsky developers <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://pomsky-lang.org"
repository = "https://github.com/pomsky-lang/pomsky"
Expand Down
2 changes: 1 addition & 1 deletion pomsky-lib/afl-fuzz/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ When you found a crash, you might find it in `errors.txt`. If it's not in `error

## Report the bug

Please report the bug [here](https://github.com/pomsky-lang/pomsky/issues). If you think it could be a security vulnerability, please disclose it directly per email: [email protected].
Please report the bug [here](https://github.com/pomsky-lang/pomsky/issues). If you think it could be a security vulnerability, please disclose it directly per email: [email protected].

## Latest findings

Expand Down
2 changes: 1 addition & 1 deletion pomsky-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "pomsky-macro"
description = "Macro for converting pomsky expressions to regexes"
version = "0.11.0"
edition.workspace = true
authors = ["Ludwig Stecher <[email protected]>"]
authors = ["Pomsky developers <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/pomsky-lang/pomsky/blob/main/pomsky-macro"
repository = "https://github.com/pomsky-lang/pomsky"
Expand Down
2 changes: 1 addition & 1 deletion pomsky-syntax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "pomsky-syntax"
description = "Parser for pomsky, a new regular expression language"
version = "0.11.0"
edition.workspace = true
authors = ["Ludwig Stecher <[email protected]>"]
authors = ["Pomsky developers <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://pomsky-lang.org"
repository = "https://github.com/pomsky-lang/pomsky"
Expand Down
2 changes: 1 addition & 1 deletion pomsky-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "compiler-web"
description = "A portable, modern regular expression language"
homepage = "https://pomsky-lang.org"
version = "0.11.0"
authors = ["Ludwig Stecher <[email protected]>"]
authors = ["Pomsky developers <[email protected]>"]
edition.workspace = true
license = "MIT OR Apache-2.0"
repository = "https://github.com/pomsky-lang/pomsky"
Expand Down
2 changes: 1 addition & 1 deletion pomsky-wasm/LICENSE_MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2022 Ludwig Stecher <[email protected]>
Copyright (c) 2024 Pomsky developers <[email protected]>

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down

0 comments on commit 3113ceb

Please sign in to comment.