diff --git a/README.md b/README.md index fe654ea..d6e022a 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,15 @@ *Existing users: The url mapping has been preserved from the original app, we are just using a different domain. If you'd like to use the previous version(s), grab the tags `v1`, `v2`.* -#[burnchart](http://burnchart.io) +#[burnchart](http://radekstepan.com/burnchart) GitHub Burndown Chart as a Service. Answers the question "are my projects on track"? ![Build Status](http://img.shields.io/codeship/.svg?style=flat) -[![Coverage](http://img.shields.io/coveralls/asm-products/burnchart/master.svg?style=flat)]() -[![Dependencies](http://img.shields.io/david/asm-products/burnchart.svg?style=flat)](https://david-dm.org/asm-products/burnchart) +[![Coverage](http://img.shields.io/coveralls/radekstepan/burnchart/master.svg?style=flat)]() +[![Dependencies](http://img.shields.io/david/radekstepan/burnchart.svg?style=flat)](https://david-dm.org/radekstepan/burnchart) [![License](http://img.shields.io/badge/license-AGPL--3.0-red.svg?style=flat)](LICENSE) -![image](https://raw.githubusercontent.com/asm-products/burnchart/master/public/screenshots.jpg) +![image](https://raw.githubusercontent.com/radekstepan/burnchart/master/public/screenshots.jpg) ##Features diff --git a/docs/ARCHITECTURE.md b/docs/ARCHITECTURE.md index bd0d772..a6d7323 100644 --- a/docs/ARCHITECTURE.md +++ b/docs/ARCHITECTURE.md @@ -4,7 +4,7 @@ Captures how the app is build and what happens where. ##Build -Vendor libraries are fetched through npm. For CSS libs we `@import` them in LESS, for JS libs we `require` them using [Browserify](https://github.com/substack/node-browserify). All app dependencies are in `package.dependencies` rather than `package.devDependencies`, so that [David](https://david-dm.org/asm-products/burnchart) can see them and we get a nice icon if things go out of date. +Vendor libraries are fetched through npm. For CSS libs we `@import` them in LESS, for JS libs we `require` them using [Browserify](https://github.com/substack/node-browserify). All app dependencies are in `package.dependencies` rather than `package.devDependencies`, so that [David](https://david-dm.org/radekstepan/burnchart) can see them and we get a nice icon if things go out of date. ##Code diff --git a/package.json b/package.json index 915b1f7..e5fc6e7 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ ], "repository": { "type": "git", - "url": "git://github.com/asm-products/burnchart.git" + "url": "git://github.com/radekstepan/burnchart.git" }, "scripts": { "start": "rake serve", diff --git a/test/issues.coffee b/test/issues.coffee index 149d030..0a1e4ef 100644 --- a/test/issues.coffee +++ b/test/issues.coffee @@ -5,7 +5,7 @@ request = require '../src/modules/github/request.coffee' issues = require '../src/modules/github/issues.coffee' config = require '../src/models/config.coffee' -repo = { 'owner': 'asm-products', 'name': 'burnchart', 'milestone': 1 } +repo = { 'owner': 'radekstepan', 'name': 'burnchart', 'milestone': 1 } module.exports = diff --git a/test/projects.coffee b/test/projects.coffee index 01e2eb7..102dbc6 100644 --- a/test/projects.coffee +++ b/test/projects.coffee @@ -11,7 +11,7 @@ module.exports = 'projects - sorts on new milestones': (done) -> do projects.clear - project = { 'owner': 'asm-products', 'name': 'burnchart' } + project = { 'owner': 'radekstepan', 'name': 'burnchart' } milestone = 'title': '1.0.0', 'stats': {} projects.push 'list', project @@ -26,7 +26,7 @@ module.exports = projects.set 'sortBy', 'progress' - project = { 'owner': 'asm-products', 'name': 'burnchart' } + project = { 'owner': 'radekstepan', 'name': 'burnchart' } milestone1 = 'title': '1.0.0', 'stats': { 'progress': { 'points': 5 } } @@ -48,7 +48,7 @@ module.exports = projects.set 'sortBy', 'priority' - project = { 'owner': 'asm-products', 'name': 'burnchart' } + project = { 'owner': 'radekstepan', 'name': 'burnchart' } milestone1 = 'title': '1.0.0', 'stats': { 'progress': { 'points': 2, 'time': 1 } 'days': 2 @@ -77,7 +77,7 @@ module.exports = projects.set 'sortBy', 'priority' - project = { 'owner': 'asm-products', 'name': 'burnchart' } + project = { 'owner': 'radekstepan', 'name': 'burnchart' } milestone1 = 'title': '1.0.0', 'stats': { 'progress': { 'points': 3 } } @@ -102,7 +102,7 @@ module.exports = projects.set 'sortBy', 'name' - project = { 'owner': 'asm-products', 'name': 'burnchart' } + project = { 'owner': 'radekstepan', 'name': 'burnchart' } milestone1 = 'title': 'B', 'stats': {} milestone2 = 'title': 'A', 'stats': {} @@ -119,7 +119,7 @@ module.exports = projects.set 'sortBy', 'name' - project = { 'owner': 'asm-products', 'name': 'burnchart' } + project = { 'owner': 'radekstepan', 'name': 'burnchart' } milestone1 = 'title': '1.2.5', 'stats': {} milestone2 = 'title': '1.1.x', 'stats': {} milestone3 = 'title': '1.1.7', 'stats': {} diff --git a/test/request.coffee b/test/request.coffee index e78be8f..015e2f7 100644 --- a/test/request.coffee +++ b/test/request.coffee @@ -44,13 +44,13 @@ module.exports = 'error': no 'body': [ null ] - owner = 'asm-products' + owner = 'radekstepan' name = 'burnchart' request.allMilestones { owner, name }, (err, data) -> assert.isNull err assert.deepEqual superagent.params, - 'uri': 'https://api.github.com/repos/asm-products/burnchart/milestones?state=open&sort=due_date&direction=asc' + 'uri': 'https://api.github.com/repos/radekstepan/burnchart/milestones?state=open&sort=due_date&direction=asc' 'Content-Type': 'application/json', 'Accept': 'application/vnd.github.v3' assert.deepEqual data, [ null ] @@ -62,14 +62,14 @@ module.exports = 'error': no 'body': [ null ] - owner = 'asm-products' + owner = 'radekstepan' name = 'burnchart' milestone = 1 request.oneMilestone { owner, name, milestone }, (err, data) -> assert.isNull err assert.deepEqual superagent.params, - 'uri': 'https://api.github.com/repos/asm-products/burnchart/milestones/1?state=open&sort=due_date&direction=asc' + 'uri': 'https://api.github.com/repos/radekstepan/burnchart/milestones/1?state=open&sort=due_date&direction=asc' 'Content-Type': 'application/json', 'Accept': 'application/vnd.github.v3' assert.deepEqual data, [ null ] @@ -83,7 +83,7 @@ module.exports = 'documentation_url': "http://developer.github.com/v3" 'message': "Not Found" - owner = 'asm-products' + owner = 'radekstepan' name = 'burnchart' milestone = 0 @@ -97,7 +97,7 @@ module.exports = 'error': Error "Error" 'body': null - owner = 'asm-products' + owner = 'radekstepan' name = 'burnchart' milestone = 0 @@ -111,14 +111,14 @@ module.exports = 'error': no 'body': [ null ] - owner = 'asm-products' + owner = 'radekstepan' name = 'burnchart' milestone = 0 request.allIssues { owner, name, milestone }, {}, (err, data) -> assert.isNull err assert.deepEqual superagent.params, - 'uri': 'https://api.github.com/repos/asm-products/burnchart/issues?milestone=0&per_page=100' + 'uri': 'https://api.github.com/repos/radekstepan/burnchart/issues?milestone=0&per_page=100' 'Content-Type': 'application/json', 'Accept': 'application/vnd.github.v3' assert.deepEqual data, [ null ] @@ -134,7 +134,7 @@ module.exports = 'error': no 'body': [ null ] - owner = 'asm-products' + owner = 'radekstepan' name = 'burnchart' milestone = 0 @@ -147,7 +147,7 @@ module.exports = superagent.response = {} - owner = 'asm-products' + owner = 'radekstepan' name = 'burnchart' request.repo { owner, name }, ->