git_test 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,7 +11,7 @@ module GitTest
11
11
  self.proj = GitTest::Proj.new(options)
12
12
  self.test = GitTest::Test.new(options)
13
13
  self.proj_branch = proj.current_branch
14
- self.test_dir = Dir.mktmpdir(".git_test_#{proj_branch}_#{Time.now.to_i}")
14
+ self.test_dir = Dir.mktmpdir
15
15
  prepare_proj_for_test!
16
16
  clone_to_test!
17
17
  end
@@ -67,8 +67,8 @@ module GitTest
67
67
 
68
68
  # pulls from origin on the current branch and report branch
69
69
  def fetch!
70
- notify.write("Pulling from origin")
71
- proj.fetch(proj_branch)
70
+ notify.write("Fetching from origin")
71
+ proj.fetch
72
72
  end
73
73
 
74
74
  # writes the result of the test command to disk
@@ -1,3 +1,3 @@
1
1
  module GitTest
2
- VERSION = '0.0.9'
2
+ VERSION = '0.0.10'
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git_test
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
4
+ hash: 11
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 9
10
- version: 0.0.9
9
+ - 10
10
+ version: 0.0.10
11
11
  platform: ruby
12
12
  authors:
13
13
  - Richard Schneeman