forked from Lainports/freebsd-ports
- Add a new port: devel/rubygem-bugspots
Bugspots - Bug Prediction Heuristic
An implementation of the simple bug prediction heuristic outlined
by the Google Engineering team: Bug Prediction at Google
Well, we actually have a great, authoritative record of where
code has been requiring fixes: our bug tracker and our source
control commit log! The research indicates that predicting bugs
from the source history works very well, so we decided to deploy
it at Google.
Point bugspots at any git repo and it will identify the hotspots
for you.
WWW: https://github.com/igrigorik/bugspots
This commit is contained in:
parent
ba5810df54
commit
5e43696e43
4 changed files with 43 additions and 0 deletions
|
|
@ -3556,6 +3556,7 @@
|
|||
SUBDIR += rubygem-authlogic
|
||||
SUBDIR += rubygem-benelux
|
||||
SUBDIR += rubygem-bioruby
|
||||
SUBDIR += rubygem-bugspots
|
||||
SUBDIR += rubygem-builder
|
||||
SUBDIR += rubygem-chronic
|
||||
SUBDIR += rubygem-classifier
|
||||
|
|
|
|||
25
devel/rubygem-bugspots/Makefile
Normal file
25
devel/rubygem-bugspots/Makefile
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# New ports collection makefile for: rubygem-bugspots
|
||||
# Date created: 2012-01-11
|
||||
# Whom: TAKATSU Tomonari <tota@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= bugspots
|
||||
PORTVERSION= 0.1.1
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
MAINTAINER= tota@FreeBSD.org
|
||||
COMMENT= Bugspots - Bug Prediction Heuristic
|
||||
|
||||
RUN_DEPENDS= rubygem-grit>=0:${PORTSDIR}/devel/rubygem-grit \
|
||||
rubygem-rainbow>=0:${PORTSDIR}/devel/rubygem-rainbow
|
||||
|
||||
USE_RUBY= yes
|
||||
USE_RUBYGEMS= yes
|
||||
RUBYGEM_AUTOPLIST= yes
|
||||
|
||||
PLIST_FILES= bin/bugspots bin/git-bugspots
|
||||
|
||||
.include <bsd.port.mk>
|
||||
2
devel/rubygem-bugspots/distinfo
Normal file
2
devel/rubygem-bugspots/distinfo
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
SHA256 (rubygem/bugspots-0.1.1.gem) = 8190d17f46a5b1af822e3ce86fb1182c8435bfb083d6b4ecfebbf1c33bbabe3e
|
||||
SIZE (rubygem/bugspots-0.1.1.gem) = 7680
|
||||
15
devel/rubygem-bugspots/pkg-descr
Normal file
15
devel/rubygem-bugspots/pkg-descr
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
Bugspots - Bug Prediction Heuristic
|
||||
|
||||
An implementation of the simple bug prediction heuristic outlined
|
||||
by the Google Engineering team: Bug Prediction at Google
|
||||
|
||||
Well, we actually have a great, authoritative record of where
|
||||
code has been requiring fixes: our bug tracker and our source
|
||||
control commit log! The research indicates that predicting bugs
|
||||
from the source history works very well, so we decided to deploy
|
||||
it at Google.
|
||||
|
||||
Point bugspots at any git repo and it will identify the hotspots
|
||||
for you.
|
||||
|
||||
WWW: https://github.com/igrigorik/bugspots
|
||||
Loading…
Add table
Reference in a new issue