bugspots 0.0.4 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +7 -3
- data/bin/{bugspots → git-bugspots} +0 -0
- data/lib/bugspots/version.rb +1 -1
- metadata +8 -8
data/README.md
CHANGED
@@ -10,13 +10,17 @@ Point bugspots at any git repo and it will identify the hotspots for you.
|
|
10
10
|
|
11
11
|
```
|
12
12
|
$> gem install bugspots
|
13
|
-
$> bugspots /path/to/repo
|
13
|
+
$> git bugspots /path/to/repo
|
14
|
+
$> git bugspots . # (in current git directory)
|
14
15
|
```
|
15
16
|
|
16
17
|
## Results
|
17
18
|
|
18
19
|
```
|
19
|
-
$>
|
20
|
+
$> cd /your/git/repo
|
21
|
+
$> git bugspots .
|
22
|
+
|
23
|
+
.. example output ..
|
20
24
|
|
21
25
|
Scanning /git/eventmachine repo
|
22
26
|
Found 31 bugfix commits, with 23 hotspots:
|
@@ -82,4 +86,4 @@ $> bugspots /git/eventmachine
|
|
82
86
|
|
83
87
|
### License
|
84
88
|
|
85
|
-
(MIT License) - Copyright (c) 2011 Ilya Grigorik
|
89
|
+
(MIT License) - Copyright (c) 2011 Ilya Grigorik
|
File without changes
|
data/lib/bugspots/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bugspots
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2012-01-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: grit
|
16
|
-
requirement: &
|
16
|
+
requirement: &2156994600 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *2156994600
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: rainbow
|
27
|
-
requirement: &
|
27
|
+
requirement: &2156992780 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,12 +32,12 @@ dependencies:
|
|
32
32
|
version: '0'
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *2156992780
|
36
36
|
description: Implementation of simple bug prediction hotspot heuristic
|
37
37
|
email:
|
38
38
|
- ilya@igvita.com
|
39
39
|
executables:
|
40
|
-
- bugspots
|
40
|
+
- git-bugspots
|
41
41
|
extensions: []
|
42
42
|
extra_rdoc_files: []
|
43
43
|
files:
|
@@ -45,7 +45,7 @@ files:
|
|
45
45
|
- Gemfile
|
46
46
|
- README.md
|
47
47
|
- Rakefile
|
48
|
-
- bin/bugspots
|
48
|
+
- bin/git-bugspots
|
49
49
|
- bugspots.gemspec
|
50
50
|
- lib/bugspots.rb
|
51
51
|
- lib/bugspots/scanner.rb
|