and we are back

This commit is contained in:
Radek Stepan 2014-11-10 19:16:52 -07:00
parent 6cf9b37b3e
commit 3a5dc0816d
6 changed files with 23 additions and 23 deletions

View File

@ -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/<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)
[![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)
[![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

View File

@ -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

View File

@ -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",

View File

@ -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 =

View File

@ -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': {}

View File

@ -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 }, ->