bugspots 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,7 +15,9 @@ module Bugspots
15
15
  regex ||= /fix(es|ed)?|close(s|d)?/i
16
16
 
17
17
  tree = repo.tree(branch)
18
- repo.commits(branch, depth).each do |commit|
18
+
19
+ commit_list = repo.git.rev_list({:max_count => false, :no_merges => true, :pretty => "raw", :timeout => false}, branch)
20
+ Grit::Commit.list_from_string(repo, commit_list).each do |commit|
19
21
  if commit.message =~ regex
20
22
  files = commit.stats.files.map {|s| s.first}.select{ |s| tree/s }
21
23
  fixes << Fix.new(commit.short_message, commit.date, files)
@@ -1,3 +1,3 @@
1
1
  module Bugspots
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
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.1.1
4
+ version: 0.1.2
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: 2012-01-15 00:00:00.000000000 Z
12
+ date: 2012-04-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: grit
16
- requirement: &2153130800 !ruby/object:Gem::Requirement
16
+ requirement: &2152884960 !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: *2153130800
24
+ version_requirements: *2152884960
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: rainbow
27
- requirement: &2153129280 !ruby/object:Gem::Requirement
27
+ requirement: &2152882760 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *2153129280
35
+ version_requirements: *2152882760
36
36
  description: Implementation of simple bug prediction hotspot heuristic
37
37
  email:
38
38
  - ilya@igvita.com