git_manager 0.0.1 → 0.0.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.
Files changed (2) hide show
  1. data/lib/git_manager.rb +3 -5
  2. metadata +3 -3
data/lib/git_manager.rb CHANGED
@@ -1,4 +1,4 @@
1
- require 'rubygems'
1
+ #require 'rubygems'
2
2
 
3
3
  # usage Git::Blames::Pending.new(
4
4
  # :root => <root folder where build logs are located>
@@ -73,9 +73,8 @@ class Git::Blames::Pending
73
73
  end
74
74
 
75
75
  def rspec_results
76
- rspec_output = `rspec spec`
77
- puts rspec_output
78
- rspec_output
76
+ results = `rspec spec`
77
+ results
79
78
  end
80
79
 
81
80
  def find_contributors
@@ -125,7 +124,6 @@ class Git::Blames::Pending
125
124
  task = {}
126
125
 
127
126
  spec_output.each do |line|
128
- puts "line = #{line}"
129
127
  if found_pending_marker line
130
128
  status = 'start'
131
129
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git_manager
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - kikuchiyo