Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ Have a usage question?
======================
Questions will be closed without comment. Here are some resources to get help:

- Read the README: https://github.com/dockyard/styleguides
!! ADD MORE HELP RESOURCES HERE !!

Think you found a bug?
Expand Down
1 change: 0 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ Thank you for contributing!
Here are a few things that will increase the chance that your pull request will get accepted:
- Write tests, preferably in a test driven style.
- Add documentation for the changes you made.
- Follow our styleguide: https://github.com/dockyard/styleguides
-->

<!-- If this pull request addresses an issue please provide the issue number here -->
Expand Down
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at brian@dockyard.com. All
reported by contacting the project team at arr@sugarpirate.com. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Expand Down
3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ get accepted:
- Did you confirm this fix/feature is something that is needed?
- Did you write tests, preferably in a test driven style?
- Did you add documentation for the changes you made?
- Did you follow our [styleguide](https://github.com/dockyard/styleguides)?

If your pull-request addresses an issue then please add the corresponding
issue's number to the description of your pull-request.
Expand All @@ -50,7 +49,7 @@ issue's number to the description of your pull-request.
First clone this repository:

```sh
git clone https://github.com/DockYard/ember-changeset-validations.git
git clone https://github.com/poteto/ember-changeset-validations.git
```

<!-- Add further details on how to install the project here -->
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# ember-changeset-validations ![Download count all time](https://img.shields.io/npm/dt/ember-changeset-validations.svg) [![CircleCI](https://circleci.com/gh/DockYard/ember-changeset-validations.svg?style=shield)](https://circleci.com/gh/DockYard/ember-changeset-validations) [![npm version](https://badge.fury.io/js/ember-changeset-validations.svg)](https://badge.fury.io/js/ember-changeset-validations) [![Ember Observer Score](http://emberobserver.com/badges/ember-changeset-validations.svg)](http://emberobserver.com/addons/ember-changeset-validations)
# ember-changeset-validations ![Download count all time](https://img.shields.io/npm/dt/ember-changeset-validations.svg) [![CircleCI](https://circleci.com/gh/poteto/ember-changeset-validations.svg?style=shield)](https://circleci.com/gh/poteto/ember-changeset-validations) [![npm version](https://badge.fury.io/js/ember-changeset-validations.svg)](https://badge.fury.io/js/ember-changeset-validations) [![Ember Observer Score](http://emberobserver.com/badges/ember-changeset-validations.svg)](http://emberobserver.com/addons/ember-changeset-validations)

**[ember-changeset-validations is built and maintained by DockYard, contact us for expert Ember.js consulting](https://dockyard.com/ember-consulting)**.
`ember-changeset-validations` is a companion validation library to [`ember-changeset`](https://github.com/poteto/ember-changeset). It's really simple to use and understand, and there are no CPs or observers anywhere – it's mostly just functions.

`ember-changeset-validations` is a companion validation library to [`ember-changeset`](https://github.com/DockYard/ember-changeset). It's really simple to use and understand, and there are no CPs or observers anywhere – it's mostly just functions.

Since `ember-changeset` is required to use this addon, please see [documentation](https://github.com/DockYard/ember-changeset/blob/master/README.md) there on how to use changesets.
Since `ember-changeset` is required to use this addon, please see [documentation](https://github.com/poteto/ember-changeset/blob/master/README.md) there on how to use changesets.

To install:

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"doc": "doc",
"test": "tests"
},
"repository": "https://github.com/DockYard/ember-changeset-validations",
"bugs": "https://github.com/DockYard/ember-changeset-validations/issues",
"homepage": "https://github.com/DockYard/ember-changeset-validations",
"repository": "https://github.com/poteto/ember-changeset-validations",
"bugs": "https://github.com/poteto/ember-changeset-validations/issues",
"homepage": "https://github.com/poteto/ember-changeset-validations",
"scripts": {
"build": "ember build",
"start": "ember server",
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/validators/format-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ test('it accepts a `type` option', function(assert) {
let options = { type: 'url' };
let validator = validateFormat(options);

assert.equal(validator(key, 'http://dockyard.com'), true);
assert.equal(validator(key, 'http://lauren.com'), true);
assert.equal(validator(key, 'somevalue'), buildMessage(key, { type: options.type }));
});

Expand Down