Skip to content

Commit

Permalink
chore(readme): move sponsorship info
Browse files Browse the repository at this point in the history
  • Loading branch information
JamieMason committed Aug 4, 2019
1 parent 304e038 commit 0bb96c6
Show file tree
Hide file tree
Showing 5 changed files with 92 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
@@ -0,0 +1,2 @@
open_collective: fold_left
custom: ['https://www.paypal.me/foldleft']
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,26 @@
---
name: Bug Report
about: Explain how to reproduce a Bug
---

## Description

<!--
List the steps to reproduce the bug followed by the expected and actual
behaviour. Include as much information as you can about the environment you
experience the problem in.
-->

## Suggested Solution

<!--
Propose some possible solutions to this issue. Highlight positives or negatives
of this approach compared to possible alternatives
-->

## Help Needed

<!--
What kind of help or information do you need to help you fix this bug? This can
help Contributors understand what they can do to help you get started.
-->
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,27 @@
---
name: Feature request
about: Suggest an idea for this project
---

## Description

<!--
Describe why this change is required, what problem it solves, and what
alternatives exist that you might have considered. This helps reviewers
understand the value of this change, or to highlight unnecessary changes which
can be avoided.
-->

## Suggested Solution

<!--
Propose some possible solutions to this issue. Try to highlight positives or
negatives of this approach compared to possible alternatives
-->

## Help Needed

<!--
What kind of help or information do you need to help you deliver this feature?
This can help Contributors understand what they can do to help you get started.
-->
23 changes: 23 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,23 @@
## Description (What)

<!--
Add context so reviewers understand what it is they're looking at. Describe what
this change does and what was required to deliver it. This section also helps
those who might need to modify your code at a time when you're not available,
and need help understanding it in order to get started.
-->

## Justification (Why)

<!--
Describe why this change is required, what problem it solves, and what
alternatives exist that you might have considered. This helps reviewers
understand the value of this change, or to highlight unnecessary changes which
can be avoided.
-->

## How Can This Be Tested?

<!--
Bullet-list how reviewers can install, build, test, and run your changes.
-->
26 changes: 14 additions & 12 deletions README.md
Expand Up @@ -6,11 +6,6 @@
[![NPM downloads](http://img.shields.io/npm/dm/jasmine-expect.svg?style=flat-square)](https://www.npmjs.com/package/jasmine-expect)
[![Build Status](http://img.shields.io/travis/JamieMason/Jasmine-Matchers/master.svg?style=flat-square)](https://travis-ci.org/JamieMason/Jasmine-Matchers)
[![Maintainability](https://api.codeclimate.com/v1/badges/8b2cd248837df1409c4d/maintainability)](https://codeclimate.com/github/JamieMason/Jasmine-Matchers/maintainability)
[![Gitter Chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/JamieMason/Jasmine-Matchers)
[![Donate via PayPal](https://img.shields.io/badge/donate-paypal-blue.svg)](https://www.paypal.me/foldleft)
[![Backers](https://opencollective.com/fold_left/backers/badge.svg)](https://opencollective.com/fold_left#backer)
[![Sponsors](https://opencollective.com/fold_left/sponsors/badge.svg)](https://opencollective.com/fold_left#sponsors)
[![Analytics](https://ga-beacon.appspot.com/UA-45466560-5/jasmine-matchers?flat&useReferer)](https://github.com/igrigorik/ga-beacon)
[![Follow JamieMason on GitHub](https://img.shields.io/github/followers/JamieMason.svg?style=social&label=Follow)](https://github.com/JamieMason)
[![Follow fold_left on Twitter](https://img.shields.io/twitter/follow/fold_left.svg?style=social&label=Follow)](https://twitter.com/fold_left)

Expand Down Expand Up @@ -44,7 +39,7 @@ stating that you `expect(cycleWheels).toBeEvenNumber()`.
<img alt="Sponsored by BrowserStack" src="https://cdn.rawgit.com/JamieMason/Jasmine-Matchers/ad1ea0e6/browserstack.svg" height="40" />
</a>

## Installation
## 🌩 Installation

##### npm

Expand All @@ -63,7 +58,7 @@ bower install jasmine-expect --save-dev
Downloads are available on the
[releases](https://github.com/JamieMason/Jasmine-Matchers/releases) page.

## API
## 📝 API

The [Jasmine testing framework](http://jasmine.github.io/) from
[Pivotal Labs](http://pivotallabs.com/) comes with this
Expand Down Expand Up @@ -101,7 +96,7 @@ jasmine.objectContaining(mixed);
jasmine.stringMatching(pattern);
```

## Matchers
### Matchers

[Jasmine-Matchers](https://github.com/JamieMason/Jasmine-Matchers) adds the
following matchers:
Expand Down Expand Up @@ -188,7 +183,7 @@ expect(string).toEndWith(substring);
expect(string).toStartWith(substring);
```

## Asymmetric Matchers
### Asymmetric Matchers

```js
any.after(date);
Expand Down Expand Up @@ -221,7 +216,7 @@ any.wholeNumber();
any.withinRange(floor, ceiling);
```

## Integration
## 🕹 Usage

### Browser

Expand All @@ -239,7 +234,7 @@ Include the following in your `package.json`:

And the following at the top of your test suite:

```javascript
```js
import JasmineExpect from 'jasmine-expect';
```

Expand Down Expand Up @@ -307,7 +302,7 @@ There is a [Plugin](https://github.com/ik9999/tern-jasminematchers) for
[Tern](https://github.com/ternjs/tern) to auto-complete matchers in your Text
Editor.

## Browser Support
## 🌍 Browser Support

Jasmine-Matchers is tested on
[Travis CI](https://travis-ci.org/JamieMason/Jasmine-Matchers) and
Expand All @@ -324,3 +319,10 @@ Jasmine-Matchers is tested on
| Safari | 6 - 9\* |

\* Safari 5.1 and iOS 5.1 are actually fully supported except for `toBeIso8601`.

## 🙋🏾‍♀️ Getting Help

- Get help with issues by creating a
[Bug Report](https://github.com/JamieMason/Jasmine-Matchers/issues/new?template=bug_report.md).
- Discuss ideas by opening a
[Feature Request](https://github.com/JamieMason/Jasmine-Matchers/issues/new?template=feature_request.md).

0 comments on commit 0bb96c6

Please sign in to comment.