From 28d43d79da3b9934b2993ebff97e73d6f0124b2e Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Sat, 18 Nov 2017 19:23:59 -0800 Subject: [PATCH] Update owner --- .github/ISSUE_TEMPLATE.md | 1 - .github/PULL_REQUEST_TEMPLATE.md | 1 - CODE_OF_CONDUCT.md | 2 +- CONTRIBUTING.md | 3 +-- README.md | 8 +++----- package.json | 6 +++--- tests/unit/validators/format-test.js | 2 +- 7 files changed, 9 insertions(+), 14 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index c7a97fb..ec34e67 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -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? diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 784c589..021dc03 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -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 --> diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index be5add3..3c46747 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -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. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9f8ddfd..82831b4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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. @@ -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 ``` diff --git a/README.md b/README.md index e732b0f..d0a4cb4 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/package.json b/package.json index c9b37c7..a2d6252 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/tests/unit/validators/format-test.js b/tests/unit/validators/format-test.js index 2c1f77c..35a756a 100644 --- a/tests/unit/validators/format-test.js +++ b/tests/unit/validators/format-test.js @@ -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 })); });