move links to asm-products

This commit is contained in:
Radek Stepan 2014-10-31 23:33:29 -06:00
parent 9d3676b4d5
commit 40e11ceb59
5 changed files with 21 additions and 21 deletions

View File

@ -4,12 +4,12 @@
GitHub Burndown Chart as a Service. Answers the question "are my projects on track"?
![Build Status](http://img.shields.io/codeship/31951cd0-42c7-0132-d601-5ea438edf284.svg?style=flat)
[![Coverage](http://img.shields.io/coveralls/radekstepan/burnchart/master.svg?style=flat)](<https://coveralls.io/r/radekstepan/burnchart>)
[![Dependencies](http://img.shields.io/david/radekstepan/burnchart.svg?style=flat)](https://david-dm.org/radekstepan/burnchart)
![Build Status](http://img.shields.io/codeship/<ID HERE>.svg?style=flat)
[![Coverage](http://img.shields.io/coveralls/asm-products/burnchart/master.svg?style=flat)](<https://coveralls.io/r/asm-products/burnchart>)
[![Dependencies](http://img.shields.io/david/asm-products/burnchart.svg?style=flat)](https://david-dm.org/asm-products/burnchart)
[![License](http://img.shields.io/badge/license-AGPL--3.0-red.svg?style=flat)](LICENSE)
![image](https://raw.githubusercontent.com/radekstepan/burnchart/master/public/screenshots.jpg)
![image](https://raw.githubusercontent.com/asm-products/burnchart/master/public/screenshots.jpg)
##Features

View File

@ -13,7 +13,7 @@
],
"repository": {
"type": "git",
"url": "git://github.com/radekstepan/burnchart.git"
"url": "git://github.com/asm-products/burnchart.git"
},
"scripts": {
"start": "make serve",

View File

@ -4,7 +4,7 @@ request = require '../src/modules/github/request.coffee'
issues = require '../src/modules/github/issues.coffee'
config = require '../src/models/config.coffee'
repo = { 'owner': 'radekstepan', 'name': 'burnchart', 'milestone': 1 }
repo = { 'owner': 'asm-products', 'name': 'burnchart', 'milestone': 1 }
module.exports =

View File

@ -11,7 +11,7 @@ module.exports =
'projects - sorts on new milestones': (done) ->
do projects.clear
project = { 'owner': 'radekstepan', 'name': 'burnchart' }
project = { 'owner': 'asm-products', 'name': 'burnchart' }
milestone = 'title': '1.0.0', 'stats': {}
projects.push 'list', project
@ -26,7 +26,7 @@ module.exports =
projects.set 'sortBy', 'progress'
project = { 'owner': 'radekstepan', 'name': 'burnchart' }
project = { 'owner': 'asm-products', 'name': 'burnchart' }
milestone1 = 'title': '1.0.0', 'stats': {
'progress': { 'points': 5 }
}
@ -48,7 +48,7 @@ module.exports =
projects.set 'sortBy', 'priority'
project = { 'owner': 'radekstepan', 'name': 'burnchart' }
project = { 'owner': 'asm-products', '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': 'radekstepan', 'name': 'burnchart' }
project = { 'owner': 'asm-products', 'name': 'burnchart' }
milestone1 = 'title': '1.0.0', 'stats': {
'progress': { 'points': 3 }
}
@ -102,7 +102,7 @@ module.exports =
projects.set 'sortBy', 'name'
project = { 'owner': 'radekstepan', 'name': 'burnchart' }
project = { 'owner': 'asm-products', 'name': 'burnchart' }
milestone1 = 'title': 'B', 'stats': {}
milestone2 = 'title': 'A', 'stats': {}
@ -119,7 +119,7 @@ module.exports =
projects.set 'sortBy', 'name'
project = { 'owner': 'radekstepan', 'name': 'burnchart' }
project = { 'owner': 'asm-products', 'name': 'burnchart' }
milestone1 = 'title': '1.2.5', 'stats': {}
milestone2 = 'title': '1.1.x', 'stats': {}
milestone3 = 'title': '1.1.7', 'stats': {}

View File

@ -44,13 +44,13 @@ module.exports =
'error': no
'body': [ null ]
owner = 'radekstepan'
owner = 'asm-products'
name = 'burnchart'
request.allMilestones { owner, name }, (err, data) ->
assert.ifError err
assert.deepEqual superagent.params,
'uri': 'https://api.github.com/repos/radekstepan/burnchart/milestones?state=open&sort=due_date&direction=asc'
'uri': 'https://api.github.com/repos/asm-products/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 = 'radekstepan'
owner = 'asm-products'
name = 'burnchart'
milestone = 1
request.oneMilestone { owner, name, milestone }, (err, data) ->
assert.ifError err
assert.deepEqual superagent.params,
'uri': 'https://api.github.com/repos/radekstepan/burnchart/milestones/1?state=open&sort=due_date&direction=asc'
'uri': 'https://api.github.com/repos/asm-products/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 = 'radekstepan'
owner = 'asm-products'
name = 'burnchart'
milestone = 0
@ -97,7 +97,7 @@ module.exports =
'error': Error "Error"
'body': null
owner = 'radekstepan'
owner = 'asm-products'
name = 'burnchart'
milestone = 0
@ -111,14 +111,14 @@ module.exports =
'error': no
'body': [ null ]
owner = 'radekstepan'
owner = 'asm-products'
name = 'burnchart'
milestone = 0
request.allIssues { owner, name, milestone }, {}, (err, data) ->
assert.ifError err
assert.deepEqual superagent.params,
'uri': 'https://api.github.com/repos/radekstepan/burnchart/issues?milestone=0&per_page=100'
'uri': 'https://api.github.com/repos/asm-products/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 = 'radekstepan'
owner = 'asm-products'
name = 'burnchart'
milestone = 0