-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a31ae6
commit c3833e1
Showing
17 changed files
with
292 additions
and
24 deletions.
There are no files selected for viewing
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,32 @@ | ||
--- | ||
description: Help us make Cucumber better | ||
--- | ||
|
||
# Contributing | ||
|
||
You want to contribute to Cucumber, great! | ||
|
||
## You have a question | ||
|
||
You can [get in touch](/community) via Discord or GitHub Discussions, or try Stack Overflow. | ||
|
||
## You found a bug | ||
|
||
There are several different flavours of Cucumber for different programming languages. Try to file your issue in the repo for the Cucumber flavour you're using: | ||
|
||
* [Cucumber JVM](https://github.com/cucumber/cucumber-jvm/issues/new) | ||
* [Cucumber JS](https://github.com/cucumber/cucumber-js/issues/new) | ||
* [Cucumber Ruby](https://github.com/cucumber/cucumber-ruby/issues/new) | ||
* [Godog](https://github.com/cucumber/godog/issues/new) | ||
|
||
If you're not sure, open an issue in the [common](https://github.com/cucumber/common/issues/new/choose) repo, and we'll take it from there. | ||
|
||
## You want to update the documentation | ||
|
||
Improvements to documentation are really valuable! See the [contribution guidelines](https://github.com/cucumber/website/blob/main/CONTRIBUTING.md) for the repo that drives this site for details. | ||
|
||
## You want to contribute but don't know how | ||
|
||
If you enjoy using Cucumber, consider [sponsoring us](/sponsors). | ||
|
||
|
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
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,22 @@ | ||
.form { | ||
vertical-align: baseline; | ||
} | ||
|
||
.field { | ||
background-color: transparent; | ||
color: inherit; | ||
font-family: inherit; | ||
font-size: calc(0.875rem * var(--ifm-button-size-multiplier)); | ||
line-height: 1.5; | ||
width: 15em; | ||
padding: calc(var(--ifm-button-padding-vertical) * var(--ifm-button-size-multiplier)); | ||
border: var(--ifm-button-border-width) solid var(--ifm-color-gray-700); | ||
border-radius: var(--ifm-button-border-radius); | ||
margin-right: 0.5em; | ||
vertical-align: baseline; | ||
} | ||
|
||
.submit { | ||
font-family: inherit; | ||
vertical-align: baseline; | ||
} |
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,30 @@ | ||
import { FC } from 'react' | ||
import styles from './Subscribe.module.scss' | ||
import clsx from 'clsx' | ||
|
||
export const Subscribe: FC = () => { | ||
return ( | ||
<> | ||
<p className="margin-bottom--sm">Subscribe to the Cucumber newsletter:</p> | ||
<form | ||
action="https://buttondown.com/api/emails/embed-subscribe/cucumber" | ||
method="post" | ||
target="_blank" | ||
className={styles.form} | ||
> | ||
<input | ||
type="email" | ||
name="email" | ||
placeholder="[email protected]" | ||
required | ||
className={styles.field} | ||
/> | ||
<input type="hidden" name="embed" value="1" /> | ||
<input type="hidden" name="tag" value="cucumber.io" /> | ||
<button type="submit" className={clsx('button', 'button--primary', styles.submit)}> | ||
Subscribe | ||
</button> | ||
</form> | ||
</> | ||
) | ||
} |
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 @@ | ||
export * from './Subscribe' |
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,4 @@ | ||
.platformLogo { | ||
max-width: 80%; | ||
max-height: 75px; | ||
} |
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,88 @@ | ||
import Layout from '@theme/Layout' | ||
import React from 'react' | ||
import clsx from 'clsx' | ||
import styles from './community.module.scss' | ||
import Link from '@docusaurus/Link' | ||
import { Subscribe } from '@site/src/components/Newsletter' | ||
|
||
export default function Community() { | ||
return ( | ||
<Layout> | ||
<main> | ||
<div className="container readable-blurb text--center padding-vert--lg"> | ||
<h1>The Cucumber Community</h1> | ||
<p> | ||
Cucumber has a thriving community made up of kinds of people, from the project's | ||
long-standing maintainers to first-time users and everyone in between. | ||
</p> | ||
<Subscribe /> | ||
</div> | ||
<div className="container text--center padding-vert--lg"> | ||
<h2>Where to find us</h2> | ||
<p className="readable-blurb margin-bottom--lg"> | ||
Wherever you interact with the Cucumber community, | ||
<br /> | ||
always remember to respect and uphold our <Link to="/conduct">Code of Conduct</Link>. | ||
</p> | ||
<div className="row text--center"> | ||
<div className="col col--4"> | ||
<img | ||
className={clsx(styles.platformLogo, 'margin-bottom--md')} | ||
alt="" | ||
src="/img/community/discord.svg" | ||
/> | ||
<p className="padding-horiz--sm"> | ||
We're now on <strong>Discord</strong> for day-to-day chat about all things Cucumber. | ||
Drop by and say hello. | ||
</p> | ||
<Link className="button button--secondary" to="https://discord.gg/8YXBH8j74w"> | ||
Join our Server | ||
</Link> | ||
</div> | ||
<div className="col col--4"> | ||
<img | ||
className={clsx(styles.platformLogo, 'margin-bottom--md')} | ||
alt="" | ||
src="/img/community/github.svg" | ||
/> | ||
<p className="padding-horiz--sm"> | ||
If you have questions about using Cucumber, or ideas for improving it, try our{' '} | ||
<strong>GitHub Discussions</strong>. | ||
</p> | ||
<Link | ||
className="button button--secondary" | ||
to="https://github.com/orgs/cucumber/discussions" | ||
> | ||
Browse Discussions | ||
</Link> | ||
</div> | ||
<div className="col col--4"> | ||
<img | ||
className={clsx(styles.platformLogo, 'margin-bottom--md')} | ||
alt="" | ||
src="/img/community/stack-overflow.svg" | ||
/> | ||
<p className="padding-horiz--sm"> | ||
Stuck? Many people use <strong>Stack Overflow</strong> to ask or answer questions | ||
about Cucumber. | ||
</p> | ||
<Link | ||
className="button button--secondary" | ||
to="https://stackoverflow.com/questions/tagged/cucumber" | ||
> | ||
Find Answers | ||
</Link> | ||
</div> | ||
</div> | ||
</div> | ||
<div className="container text--center padding-vert--lg"> | ||
<h2>Want to contribute?</h2> | ||
<p className="readable-blurb"> | ||
There are many kinds of contributions, besides just code.{' '} | ||
<Link to="/docs/contributing">You can get involved</Link>. | ||
</p> | ||
</div> | ||
</main> | ||
</Layout> | ||
) | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.