From d2bf3080de4fc1f68b87b8e492e21896e2aa0da0 Mon Sep 17 00:00:00 2001 From: Luca Mussi Date: Wed, 29 Oct 2014 19:17:50 +0100 Subject: [PATCH] various changes in names and link --- README.md | 12 +++++------- package.js | 16 ++++++++-------- 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 7f7041b..fd41e3e 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,17 @@ -[![Build Status](https://travis-ci.org/splendido/accounts-templates-foundation.svg?branch=master)](https://travis-ci.org/splendido/accounts-templates-foundation) +[![Build Status](https://travis-ci.org/useraccounts/foundation.svg?branch=master)](https://travis-ci.org/useraccounts/foundation) accounts-templates-foundation ============================= Meteor sign up and sign in templates styled for Zurb Foundation -This package depends on [accounts-templates-core](https://github.com/splendido/accounts-templates-core.git) +This package depends on [accounts-templates-core](https://github.com/useraccounts/core.git) -Learn more [here](http://accounts-templates.meteor.com) or have a look at a [live demo application](http://accounts-templates-foundation.meteor.com) or at the full [documentation](https://github.com/splendido/accounts-templates-core). +Learn more [here](http://accounts-templates.meteor.com) or have a look at a [live demo application](http://accounts-templates-foundation.meteor.com) or at the full [documentation](https://github.com/useraccounts/core). ## Warning! -Adding this package with `mrt add accounts-templates-foundation` does not add any other packages providing Zurb Foundation. This is to let you choose the flavour you prefer, being it compiled, less, sass, or from CDN! +Adding this package with `mrt add useraccounts:foundation` does not add any other packages providing Zurb Foundation. This is to let you choose the flavour you prefer, being it compiled, less, sass, or from CDN! At the moment it is up to date with Foundation 5.3.3. @@ -20,6 +20,4 @@ At the moment it is up to date with Foundation 5.3.3. Anyone is welcome to contribute. Fork, make your changes, and then submit a pull request. -Thanks to all those who have contributed code changes to [this package](https://github.com/splendido/accounts-templates-foundation/graphs/contributors) as well as to the [core package](https://github.com/splendido/accounts-templates-core/graphs/contributors) and all who have helped by submitting bug reports and feature ideas. - -[![Support via Gittip](https://rawgithub.com/twolfson/gittip-badge/0.2.0/dist/gittip.png)](https://www.gittip.com/splendido/) \ No newline at end of file +Thanks to all those who have contributed code changes to [this package](https://github.com/useraccounts/foundation/graphs/contributors) as well as to the [core package](https://github.com/useraccounts/core/graphs/contributors) and all who have helped by submitting bug reports and feature ideas. \ No newline at end of file diff --git a/package.js b/package.js index a39adb9..cb6bfc0 100644 --- a/package.js +++ b/package.js @@ -1,12 +1,12 @@ Package.describe({ summary: "Accounts Templates styled for Zurb Foundation.", version: "0.11.0", - name: "splendido:accounts-templates-foundation", - git: "https://github.com/splendido/accounts-templates-foundation.git", + name: "useraccounts:foundation", + git: "https://github.com/meteor-useraccounts/foundation.git", }); Package.on_use(function(api, where) { - api.versionsFrom("METEOR@0.9.2.2"); + api.versionsFrom("METEOR@1.0"); api.use([ "less", @@ -14,11 +14,11 @@ Package.on_use(function(api, where) { ], "client"); api.use([ - "splendido:accounts-templates-core", + "useraccounts:core", ], ["client", "server"]); api.imply([ - "splendido:accounts-templates-core@0.11.0", + "useraccounts:core@0.11.0", ], ["client", "server"]); api.add_files([ @@ -57,8 +57,8 @@ Package.on_use(function(api, where) { Package.on_test(function(api) { api.use([ - "splendido:accounts-templates-foundation", - "splendido:accounts-templates-core@0.11.0", + "useraccounts:foundation", + "useraccounts:core@0.11.0", ]); api.use([ @@ -70,4 +70,4 @@ Package.on_test(function(api) { api.add_files([ "tests/tests.js" ], ["client", "server"]); -}); \ No newline at end of file +});